mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
32 lines
631 B
C
32 lines
631 B
C
|
/*
|
||
|
* rtp.h: SAT>IP plugin for the Video Disk Recorder
|
||
|
*
|
||
|
* See the README file for copyright information and how to reach the author.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __SATIP_RTP_H_
|
||
|
#define __SATIP_RTP_H_
|
||
|
|
||
|
#include "socket.h"
|
||
|
#include "deviceif.h"
|
||
|
#include "pollerif.h"
|
||
|
#include "statistics.h"
|
||
|
|
||
|
class cSatipRtp : public cSatipSocket, public cSatipPollerIf {
|
||
|
private:
|
||
|
cSatipDeviceIf *deviceM;
|
||
|
unsigned int bufferLenM;
|
||
|
unsigned char *bufferM;
|
||
|
|
||
|
protected:
|
||
|
virtual int GetFd(void);
|
||
|
virtual void Action(int fdP);
|
||
|
|
||
|
public:
|
||
|
cSatipRtp(cSatipDeviceIf &deviceP, unsigned int bufferLenP);
|
||
|
virtual ~cSatipRtp();
|
||
|
};
|
||
|
|
||
|
#endif /* __SATIP_RTP_H_ */
|