2008-07-16 16:35:59 +08:00
|
|
|
//
|
2008-07-25 17:08:15 +08:00
|
|
|
// ZoneMinder RTCP Class Implementation, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
|
|
|
|
2008-10-17 00:11:49 +08:00
|
|
|
#include "zm.h"
|
|
|
|
|
|
|
|
#if HAVE_LIBAVFORMAT
|
|
|
|
|
2008-07-16 16:35:59 +08:00
|
|
|
#include "zm_rtp_ctrl.h"
|
|
|
|
|
|
|
|
#include "zm_time.h"
|
|
|
|
#include "zm_rtsp.h"
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
RtpCtrlThread::RtpCtrlThread( RtspThread &rtspThread, RtpSource &rtpSource )
|
|
|
|
: mRtspThread( rtspThread ), mRtpSource( rtpSource ), mStop( false )
|
2008-07-16 16:35:59 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
int RtpCtrlThread::recvPacket( const unsigned char *packet, ssize_t packetLen ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
const RtcpPacket *rtcpPacket;
|
|
|
|
rtcpPacket = (RtcpPacket *)packet;
|
|
|
|
|
|
|
|
int consumed = 0;
|
|
|
|
|
|
|
|
//printf( "C: " );
|
|
|
|
//for ( int i = 0; i < packetLen; i++ )
|
|
|
|
//printf( "%02x ", (unsigned char)packet[i] );
|
|
|
|
//printf( "\n" );
|
|
|
|
int ver = rtcpPacket->header.version;
|
|
|
|
int count = rtcpPacket->header.count;
|
|
|
|
int pt = rtcpPacket->header.pt;
|
|
|
|
int len = ntohs(rtcpPacket->header.lenN);
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug( 5, "RTCP Ver: %d Count: %d Pt: %d len: %d", ver, count, pt, len);
|
2016-04-04 22:11:48 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
switch( pt ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
case RTCP_SR :
|
2008-07-16 16:35:59 +08:00
|
|
|
{
|
2016-04-04 22:11:48 +08:00
|
|
|
uint32_t ssrc = ntohl(rtcpPacket->body.sr.ssrcN);
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
Debug( 5, "RTCP Got SR (%x)", ssrc );
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( mRtpSource.getSsrc() ) {
|
|
|
|
if ( ssrc != mRtpSource.getSsrc() ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
Warning( "Discarding packet for unrecognised ssrc %x", ssrc );
|
|
|
|
return( -1 );
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
2019-04-29 00:05:32 +08:00
|
|
|
} else if ( ssrc ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
mRtpSource.setSsrc( ssrc );
|
|
|
|
}
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( len > 1 ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
//printf( "NTPts:%d.%d, RTPts:%d\n", $ntptsmsb, $ntptslsb, $rtpts );
|
|
|
|
uint16_t ntptsmsb = ntohl(rtcpPacket->body.sr.ntpSecN);
|
|
|
|
uint16_t ntptslsb = ntohl(rtcpPacket->body.sr.ntpFracN);
|
|
|
|
//printf( "NTPts:%x.%04x, RTPts:%x\n", $ntptsmsb, $ntptslsb, $rtpts );
|
|
|
|
//printf( "Pkts:$sendpkts, Octs:$sendocts\n" );
|
|
|
|
uint32_t rtpTime = ntohl(rtcpPacket->body.sr.rtpTsN);
|
|
|
|
|
|
|
|
mRtpSource.updateRtcpData( ntptsmsb, ntptslsb, rtpTime );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RTCP_SDES :
|
|
|
|
{
|
|
|
|
ssize_t contentLen = packetLen - sizeof(rtcpPacket->header);
|
2019-04-29 00:05:32 +08:00
|
|
|
while ( contentLen ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
Debug( 5, "RTCP CL: %zd", contentLen );
|
|
|
|
uint32_t ssrc = ntohl(rtcpPacket->body.sdes.srcN);
|
|
|
|
|
|
|
|
Debug( 5, "RTCP Got SDES (%x), %d items", ssrc, count );
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( mRtpSource.getSsrc() && (ssrc != mRtpSource.getSsrc()) ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
Warning( "Discarding packet for unrecognised ssrc %x", ssrc );
|
|
|
|
return( -1 );
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
2016-04-04 22:11:48 +08:00
|
|
|
|
|
|
|
unsigned char *sdesPtr = (unsigned char *)&rtcpPacket->body.sdes.item;
|
2019-04-29 00:05:32 +08:00
|
|
|
for ( int i = 0; i < count; i++ ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
RtcpSdesItem *item = (RtcpSdesItem *)sdesPtr;
|
|
|
|
Debug( 5, "RTCP Item length %d", item->len );
|
2019-04-29 00:05:32 +08:00
|
|
|
switch( item->type ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
case RTCP_SDES_CNAME :
|
|
|
|
{
|
|
|
|
std::string cname( item->data, item->len );
|
|
|
|
Debug( 5, "RTCP Got CNAME %s", cname.c_str() );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RTCP_SDES_END :
|
|
|
|
case RTCP_SDES_NAME :
|
|
|
|
case RTCP_SDES_EMAIL :
|
|
|
|
case RTCP_SDES_PHONE :
|
|
|
|
case RTCP_SDES_LOC :
|
|
|
|
case RTCP_SDES_TOOL :
|
|
|
|
case RTCP_SDES_NOTE :
|
|
|
|
case RTCP_SDES_PRIV :
|
|
|
|
default :
|
|
|
|
Error( "Received unexpected SDES item type %d, ignoring", item->type );
|
2019-04-29 00:05:32 +08:00
|
|
|
return -1;
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
int paddedLen = 4+2+item->len+1; // Add null byte
|
|
|
|
paddedLen = (((paddedLen-1)/4)+1)*4; // Round to nearest multiple of 4
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug(5, "RTCP PL:%d", paddedLen);
|
2016-04-04 22:11:48 +08:00
|
|
|
sdesPtr += paddedLen;
|
|
|
|
contentLen = ( paddedLen <= contentLen ) ? ( contentLen - paddedLen ) : 0;
|
2015-01-08 06:01:38 +08:00
|
|
|
}
|
2019-04-29 00:05:32 +08:00
|
|
|
} // end whiel contentLen
|
2016-04-04 22:11:48 +08:00
|
|
|
break;
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
2016-04-04 22:11:48 +08:00
|
|
|
case RTCP_BYE :
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug(5, "RTCP Got BYE");
|
2016-04-04 22:11:48 +08:00
|
|
|
mStop = true;
|
|
|
|
break;
|
|
|
|
case RTCP_APP :
|
|
|
|
// Ignoring as per RFC 3550
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug(5, "Received RTCP_APP packet, ignoring.");
|
2016-04-04 22:11:48 +08:00
|
|
|
break;
|
|
|
|
case RTCP_RR :
|
2019-04-29 00:05:32 +08:00
|
|
|
Error("Received RTCP_RR packet.");
|
|
|
|
return -1;
|
2016-04-04 22:11:48 +08:00
|
|
|
default :
|
|
|
|
// Ignore unknown packet types. Some cameras do this by design.
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug(5, "Received unexpected packet type %d, ignoring", pt);
|
2016-04-04 22:11:48 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
consumed = sizeof(uint32_t)*(len+1);
|
2019-04-29 00:05:32 +08:00
|
|
|
return consumed;
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
int RtpCtrlThread::generateRr( const unsigned char *packet, ssize_t packetLen ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
RtcpPacket *rtcpPacket = (RtcpPacket *)packet;
|
|
|
|
|
|
|
|
int byteLen = sizeof(rtcpPacket->header)+sizeof(rtcpPacket->body.rr)+sizeof(rtcpPacket->body.rr.rr[0]);
|
|
|
|
int wordLen = ((byteLen-1)/sizeof(uint32_t))+1;
|
|
|
|
|
|
|
|
rtcpPacket->header.version = RTP_VERSION;
|
|
|
|
rtcpPacket->header.p = 0;
|
|
|
|
rtcpPacket->header.pt = RTCP_RR;
|
|
|
|
rtcpPacket->header.count = 1;
|
|
|
|
rtcpPacket->header.lenN = htons(wordLen-1);
|
|
|
|
|
|
|
|
mRtpSource.updateRtcpStats();
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug(5, "Ssrc = %d Ssrc_1 = %d Last Seq = %d Jitter = %d Last SR = %d",
|
|
|
|
mRtspThread.getSsrc()+1,
|
|
|
|
mRtpSource.getSsrc(),
|
|
|
|
mRtpSource.getMaxSeq(),
|
|
|
|
mRtpSource.getJitter(),
|
|
|
|
mRtpSource.getLastSrTimestamp()
|
|
|
|
);
|
2016-04-04 22:11:48 +08:00
|
|
|
|
|
|
|
rtcpPacket->body.rr.ssrcN = htonl(mRtspThread.getSsrc()+1);
|
|
|
|
rtcpPacket->body.rr.rr[0].ssrcN = htonl(mRtpSource.getSsrc());
|
|
|
|
rtcpPacket->body.rr.rr[0].lost = mRtpSource.getLostPackets();
|
|
|
|
rtcpPacket->body.rr.rr[0].fraction = mRtpSource.getLostFraction();
|
|
|
|
rtcpPacket->body.rr.rr[0].lastSeqN = htonl(mRtpSource.getMaxSeq());
|
|
|
|
rtcpPacket->body.rr.rr[0].jitterN = htonl(mRtpSource.getJitter());
|
|
|
|
rtcpPacket->body.rr.rr[0].lsrN = htonl(mRtpSource.getLastSrTimestamp());
|
|
|
|
rtcpPacket->body.rr.rr[0].dlsrN = 0;
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
return wordLen*sizeof(uint32_t);
|
|
|
|
} // end RtpCtrlThread::generateRr
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
int RtpCtrlThread::generateSdes( const unsigned char *packet, ssize_t packetLen ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
RtcpPacket *rtcpPacket = (RtcpPacket *)packet;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
const std::string &cname = mRtpSource.getCname();
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
int byteLen = sizeof(rtcpPacket->header)+sizeof(rtcpPacket->body.sdes)+sizeof(rtcpPacket->body.sdes.item[0])+cname.size();
|
|
|
|
int wordLen = ((byteLen-1)/sizeof(uint32_t))+1;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
rtcpPacket->header.version = RTP_VERSION;
|
|
|
|
rtcpPacket->header.p = 0;
|
|
|
|
rtcpPacket->header.pt = RTCP_SDES;
|
|
|
|
rtcpPacket->header.count = 1;
|
|
|
|
rtcpPacket->header.lenN = htons(wordLen-1);
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
rtcpPacket->body.sdes.srcN = htonl(mRtpSource.getSsrc()+1);
|
|
|
|
rtcpPacket->body.sdes.item[0].type = RTCP_SDES_CNAME;
|
|
|
|
rtcpPacket->body.sdes.item[0].len = cname.size();
|
|
|
|
memcpy( rtcpPacket->body.sdes.item[0].data, cname.data(), cname.size() );
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
return wordLen*sizeof(uint32_t);
|
|
|
|
} // end RtpCtrlThread::generateSdes
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
int RtpCtrlThread::generateBye( const unsigned char *packet, ssize_t packetLen ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
RtcpPacket *rtcpPacket = (RtcpPacket *)packet;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
int byteLen = sizeof(rtcpPacket->header)+sizeof(rtcpPacket->body.bye)+sizeof(rtcpPacket->body.bye.srcN[0]);
|
|
|
|
int wordLen = ((byteLen-1)/sizeof(uint32_t))+1;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
rtcpPacket->header.version = RTP_VERSION;
|
|
|
|
rtcpPacket->header.p = 0;
|
|
|
|
rtcpPacket->header.pt = RTCP_BYE;
|
|
|
|
rtcpPacket->header.count = 1;
|
|
|
|
rtcpPacket->header.lenN = htons(wordLen-1);
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
rtcpPacket->body.bye.srcN[0] = htonl(mRtpSource.getSsrc());
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
return wordLen*sizeof(uint32_t);
|
|
|
|
} // end RtpCtrolThread::generateBye
|
2008-07-16 16:35:59 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
int RtpCtrlThread::recvPackets( unsigned char *buffer, ssize_t nBytes ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
unsigned char *bufferPtr = buffer;
|
|
|
|
|
|
|
|
// u_int32 len; /* length of compound RTCP packet in words */
|
|
|
|
// rtcp_t *r; /* RTCP header */
|
|
|
|
// rtcp_t *end; /* end of compound RTCP packet */
|
|
|
|
|
|
|
|
// if ((*(u_int16 *)r & RTCP_VALID_MASK) != RTCP_VALID_VALUE) {
|
|
|
|
// /* something wrong with packet format */
|
|
|
|
// }
|
|
|
|
// end = (rtcp_t *)((u_int32 *)r + len);
|
|
|
|
|
|
|
|
// do r = (rtcp_t *)((u_int32 *)r + r->common.length + 1);
|
|
|
|
// while (r < end && r->common.version == 2);
|
|
|
|
|
|
|
|
// if (r != end) {
|
|
|
|
// /* something wrong with packet format */
|
|
|
|
// }
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
while ( nBytes > 0 ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
int consumed = recvPacket( bufferPtr, nBytes );
|
|
|
|
if ( consumed <= 0 )
|
|
|
|
break;
|
|
|
|
bufferPtr += consumed;
|
|
|
|
nBytes -= consumed;
|
|
|
|
}
|
2019-04-29 00:05:32 +08:00
|
|
|
return nBytes;
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
int RtpCtrlThread::run() {
|
2016-04-04 22:11:48 +08:00
|
|
|
Debug( 2, "Starting control thread %x on port %d", mRtpSource.getSsrc(), mRtpSource.getLocalCtrlPort() );
|
|
|
|
SockAddrInet localAddr, remoteAddr;
|
|
|
|
|
|
|
|
bool sendReports;
|
|
|
|
UdpInetSocket rtpCtrlServer;
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( mRtpSource.getLocalHost() != "" ) {
|
2016-05-06 20:32:21 +08:00
|
|
|
if ( !rtpCtrlServer.bind( mRtpSource.getLocalHost().c_str(), mRtpSource.getLocalCtrlPort() ) )
|
2016-04-04 22:11:48 +08:00
|
|
|
Fatal( "Failed to bind RTCP server" );
|
|
|
|
sendReports = false;
|
|
|
|
Debug( 3, "Bound to %s:%d", mRtpSource.getLocalHost().c_str(), mRtpSource.getLocalCtrlPort() );
|
2019-04-29 00:05:32 +08:00
|
|
|
} else {
|
2016-05-06 20:32:21 +08:00
|
|
|
if ( !rtpCtrlServer.bind( mRtspThread.getAddressFamily() == AF_INET6 ? "::" : "0.0.0.0", mRtpSource.getLocalCtrlPort() ) )
|
2016-04-04 22:11:48 +08:00
|
|
|
Fatal( "Failed to bind RTCP server" );
|
|
|
|
Debug( 3, "Bound to %s:%d", mRtpSource.getLocalHost().c_str(), mRtpSource.getLocalCtrlPort() );
|
2016-05-06 20:32:21 +08:00
|
|
|
if ( !rtpCtrlServer.connect( mRtpSource.getRemoteHost().c_str(), mRtpSource.getRemoteCtrlPort() ) )
|
2016-04-04 22:11:48 +08:00
|
|
|
Fatal( "Failed to connect RTCP server" );
|
|
|
|
Debug( 3, "Connected to %s:%d", mRtpSource.getRemoteHost().c_str(), mRtpSource.getRemoteCtrlPort() );
|
|
|
|
sendReports = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The only reason I can think of why we would have a timeout period is so that we can regularly send RR packets.
|
|
|
|
// Why 10 seconds? If anything I think this should be whatever timeout value was given in the DESCRIBE response
|
|
|
|
Select select( 10 );
|
|
|
|
select.addReader( &rtpCtrlServer );
|
|
|
|
|
|
|
|
unsigned char buffer[ZM_NETWORK_BUFSIZ];
|
|
|
|
|
|
|
|
time_t last_receive = time(NULL);
|
|
|
|
bool timeout = false; // used as a flag that we had a timeout, and then sent an RR to see if we wake back up. Real timeout will happen when this is true.
|
|
|
|
|
|
|
|
while ( !mStop && select.wait() >= 0 ) {
|
|
|
|
|
|
|
|
time_t now = time(NULL);
|
|
|
|
Select::CommsList readable = select.getReadable();
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( readable.size() == 0 ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
if ( ! timeout ) {
|
|
|
|
// With this code here, we will send an SDES and RR packet every 10 seconds
|
|
|
|
ssize_t nBytes;
|
|
|
|
unsigned char *bufferPtr = buffer;
|
|
|
|
bufferPtr += generateRr( bufferPtr, sizeof(buffer)-(bufferPtr-buffer) );
|
|
|
|
bufferPtr += generateSdes( bufferPtr, sizeof(buffer)-(bufferPtr-buffer) );
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug( 3, "Preventing timeout by sending %zd bytes on sd %d. Time since last receive: %d",
|
|
|
|
bufferPtr-buffer, rtpCtrlServer.getWriteDesc(), ( now-last_receive) );
|
|
|
|
if ( (nBytes = rtpCtrlServer.send(buffer, bufferPtr-buffer)) < 0 )
|
|
|
|
Error("Unable to send: %s", strerror(errno));
|
2016-04-04 22:11:48 +08:00
|
|
|
timeout = true;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
//Error( "RTCP timed out" );
|
|
|
|
Debug(1, "RTCP timed out. Time since last receive: %d", ( now-last_receive) );
|
|
|
|
continue;
|
|
|
|
//break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
timeout = false;
|
|
|
|
last_receive = time(NULL);
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
2019-04-29 00:05:32 +08:00
|
|
|
for ( Select::CommsList::iterator iter = readable.begin(); iter != readable.end(); ++iter ) {
|
|
|
|
if ( UdpInetSocket *socket = dynamic_cast<UdpInetSocket *>(*iter) ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
ssize_t nBytes = socket->recv( buffer, sizeof(buffer) );
|
|
|
|
Debug( 4, "Read %zd bytes on sd %d", nBytes, socket->getReadDesc() );
|
2015-01-30 22:44:10 +08:00
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( nBytes ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
recvPackets( buffer, nBytes );
|
|
|
|
|
2019-04-29 00:05:32 +08:00
|
|
|
if ( sendReports ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
unsigned char *bufferPtr = buffer;
|
|
|
|
bufferPtr += generateRr( bufferPtr, sizeof(buffer)-(bufferPtr-buffer) );
|
|
|
|
bufferPtr += generateSdes( bufferPtr, sizeof(buffer)-(bufferPtr-buffer) );
|
2019-04-29 00:05:32 +08:00
|
|
|
Debug(3, "Sending %zd bytes on sd %d", bufferPtr-buffer, rtpCtrlServer.getWriteDesc());
|
2016-04-04 22:11:48 +08:00
|
|
|
if ( (nBytes = rtpCtrlServer.send( buffer, bufferPtr-buffer )) < 0 )
|
2019-04-29 00:05:32 +08:00
|
|
|
Error("Unable to send: %s", strerror(errno));
|
2016-04-04 22:11:48 +08:00
|
|
|
//Debug( 4, "Sent %d bytes on sd %d", nBytes, rtpCtrlServer.getWriteDesc() );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Here is another case of not receiving some data causing us to terminate... why? Sometimes there are pauses in the interwebs.
|
|
|
|
mStop = true;
|
|
|
|
break;
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
2019-04-29 00:05:32 +08:00
|
|
|
} else {
|
|
|
|
Panic("Barfed");
|
|
|
|
} // end if socket
|
|
|
|
} // end foeach comms iterator
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
rtpCtrlServer.close();
|
|
|
|
mRtspThread.stop();
|
2019-04-29 00:05:32 +08:00
|
|
|
return 0;
|
2008-07-16 16:35:59 +08:00
|
|
|
}
|
2008-10-17 00:11:49 +08:00
|
|
|
|
|
|
|
#endif // HAVE_LIBAVFORMAT
|