From 77f438ed85ef37dbb5c443725ebaea152426ba23 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 31 Mar 2018 13:40:32 +0200 Subject: The EIT filter no longer parses data from "other TS" --- eit.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'eit.c') diff --git a/eit.c b/eit.c index 68872525..c4c83691 100644 --- a/eit.c +++ b/eit.c @@ -8,7 +8,7 @@ * Robert Schneider and Rolf Hakenes . * Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg . * - * $Id: eit.c 4.4 2017/10/11 09:19:42 kls Exp $ + * $Id: eit.c 4.5 2018/03/31 13:40:32 kls Exp $ */ #include "eit.h" @@ -388,7 +388,8 @@ 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) +//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(0x14, 0x70); // TDT } @@ -415,7 +416,8 @@ void cEitFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length } switch (Pid) { case 0x12: { - if (Tid >= 0x4E && Tid <= 0x6F) + //if (Tid >= 0x4E && Tid <= 0x6F) // TODO: remove later + if (Tid == 0x4E || Tid >= 0x50 && Tid <= 0x5F) cEIT EIT(sectionSyncerHash, Source(), Tid, Data); } break; -- cgit v1.2.3