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 /nit.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 'nit.h')
-rw-r--r-- | nit.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,13 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: nit.h 1.3 2007/06/10 08:50:21 kls Exp $ + * $Id: nit.h 2.0.1.1 2014/03/11 09:30:05 kls Exp $ */ #ifndef __NIT_H #define __NIT_H #include "filter.h" +#include "sdt.h" #define MAXNITS 16 #define MAXNETWORKNAME Utf8BufSize(256) @@ -26,13 +27,14 @@ private: }; cSectionSyncer sectionSyncer; + cSdtFilter *sdtFilter; cNit nits[MAXNITS]; u_short networkId; int numNits; protected: virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length); public: - cNitFilter(void); + cNitFilter(cSdtFilter *SdtFilter); virtual void SetStatus(bool On); }; |