diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-03-11 09:32:48 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-03-11 09:32:48 +0100 |
commit | ba9651e86348d56f3b7e937652f78fc0fe9e86fa (patch) | |
tree | d1d2ff808c9155ebac6545e9499367cebdfdc4ea /sdt.h | |
parent | da404e00c0c95978bd2b126b6e2a6b01556630ec (diff) | |
download | vdr-ba9651e86348d56f3b7e937652f78fc0fe9e86fa.tar.gz vdr-ba9651e86348d56f3b7e937652f78fc0fe9e86fa.tar.bz2 |
The SDT is now only parsed *after* the NIT has been read
Diffstat (limited to 'sdt.h')
-rw-r--r-- | sdt.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sdt.h 1.2 2004/01/05 14:30:14 kls Exp $ + * $Id: sdt.h 2.0.1.1 2014/03/11 09:31:08 kls Exp $ */ #ifndef __SDT_H @@ -15,13 +15,16 @@ class cSdtFilter : public cFilter { private: + cMutex mutex; cSectionSyncer sectionSyncer; + int source; cPatFilter *patFilter; protected: virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length); public: cSdtFilter(cPatFilter *PatFilter); virtual void SetStatus(bool On); + void Trigger(int Source); }; #endif //__SDT_H |