diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 09:51:17 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 09:51:17 +0200 |
commit | 970976d2758c659dc41ffabf9bc9b160c8fbc29b (patch) | |
tree | d9563c8e4d5018dae924b4b1355933b668c9b951 /eit2.c | |
parent | 4e51e3a4c2b3006f8ce760ebcdc424b9c7a3eeb4 (diff) | |
parent | d7dc6141c91b48c410e9cc5734ca9a2adecc278e (diff) | |
download | vdr-plugin-eepg-970976d2758c659dc41ffabf9bc9b160c8fbc29b.tar.gz vdr-plugin-eepg-970976d2758c659dc41ffabf9bc9b160c8fbc29b.tar.bz2 |
Merge branch 'master' into experimental
Diffstat (limited to 'eit2.c')
-rw-r--r-- | eit2.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -9,7 +9,6 @@ #include <string> #include <vdr/config.h> #include "log.h" -#include "util.h" #include "dish.h" #include "equivhandler.h" @@ -435,10 +434,11 @@ void cEIT2::ProcessEventDescriptors(bool ExternalData, int Source, channel->SetLinkChannels (LinkChannels); } -cEIT2::cEIT2 (cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, bool isEITPid, bool OnlyRunningStatus) +cEIT2::cEIT2 (cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, EFormat format, bool isEITPid, bool OnlyRunningStatus) : SI::EIT (Data, false) , OnlyRunningStatus(OnlyRunningStatus) , Schedules(Schedules) +, Format(format) { //LogD(2, prep("cEIT2::cEIT2")); @@ -563,13 +563,14 @@ cEIT2::cEIT2 (cSchedules * Schedules, int Source, u_char Tid, const u_char * Dat } //end of cEIT2 -cEIT2::cEIT2 (cSchedule * Schedule) +cEIT2::cEIT2 (cSchedule * Schedule, EFormat format) : Empty(true) , Modified(false) , OnlyRunningStatus(false) , SegmentStart(0) , SegmentEnd(0) , Schedules(NULL) +, Format(format) { //LogD(2, prep("cEIT2::cEIT2")); // if (Tid > 0 && (Format == DISH_BEV || (SetupPE->ProcessEIT && isEITPid))) Tid--; |