The actual transponder data is now taken from the NIT

This commit is contained in:
Klaus Schmidinger
2004-01-11 15:54:37 +01:00
parent 43ca916c20
commit 7f9d14ee8b
25 changed files with 523 additions and 192 deletions

25
nit.h Normal file
View File

@@ -0,0 +1,25 @@
/*
* nit.h: NIT section filter
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: nit.h 1.1 2004/01/11 14:31:05 kls Exp $
*/
#ifndef __NIT_H
#define __NIT_H
#include "filter.h"
class cNitFilter : public cFilter {
private:
cSectionSyncer sectionSyncer;
protected:
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
public:
cNitFilter(void);
virtual void SetStatus(bool On);
};
#endif //__NIT_H