2003-12-22 13:29:24 +01:00
|
|
|
/*
|
|
|
|
* eit.h: EIT section filter
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
|
|
|
* $Id: eit.h 1.30 2003/12/21 14:51:50 kls Exp $
|
|
|
|
*/
|
2000-09-03 11:40:00 +02:00
|
|
|
|
|
|
|
#ifndef __EIT_H
|
|
|
|
#define __EIT_H
|
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
#include "filter.h"
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
class cEitFilter : public cFilter {
|
2000-10-29 13:17:22 +01:00
|
|
|
protected:
|
2003-12-22 13:29:24 +01:00
|
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
2001-03-31 15:04:37 +02:00
|
|
|
public:
|
2003-12-22 13:29:24 +01:00
|
|
|
cEitFilter(void);
|
2000-10-29 13:17:22 +01:00
|
|
|
};
|
2000-09-03 11:40:00 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
#endif //__EIT_H
|