diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-28 16:47:07 +0100 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-28 16:47:07 +0100 |
commit | bf45a222e707b0f778bc39abb171813bc39dd194 (patch) | |
tree | 9cfedd2920839080a876c8d92f25acc322cfdf5f /epghandler.c | |
parent | 16803744f86b3580ce8b80595a361ee3ba2ea3b3 (diff) | |
download | vdr-plugin-eepg-bf45a222e707b0f778bc39abb171813bc39dd194.tar.gz vdr-plugin-eepg-bf45a222e707b0f778bc39abb171813bc39dd194.tar.bz2 |
fixed tChannelIDCompare which fixes the event map.
try to change the activation of the thread. should be workged some more
fix the Original Air Date for NA epg
Diffstat (limited to 'epghandler.c')
-rw-r--r-- | epghandler.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/epghandler.c b/epghandler.c index 924b4df..a1b92c3 100644 --- a/epghandler.c +++ b/epghandler.c @@ -28,7 +28,6 @@ bool cEEpgHandler::HandleEitEvent(cSchedule* Schedule, const SI::EIT::Event* EitEvent, uchar TableID, uchar Version) { //LogD(1, prep("HandleEitEvent")); //DISH NID 0x1001 to 0x100B BEV 0x100 and 0x101 - //TODO move the eit handling code at least for NA providers here instead of discarding. int nid = Schedule->ChannelID().Nid(); if ((nid >= 0x1001 && nid <= 0x100B) || nid == 0x101 || nid == 0x100) { SI::cEIT2 eit2(Schedule); @@ -164,7 +163,7 @@ bool cEEpgHandler::HandleEvent(cEvent* Event) { if (equivHandler->getEquiChanMap().count(*Event->ChannelID().ToString()) <= 0) return true; - if (modified) + //if (modified) equivHandler->updateEquivalent(Event->ChannelID(), Event); //TODO just to see the difference |