summaryrefslogtreecommitdiff
path: root/server/livefilter.h
blob: 9159618563d958d3885e2351a3f5d809bf392842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 *  $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