2004-01-11 15:54:37 +01:00
|
|
|
/*
|
|
|
|
* nit.h: NIT section filter
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2015-03-17 12:27:18 +01:00
|
|
|
* $Id: nit.h 4.1 2015/03/16 12:41:38 kls Exp $
|
2004-01-11 15:54:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NIT_H
|
|
|
|
#define __NIT_H
|
|
|
|
|
|
|
|
#include "filter.h"
|
2014-03-10 14:50:58 +01:00
|
|
|
#include "sdt.h"
|
2004-01-11 15:54:37 +01:00
|
|
|
|
|
|
|
class cNitFilter : public cFilter {
|
|
|
|
private:
|
|
|
|
cSectionSyncer sectionSyncer;
|
2014-03-10 14:50:58 +01:00
|
|
|
cSdtFilter *sdtFilter;
|
2004-01-11 15:54:37 +01:00
|
|
|
protected:
|
|
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
|
|
|
public:
|
2014-03-10 14:50:58 +01:00
|
|
|
cNitFilter(cSdtFilter *SdtFilter);
|
2004-01-11 15:54:37 +01:00
|
|
|
virtual void SetStatus(bool On);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__NIT_H
|