mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
40 lines
725 B
C++
40 lines
725 B
C++
/*
|
|
* 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.3 2007/06/10 08:50:21 kls Exp $
|
|
*/
|
|
|
|
#ifndef __NIT_H
|
|
#define __NIT_H
|
|
|
|
#include "filter.h"
|
|
|
|
#define MAXNITS 16
|
|
#define MAXNETWORKNAME Utf8BufSize(256)
|
|
|
|
class cNitFilter : public cFilter {
|
|
private:
|
|
|
|
class cNit {
|
|
public:
|
|
u_short networkId;
|
|
char name[MAXNETWORKNAME];
|
|
bool hasTransponder;
|
|
};
|
|
|
|
cSectionSyncer sectionSyncer;
|
|
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);
|
|
virtual void SetStatus(bool On);
|
|
};
|
|
|
|
#endif //__NIT_H
|