summaryrefslogtreecommitdiff
path: root/nit.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2014-03-10 14:50:58 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2014-03-10 14:50:58 +0100
commitc5071cc87b5d5bf4cf6c685a45a8e69f9f36f5ae (patch)
tree05c1cda788d3e3b83546631cdbfa4b635523c896 /nit.h
parent0990c279c74e498b2033b254c646f859b538b83a (diff)
downloadvdr-c5071cc87b5d5bf4cf6c685a45a8e69f9f36f5ae.tar.gz
vdr-c5071cc87b5d5bf4cf6c685a45a8e69f9f36f5ae.tar.bz2
The SDT is now only parsed *after* the NIT has been read
Diffstat (limited to 'nit.h')
-rw-r--r--nit.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/nit.h b/nit.h
index c4ac82b5..4673f960 100644
--- a/nit.h
+++ b/nit.h
@@ -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 3.1 2014/03/10 14:12: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);
};