diff options
author | Tobias Grimm <git@e-tobi.net> | 2013-03-10 16:58:24 +0100 |
---|---|---|
committer | Tobias Grimm <git@e-tobi.net> | 2013-03-10 16:58:24 +0100 |
commit | a47f8e7da7c66c453d134654d9795f9e8345f90e (patch) | |
tree | 7031449769f730f43c5ce0b395a3e30fb478a8d3 /patches/patch-set.1.7.38/0004-Decrypt-teletext-stream.patch | |
parent | 9745777fc2145796ca208033c116c7589725c394 (diff) | |
download | vdr-plugin-ttxtsubs-a47f8e7da7c66c453d134654d9795f9e8345f90e.tar.gz vdr-plugin-ttxtsubs-a47f8e7da7c66c453d134654d9795f9e8345f90e.tar.bz2 |
Updated patch for VDR 1.7.40
Diffstat (limited to 'patches/patch-set.1.7.38/0004-Decrypt-teletext-stream.patch')
-rw-r--r-- | patches/patch-set.1.7.38/0004-Decrypt-teletext-stream.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/patches/patch-set.1.7.38/0004-Decrypt-teletext-stream.patch b/patches/patch-set.1.7.38/0004-Decrypt-teletext-stream.patch deleted file mode 100644 index fb432d0..0000000 --- a/patches/patch-set.1.7.38/0004-Decrypt-teletext-stream.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 08f2963cfb42038575a741e2902b9b7a95c0a0f8 Mon Sep 17 00:00:00 2001 -From: etobi <git@e-tobi.net> -Date: Sun, 14 Feb 2010 01:30:34 +0100 -Subject: [PATCH 4/6] Decrypt teletext stream - ---- - ci.c | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/ci.c b/ci.c -index 9a4a829..ec84027 100644 ---- a/ci.c -+++ b/ci.c -@@ -1914,6 +1914,8 @@ void cCamSlot::AddChannel(const cChannel *Channel) - AddPid(Channel->Sid(), *Dpid, STREAM_TYPE_PRIVATE); - for (const int *Spid = Channel->Spids(); *Spid; Spid++) - AddPid(Channel->Sid(), *Spid, STREAM_TYPE_PRIVATE); -+ if (Channel->Tpid() && Setup.SupportTeletext) -+ AddPid(Channel->Sid(), Channel->Tpid(), STREAM_TYPE_PRIVATE); - } - } - -@@ -1937,6 +1939,9 @@ bool cCamSlot::CanDecrypt(const cChannel *Channel) - CaPmt.AddPid(*Dpid, STREAM_TYPE_PRIVATE); - for (const int *Spid = Channel->Spids(); *Spid; Spid++) - CaPmt.AddPid(*Spid, STREAM_TYPE_PRIVATE); -+ if (Channel->Tpid() && Setup.SupportTeletext) { -+ CaPmt.AddPid(Channel->Tpid(), STREAM_TYPE_PRIVATE); -+ } - cas->SendPMT(&CaPmt); - cTimeMs Timeout(QUERY_REPLY_TIMEOUT); - do { --- -1.7.10.4 - |