1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

37 lines
743 B
C
Raw Normal View History

/*
* rtcp.h: SAT>IP plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SATIP_RTCP_H_
#define __SATIP_RTCP_H_
#include "socket.h"
#include "tunerif.h"
#include "pollerif.h"
2014-11-16 15:38:23 +02:00
class cSatipRtcp : public cSatipSocket, public cSatipPollerIf {
private:
enum {
eApplicationMaxSizeB = 1500,
};
2014-11-16 17:02:30 +02:00
cSatipTunerIf &tunerM;
unsigned int bufferLenM;
unsigned char *bufferM;
2015-01-14 17:58:13 +02:00
int GetApplicationOffset(int *lengthP);
public:
cSatipRtcp(cSatipTunerIf &tunerP);
virtual ~cSatipRtcp();
2014-11-16 16:56:59 +02:00
// for internal poller interface
public:
virtual int GetFd(void);
2014-11-25 22:04:34 +02:00
virtual void Process(void);
virtual cString ToString(void) const;
};
#endif /* __SATIP_RTCP_H_ */