diff options
| author | Thomas Günther <tom@toms-cafe.de> | 2010-06-07 22:58:37 +0200 |
|---|---|---|
| committer | Thomas Günther <tom@toms-cafe.de> | 2010-06-07 22:58:37 +0200 |
| commit | 0c0a27ca39b1822f52ff4e2c159f479361d458e0 (patch) | |
| tree | 18d47eada98082b415ea0e8a499ea0b58ec82cc9 /patches/patch-set.1.7.14/0004-Decrypt-teletext-stream.patch | |
| parent | aa3acaf9bc1654a04fb873f60cf589a7ee6b8ce2 (diff) | |
| download | vdr-plugin-ttxtsubs-0c0a27ca39b1822f52ff4e2c159f479361d458e0.tar.gz vdr-plugin-ttxtsubs-0c0a27ca39b1822f52ff4e2c159f479361d458e0.tar.bz2 | |
Updated patch to 1.7.15 (dropped 1.7.14 patch)
Diffstat (limited to 'patches/patch-set.1.7.14/0004-Decrypt-teletext-stream.patch')
| -rw-r--r-- | patches/patch-set.1.7.14/0004-Decrypt-teletext-stream.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/patches/patch-set.1.7.14/0004-Decrypt-teletext-stream.patch b/patches/patch-set.1.7.14/0004-Decrypt-teletext-stream.patch deleted file mode 100644 index bb85adc..0000000 --- a/patches/patch-set.1.7.14/0004-Decrypt-teletext-stream.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 1f4d9228ae8b7b615c347acc3f5903fb038eb380 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 files changed, 5 insertions(+), 0 deletions(-) - -diff --git a/ci.c b/ci.c -index 6c7b031..22fda9f 100644 ---- a/ci.c -+++ b/ci.c -@@ -1911,6 +1911,8 @@ void cCamSlot::AddChannel(const cChannel *Channel) - AddPid(Channel->Sid(), *Apid, STREAM_TYPE_AUDIO); - for (const int *Dpid = Channel->Dpids(); *Dpid; Dpid++) - AddPid(Channel->Sid(), *Dpid, STREAM_TYPE_DOLBY); -+ if (Channel->Tpid() && Setup.SupportTeletext) -+ AddPid(Channel->Sid(), Channel->Tpid(), STREAM_TYPE_DOLBY); - } - } - -@@ -1932,6 +1934,9 @@ bool cCamSlot::CanDecrypt(const cChannel *Channel) - CaPmt.AddPid(*Apid, STREAM_TYPE_AUDIO); - for (const int *Dpid = Channel->Dpids(); *Dpid; Dpid++) - CaPmt.AddPid(*Dpid, STREAM_TYPE_DOLBY); -+ if (Channel->Tpid() && Setup.SupportTeletext) { -+ CaPmt.AddPid(Channel->Tpid(), STREAM_TYPE_DOLBY); // FIXME: STREAM_TYPE_DOLBY should probably be renamed STREAM_TYPE_PRIVATE -+ } - cas->SendPMT(&CaPmt); - cTimeMs Timeout(QUERY_REPLY_TIMEOUT); - do { --- -1.7.0 - |
