summaryrefslogtreecommitdiff
path: root/ci.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2014-01-02 10:47:08 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2014-01-02 10:47:08 +0100
commita84defe86f2331d42c06abeba17fd4aebe359d94 (patch)
treef0fb2af6a6237ca20a4869312d19e061c0225486 /ci.c
parent9dbd953cc239afaf833b977a42f78420ec0fe45a (diff)
downloadvdr-a84defe86f2331d42c06abeba17fd4aebe359d94.tar.gz
vdr-a84defe86f2331d42c06abeba17fd4aebe359d94.tar.bz2
Added support for buffered CAM decryption
Diffstat (limited to 'ci.c')
-rw-r--r--ci.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ci.c b/ci.c
index 2d9735e5..e2881fed 100644
--- a/ci.c
+++ b/ci.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.c 3.3 2014/01/01 12:33:27 kls Exp $
+ * $Id: ci.c 3.4 2014/01/02 10:31:12 kls Exp $
*/
#include "ci.h"
@@ -2014,8 +2014,10 @@ bool cCamSlot::IsDecrypting(void)
return false;
}
-void cCamSlot::Decrypt(uchar *Data, int Count)
+uchar *cCamSlot::Decrypt(uchar *Data, int &Count)
{
+ Count = TS_SIZE;
+ return Data;
}
// --- cChannelCamRelation ---------------------------------------------------