vdr
1.7.27
|
00001 /* 00002 * eit.h: EIT section filter 00003 * 00004 * See the main source file 'vdr.c' for copyright information and 00005 * how to reach the author. 00006 * 00007 * $Id: eit.h 2.1 2010/01/03 15:28:34 kls Exp $ 00008 */ 00009 00010 #ifndef __EIT_H 00011 #define __EIT_H 00012 00013 #include "filter.h" 00014 00015 class cEitFilter : public cFilter { 00016 private: 00017 static time_t disableUntil; 00018 protected: 00019 virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length); 00020 public: 00021 cEitFilter(void); 00022 static void SetDisableUntil(time_t Time); 00023 }; 00024 00025 #endif //__EIT_H