mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-12-26 23:06:44 +01:00
28 lines
571 B
C++
28 lines
571 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 5.1 2025/03/02 11:03:35 kls Exp $
|
|
*/
|
|
|
|
#ifndef __NIT_H
|
|
#define __NIT_H
|
|
|
|
#include "filter.h"
|
|
#include "sdt.h"
|
|
|
|
class cNitFilter : public cFilter {
|
|
private:
|
|
cSectionSyncer sectionSyncer;
|
|
cSdtFilter *sdtFilter;
|
|
protected:
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length) override;
|
|
public:
|
|
cNitFilter(cSdtFilter *SdtFilter);
|
|
virtual void SetStatus(bool On) override;
|
|
};
|
|
|
|
#endif //__NIT_H
|