2014-11-14 21:28:27 +01:00
|
|
|
/*
|
|
|
|
* rtp.c: SAT>IP plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "rtp.h"
|
|
|
|
|
2014-11-16 14:38:23 +01:00
|
|
|
cSatipRtp::cSatipRtp(cSatipTunerIf &tunerP, unsigned int bufferLenP)
|
2014-11-16 16:02:30 +01:00
|
|
|
: tunerM(tunerP),
|
2014-11-14 21:28:27 +01:00
|
|
|
bufferLenM(bufferLenP),
|
2014-11-16 09:31:34 +01:00
|
|
|
bufferM(MALLOC(unsigned char, bufferLenM)),
|
|
|
|
lastErrorReportM(0),
|
|
|
|
packetErrorsM(0),
|
|
|
|
sequenceNumberM(-1)
|
2014-11-14 21:28:27 +01:00
|
|
|
{
|
2014-11-21 22:56:03 +01:00
|
|
|
debug("cSatipRtp::%s(%u) [device %d]", __FUNCTION__, bufferLenP, tunerM.GetId());
|
2014-11-14 21:28:27 +01:00
|
|
|
if (bufferM)
|
|
|
|
memset(bufferM, 0, bufferLenM);
|
|
|
|
else
|
|
|
|
error("Cannot create RTP buffer!");
|
|
|
|
}
|
|
|
|
|
|
|
|
cSatipRtp::~cSatipRtp()
|
|
|
|
{
|
2014-11-21 22:56:03 +01:00
|
|
|
debug("cSatipRtp::%s() [device %d]", __FUNCTION__, tunerM.GetId());
|
2014-11-14 21:28:27 +01:00
|
|
|
DELETE_POINTER(bufferM);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cSatipRtp::GetFd(void)
|
|
|
|
{
|
|
|
|
return Fd();
|
|
|
|
}
|
|
|
|
|
2014-11-16 09:31:34 +01:00
|
|
|
void cSatipRtp::Close(void)
|
|
|
|
{
|
2014-11-21 22:56:03 +01:00
|
|
|
debug("cSatipRtp::%s() [device %d]", __FUNCTION__, tunerM.GetId());
|
2014-11-16 09:31:34 +01:00
|
|
|
|
|
|
|
cSatipSocket::Close();
|
|
|
|
|
|
|
|
sequenceNumberM = -1;
|
|
|
|
if (packetErrorsM) {
|
|
|
|
info("Detected %d RTP packet errors", packetErrorsM);
|
|
|
|
packetErrorsM = 0;
|
|
|
|
lastErrorReportM = time(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-22 13:56:20 +01:00
|
|
|
int cSatipRtp::GetHeaderLenght(unsigned int lengthP)
|
2014-11-16 09:31:34 +01:00
|
|
|
{
|
2014-11-23 18:08:15 +01:00
|
|
|
//debug("cSatipRtp::%s(%d) [device %d]", __FUNCTION__, lengthP, tunerM.GetId());
|
2014-11-16 09:31:34 +01:00
|
|
|
unsigned int headerlen = 0;
|
|
|
|
|
|
|
|
if (lengthP > 0) {
|
|
|
|
if (bufferM[0] == TS_SYNC_BYTE)
|
|
|
|
return headerlen;
|
|
|
|
else if (lengthP > 3) {
|
|
|
|
// http://tools.ietf.org/html/rfc3550
|
|
|
|
// http://tools.ietf.org/html/rfc2250
|
|
|
|
// Version
|
|
|
|
unsigned int v = (bufferM[0] >> 6) & 0x03;
|
|
|
|
// Extension bit
|
|
|
|
unsigned int x = (bufferM[0] >> 4) & 0x01;
|
|
|
|
// CSCR count
|
|
|
|
unsigned int cc = bufferM[0] & 0x0F;
|
|
|
|
// Payload type: MPEG2 TS = 33
|
|
|
|
//unsigned int pt = bufferAddrP[1] & 0x7F;
|
|
|
|
// Sequence number
|
|
|
|
int seq = ((bufferM[2] & 0xFF) << 8) | (bufferM[3] & 0xFF);
|
|
|
|
if ((((sequenceNumberM + 1) % 0xFFFF) == 0) && (seq == 0xFFFF))
|
|
|
|
sequenceNumberM = -1;
|
|
|
|
else if ((sequenceNumberM >= 0) && (((sequenceNumberM + 1) % 0xFFFF) != seq)) {
|
|
|
|
packetErrorsM++;
|
|
|
|
if (time(NULL) - lastErrorReportM > eReportIntervalS) {
|
2014-11-21 22:56:03 +01:00
|
|
|
info("Detected %d RTP packet errors [device %d]", packetErrorsM, tunerM.GetId());
|
2014-11-16 09:31:34 +01:00
|
|
|
packetErrorsM = 0;
|
|
|
|
lastErrorReportM = time(NULL);
|
|
|
|
}
|
|
|
|
sequenceNumberM = seq;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sequenceNumberM = seq;
|
|
|
|
// Header lenght
|
|
|
|
headerlen = (3 + cc) * (unsigned int)sizeof(uint32_t);
|
|
|
|
// Check if extension
|
|
|
|
if (x) {
|
|
|
|
// Extension header length
|
|
|
|
unsigned int ehl = (((bufferM[headerlen + 2] & 0xFF) << 8) | (bufferM[headerlen + 3] & 0xFF));
|
|
|
|
// Update header length
|
|
|
|
headerlen += (ehl + 1) * (unsigned int)sizeof(uint32_t);
|
|
|
|
}
|
2014-11-22 13:56:20 +01:00
|
|
|
// Check for empty payload
|
|
|
|
if (lengthP == headerlen) {
|
|
|
|
debug("cSatipRtp::%s(%d): Received empty RTP packet #%d [device %d]", __FUNCTION__, lengthP, seq, tunerM.GetId());
|
|
|
|
headerlen = -1;
|
|
|
|
}
|
2014-11-16 09:31:34 +01:00
|
|
|
// Check that rtp is version 2 and payload contains multiple of TS packet data
|
2014-11-22 13:56:20 +01:00
|
|
|
else if ((v != 2) || (((lengthP - headerlen) % TS_SIZE) != 0) || (bufferM[headerlen] != TS_SYNC_BYTE)) {
|
|
|
|
debug("cSatipRtp::%s(%d): Received incorrect RTP packet #%d v=%d len=%d sync=0x%02X [device %d]", __FUNCTION__, lengthP, seq, v, headerlen, bufferM[headerlen], tunerM.GetId());
|
2014-11-16 09:31:34 +01:00
|
|
|
headerlen = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return headerlen;
|
|
|
|
}
|
|
|
|
|
2014-11-25 21:04:34 +01:00
|
|
|
void cSatipRtp::Process(void)
|
2014-11-14 21:28:27 +01:00
|
|
|
{
|
2014-11-25 21:04:34 +01:00
|
|
|
//debug("cSatipRtp::%s() [device %d]", __FUNCTION__, tunerM.GetId());
|
2014-11-14 21:28:27 +01:00
|
|
|
if (bufferM) {
|
2014-11-27 21:03:56 +01:00
|
|
|
int length;
|
|
|
|
while ((length = Read(bufferM, bufferLenM)) > 0) {
|
|
|
|
int headerlen = GetHeaderLenght(length);
|
|
|
|
if ((headerlen >= 0) && (headerlen < length))
|
|
|
|
tunerM.ProcessVideoData(bufferM + headerlen, length - headerlen);
|
|
|
|
}
|
|
|
|
if (errno != EAGAIN && errno != EWOULDBLOCK)
|
2014-11-29 14:37:21 +01:00
|
|
|
error("Error %d reading in %s", errno, *ToString());
|
2014-11-14 21:28:27 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-29 13:44:30 +01:00
|
|
|
|
|
|
|
cString cSatipRtp::ToString(void) const
|
|
|
|
{
|
|
|
|
return cString::sprintf("RTP [device %d]", tunerM.GetId());
|
|
|
|
}
|