vdr-plugin-satip/rtp.h

40 lines
831 B
C
Raw Normal View History

/*
* 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"
2014-11-16 14:38:23 +01:00
#include "tunerif.h"
#include "pollerif.h"
class cSatipRtp : public cSatipSocket, public cSatipPollerIf {
private:
enum {
eReportIntervalS = 300 // in seconds
};
2014-11-16 16:02:30 +01:00
cSatipTunerIf &tunerM;
unsigned int bufferLenM;
unsigned char *bufferM;
time_t lastErrorReportM;
int packetErrorsM;
int sequenceNumberM;
2014-11-22 13:56:20 +01:00
int GetHeaderLenght(unsigned int lengthP);
public:
2014-11-16 14:38:23 +01:00
cSatipRtp(cSatipTunerIf &tunerP, unsigned int bufferLenP);
virtual ~cSatipRtp();
virtual void Close(void);
2014-11-16 15:56:59 +01:00
// for internal poller interface
public:
virtual int GetFd(void);
2014-11-25 21:04:34 +01:00
virtual void Process(void);
};
#endif /* __SATIP_RTP_H_ */