diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-03-23 14:34:53 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-03-23 14:34:53 +0100 |
commit | 2d9eb7e25dc08d700b5d2c97d0baf36d5aa35f96 (patch) | |
tree | e37483f46ccd457aea0900310ae0345385aaf808 /mtd.h | |
parent | b7be7c900a4ce4ab74cbc52cee563ff4f0b5bf8f (diff) | |
download | vdr-2d9eb7e25dc08d700b5d2c97d0baf36d5aa35f96.tar.gz vdr-2d9eb7e25dc08d700b5d2c97d0baf36d5aa35f96.tar.bz2 |
Mapping PIDs in CanDecrypt(); improved description of Start-/StopDecrypting(); removed obsolete cMtdCamSlot::IsDecrypting(); fixed getting device fpr channel up/down
Diffstat (limited to 'mtd.h')
-rw-r--r-- | mtd.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: mtd.h 1.3 2017/03/19 13:32:48 kls Exp $ + * $Id: mtd.h 1.4 2017/03/23 12:48:22 kls Exp $ */ #ifndef __MTD_H @@ -166,10 +166,9 @@ public: cMtdMapper *MtdMapper(void) { return mtdMapper; } virtual bool RepliesToQuery(void); virtual bool ProvidesCa(const int *CaSystemIds); - virtual bool CanDecrypt(const cChannel *Channel); + virtual bool CanDecrypt(const cChannel *Channel, cMtdMapper *MtdMapper = NULL); virtual void StartDecrypting(void); virtual void StopDecrypting(void); - virtual bool IsDecrypting(void); virtual uchar *Decrypt(uchar *Data, int &Count); int PutData(const uchar *Data, int Count); int PutCat(const uchar *Data, int Count); |