diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-08 15:06:58 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-08 15:06:58 +0100 |
commit | 0863c5b065906d5b22d7237b464ded0ea07c957e (patch) | |
tree | 9ddf04ca1704a8c2038d80dfceb9d976a46686c2 /eit.c | |
parent | baf473aedf9289180efa6c28b15be30c831b2f5d (diff) | |
download | vdr-0863c5b065906d5b22d7237b464ded0ea07c957e.tar.gz vdr-0863c5b065906d5b22d7237b464ded0ea07c957e.tar.bz2 |
Revoked "If the first event in a schedule has a table id of 0x00, any incoming EIT data for that schedule from the DVB stream will be completely ignored"
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -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 2.13 2012/02/25 15:25:51 kls Exp $ + * $Id: eit.c 2.14 2012/03/08 15:05:45 kls Exp $ */ #include "eit.h" @@ -38,14 +38,6 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo return; // only collect data for known channels cSchedule *pSchedule = (cSchedule *)Schedules->GetSchedule(channel, true); - if (pSchedule) { - if (cEvent *Event = pSchedule->Events()->First()) { - if (Event->TableID() == 0x00) - return; // never touch schedules with events from external sources - } - } - else - return; bool Empty = true; bool Modified = false; |