mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
26 lines
501 B
C++
26 lines
501 B
C++
/*
|
|
* eit.h: EIT section filter
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: eit.h 2.1 2010/01/03 15:28:34 kls Exp $
|
|
*/
|
|
|
|
#ifndef __EIT_H
|
|
#define __EIT_H
|
|
|
|
#include "filter.h"
|
|
|
|
class cEitFilter : public cFilter {
|
|
private:
|
|
static time_t disableUntil;
|
|
protected:
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
|
public:
|
|
cEitFilter(void);
|
|
static void SetDisableUntil(time_t Time);
|
|
};
|
|
|
|
#endif //__EIT_H
|