diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 10:05:33 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 10:05:33 +0200 |
commit | 7342e5ac9ca1512c2a89aeffe897eefe65e10c58 (patch) | |
tree | aa5d6a2169a8323fc90411a87a60ed6c2a6f494d /eit2.h | |
parent | 809d08939391b0f3db93b28cf59bc3da137ff006 (diff) | |
parent | 0223b8b98276b3f1c935325c9dcdf9b6484eb136 (diff) | |
download | vdr-plugin-eepg-7342e5ac9ca1512c2a89aeffe897eefe65e10c58.tar.gz vdr-plugin-eepg-7342e5ac9ca1512c2a89aeffe897eefe65e10c58.tar.bz2 |
Merge branch 'experimental' into freeview_test
Diffstat (limited to 'eit2.h')
-rw-r--r-- | eit2.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,7 +4,9 @@ #include <libsi/descriptor.h> #include <libsi/si.h> #include <vdr/epg.h> +#include "util.h" +using namespace util; namespace SI { @@ -49,9 +51,10 @@ extern bool SystemCharacterTableIsSingleByte;*/ class cEIT2:public SI::EIT { public: - cEIT2(cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, bool isEITPid = false, + cEIT2(cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, + EFormat format, bool isEITPid = false, bool OnlyRunningStatus = false); - cEIT2 (cSchedule * Schedule); + cEIT2 (cSchedule * Schedule, EFormat format); //protected: // void updateEquivalent(cSchedules * Schedules, tChannelID channelID, cEvent *pEvent); cEvent* ProcessEitEvent(cSchedule *Schedule, const SI::EIT::Event *EitEvent, uchar TableID, uchar Version); @@ -69,6 +72,7 @@ private: time_t SegmentStart; time_t SegmentEnd; cSchedules* Schedules; + EFormat Format; cChannel* channel; }; |