vdr-plugin-satip/tunerif.h

30 lines
959 B
C
Raw Permalink Normal View History

2014-11-09 11:51:52 +01:00
/*
* tunerif.h: SAT>IP plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SATIP_TUNERIF_H
#define __SATIP_TUNERIF_H
class cSatipTunerIf {
public:
cSatipTunerIf() {}
virtual ~cSatipTunerIf() {}
2015-01-14 16:58:13 +01:00
virtual void ProcessVideoData(u_char *bufferP, int lengthP) = 0;
virtual void ProcessApplicationData(u_char *bufferP, int lengthP) = 0;
virtual void ProcessRtpData(u_char *bufferP, int lengthP) = 0;
virtual void ProcessRtcpData(u_char *bufferP, int lengthP) = 0;
2014-11-09 11:51:52 +01:00
virtual void SetStreamId(int streamIdP) = 0;
virtual void SetSessionTimeout(const char *sessionP, int timeoutP) = 0;
2016-12-11 00:18:12 +01:00
virtual void SetupTransport(int rtpPortP, int rtcpPortP, const char *streamAddrP, const char *sourceAddrP) = 0;
2014-11-09 11:51:52 +01:00
virtual int GetId(void) = 0;
private:
2015-08-16 00:38:03 +02:00
explicit cSatipTunerIf(const cSatipTunerIf&);
2014-11-09 11:51:52 +01:00
cSatipTunerIf& operator=(const cSatipTunerIf&);
};
#endif // __SATIP_TUNERIF_H