diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-02 09:24:31 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-02 09:24:31 +0200 |
commit | 240529710db31cd5a96ad2fdb7f9fd486ec7939f (patch) | |
tree | 5dc750c54136acfdcc1c6c1b1cfdfed4239397dc /device.h | |
parent | 5ddf78ade15ac4048ae6ec587078f1c2e68437d8 (diff) | |
download | vdr-240529710db31cd5a96ad2fdb7f9fd486ec7939f.tar.gz vdr-240529710db31cd5a96ad2fdb7f9fd486ec7939f.tar.bz2 |
Fixed setting the PCR-PID in case it is equal to one of the other PIDs
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.30 2003/04/26 09:49:12 kls Exp $ + * $Id: device.h 1.31 2003/05/02 08:21:05 kls Exp $ */ #ifndef __DEVICE_H @@ -201,7 +201,7 @@ protected: ///< Returns true if this device is currently receiving the given PID. bool AddPid(int Pid, ePidType PidType = ptOther); ///< Adds a PID to the set of PIDs this device shall receive. - void DelPid(int Pid); + void DelPid(int Pid, ePidType PidType = ptOther); ///< Deletes a PID from the set of PIDs this device shall receive. virtual bool SetPid(cPidHandle *Handle, int Type, bool On); ///< Does the actual PID setting on this device. |