mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
0553fce43c
- Use cStreamer (base class) instead of cLiveStreamer (no need to know streamer type) * works with cLiveStreamer and cLiveFilterStreamer * avoid circular dependency - visibility of cStreamdevLiveReceiver: Moved from livestreamer.h -> .c Modified Files: server/livefilter.c server/livefilter.h server/livestreamer.c server/livestreamer.h
29 lines
554 B
C++
29 lines
554 B
C++
/*
|
|
* $Id: livefilter.h,v 1.3 2007/04/23 15:44:55 schmirl Exp $
|
|
*/
|
|
|
|
#ifndef VDR_STREAMEV_LIVEFILTER_H
|
|
#define VDR_STREAMEV_LIVEFILTER_H
|
|
|
|
#include <vdr/config.h>
|
|
|
|
# if VDRVERSNUM >= 10300
|
|
|
|
#include <vdr/filter.h>
|
|
|
|
class cStreamdevStreamer;
|
|
|
|
class cStreamdevLiveFilter: public cFilter {
|
|
private:
|
|
cStreamdevStreamer *m_Streamer;
|
|
|
|
protected:
|
|
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
|
|
|
|
public:
|
|
cStreamdevLiveFilter(cStreamdevStreamer *Streamer);
|
|
};
|
|
|
|
# endif // VDRVERSNUM >= 10300
|
|
#endif // VDR_STREAMEV_LIVEFILTER_H
|