vdr-plugin-streamdev/server/livefilter.h

29 lines
554 B
C
Raw Normal View History

2004-12-30 23:43:55 +01:00
/*
* $Id: livefilter.h,v 1.3 2007/04/23 15:44:55 schmirl Exp $
2004-12-30 23:43:55 +01:00
*/
#ifndef VDR_STREAMEV_LIVEFILTER_H
#define VDR_STREAMEV_LIVEFILTER_H
#include <vdr/config.h>
# if VDRVERSNUM >= 10300
#include <vdr/filter.h>
class cStreamdevStreamer;
2004-12-30 23:43:55 +01:00
class cStreamdevLiveFilter: public cFilter {
private:
cStreamdevStreamer *m_Streamer;
2004-12-30 23:43:55 +01:00
protected:
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
public:
cStreamdevLiveFilter(cStreamdevStreamer *Streamer);
2004-12-30 23:43:55 +01:00
};
# endif // VDRVERSNUM >= 10300
#endif // VDR_STREAMEV_LIVEFILTER_H