diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-01 12:37:22 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-01 12:37:22 +0100 |
commit | 566c6fa4641ea116307cfb5e40d151a104ab1490 (patch) | |
tree | 4d541f4e23394b252898ab302be48bfb59fd5463 /receiver.h | |
parent | b95b85fee4a7c26bfbc2890ac3ff00cef5fa0388 (diff) | |
download | vdr-566c6fa4641ea116307cfb5e40d151a104ab1490.tar.gz vdr-566c6fa4641ea116307cfb5e40d151a104ab1490.tar.bz2 |
Added receiving Ca pids to cCamSlot
Diffstat (limited to 'receiver.h')
-rw-r--r-- | receiver.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.h 2.9 2012/09/02 09:27:20 kls Exp $ + * $Id: receiver.h 3.1 2014/01/01 11:45:09 kls Exp $ */ #ifndef __RECEIVER_H @@ -64,7 +64,13 @@ public: ///< through ChannelID(). The ChannelID is necessary to allow the device ///< that will be used for this receiver to detect and store whether the ///< channel can be decrypted in case this is an encrypted channel. + void DelPid(int Pid); + ///< Deletes the given Pid from the list of PIDs of this receiver. + void DelPids(const int *Pids); + ///< Deletes the given zero terminated list of Pids from the list of PIDs of this + ///< receiver. tChannelID ChannelID(void) { return channelID; } + int NumPids(void) const { return numPids; } bool IsAttached(void) { return device != NULL; } ///< Returns true if this receiver is (still) attached to a device. ///< A receiver may be automatically detached from its device in |