mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
32 lines
641 B
C++
32 lines
641 B
C++
/*
|
|
* $Id: livefilter.h,v 1.2 2005/11/07 19:28:41 lordjaxom Exp $
|
|
*/
|
|
|
|
#ifndef VDR_STREAMEV_LIVEFILTER_H
|
|
#define VDR_STREAMEV_LIVEFILTER_H
|
|
|
|
#include <vdr/config.h>
|
|
|
|
# if VDRVERSNUM >= 10300
|
|
|
|
#include <vdr/filter.h>
|
|
|
|
class cStreamdevLiveStreamer;
|
|
|
|
class cStreamdevLiveFilter: public cFilter {
|
|
friend class cStreamdevLiveStreamer;
|
|
|
|
private:
|
|
cStreamdevLiveStreamer *m_Streamer;
|
|
|
|
protected:
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
|
|
|
public:
|
|
cStreamdevLiveFilter(cStreamdevLiveStreamer *Streamer);
|
|
virtual ~cStreamdevLiveFilter();
|
|
};
|
|
|
|
# endif // VDRVERSNUM >= 10300
|
|
#endif // VDR_STREAMEV_LIVEFILTER_H
|