2004-01-04 12:30:00 +01:00
|
|
|
/*
|
|
|
|
* sdt.h: SDT section filter
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2004-01-05 14:30:31 +01:00
|
|
|
* $Id: sdt.h 1.2 2004/01/05 14:30:14 kls Exp $
|
2004-01-04 12:30:00 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SDT_H
|
|
|
|
#define __SDT_H
|
|
|
|
|
|
|
|
#include "filter.h"
|
|
|
|
#include "pat.h"
|
|
|
|
|
|
|
|
class cSdtFilter : public cFilter {
|
|
|
|
private:
|
2004-01-05 14:30:31 +01:00
|
|
|
cSectionSyncer sectionSyncer;
|
2004-01-04 12:30:00 +01:00
|
|
|
cPatFilter *patFilter;
|
|
|
|
protected:
|
|
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
|
|
|
public:
|
|
|
|
cSdtFilter(cPatFilter *PatFilter);
|
|
|
|
virtual void SetStatus(bool On);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__SDT_H
|