From ab14ba84c7d4991220d21ae8b7e562b5e452d452 Mon Sep 17 00:00:00 2001 From: leslie Date: Tue, 6 Sep 2011 21:04:24 +0800 Subject: [PATCH] fix CAM stop detection for VDR 1.7.11+ --- cam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cam.c b/cam.c index f119bcf..6fc59f4 100644 --- a/cam.c +++ b/cam.c @@ -1947,7 +1947,7 @@ void cScCamSlot::Process(const unsigned char *data, int len) } } if(prg->sid!=0) { - if(ci_cmd==0x04) { + if(ci_cmd==0x04 || (ci_cmd==-1 && ca_lm==0x03)) { PRINTF(L_CORE_CI,"%s.%d stop decrypt",devId,slot); cam->Stop(); } -- 2.39.5