summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2018-11-15 16:38:14 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2018-11-15 16:38:14 +0100
commitb9162ad7bddc2484775711ddcbb4b2a602bfa8b3 (patch)
treee9b8af7c6e10ab412109b960e32261586ab96ec0 /eit.c
parent5300077109600060f244301e02ceaf2ac2881529 (diff)
downloadvdr-b9162ad7bddc2484775711ddcbb4b2a602bfa8b3.tar.gz
vdr-b9162ad7bddc2484775711ddcbb4b2a602bfa8b3.tar.bz2
Reverted the change "The EIT filter no longer parses data from "other TS"..."
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/eit.c b/eit.c
index c4c83691..e4a3ec6e 100644
--- a/eit.c
+++ b/eit.c
@@ -8,7 +8,7 @@
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
*
- * $Id: eit.c 4.5 2018/03/31 13:40:32 kls Exp $
+ * $Id: eit.c 4.6 2018/11/15 16:33:58 kls Exp $
*/
#include "eit.h"
@@ -388,8 +388,7 @@ time_t cEitFilter::disableUntil = 0;
cEitFilter::cEitFilter(void)
{
-//Set(0x12, 0x40, 0xC0); // event info now&next actual/other TS (0x4E/0x4F), future actual/other TS (0x5X/0x6X) // TODO: remove later
- Set(0x12, 0x40, 0xE0); // event info now&next actual/other TS (0x4E/0x4F), future actual TS (0x5X)
+ Set(0x12, 0x40, 0xC0); // event info now&next actual/other TS (0x4E/0x4F), future actual/other TS (0x5X/0x6X)
Set(0x14, 0x70); // TDT
}
@@ -416,8 +415,7 @@ void cEitFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
}
switch (Pid) {
case 0x12: {
- //if (Tid >= 0x4E && Tid <= 0x6F) // TODO: remove later
- if (Tid == 0x4E || Tid >= 0x50 && Tid <= 0x5F)
+ if (Tid >= 0x4E && Tid <= 0x6F)
cEIT EIT(sectionSyncerHash, Source(), Tid, Data);
}
break;