? libmpdemux/rtp.c.save Index: libmpdemux/rtp.c =================================================================== RCS file: /cvsroot/mplayer/main/libmpdemux/rtp.c,v retrieving revision 1.10 diff -u -r1.10 rtp.c --- libmpdemux/rtp.c 19 Jun 2005 12:42:36 -0000 1.10 +++ libmpdemux/rtp.c 5 May 2006 07:40:31 -0000 @@ -32,23 +32,176 @@ extern int network_bandwidth; + +#define DEBUG 1 +#include "../mp_msg.h" +#include "rtp.h" + +// RTP reorder routines +// Also handling of repeated UDP packets (a bug of ExtremeNetworks switches firmware) +// rtpreord procedures +// write rtp packets in cache +// get rtp packets reordered + +#define MAXRTPPACKETSIN 32 // The number of max packets being reordered + +struct rtpbuffer +{ + unsigned char data[MAXRTPPACKETSIN][STREAM_BUFFER_SIZE]; + unsigned short seq[MAXRTPPACKETSIN]; + unsigned short len[MAXRTPPACKETSIN]; + unsigned short first; +}; +static struct rtpbuffer rtpbuf; + +// RTP Reordering functions +// Algorithm works as follows: +// If next packet is in sequence just copy it to buffer +// Otherwise copy it in cache according to its sequence number +// Cache is a circular array where "rtpbuf.first" points to next sequence slot +// and keeps track of expected sequence + +// Initialize rtp cache +static void rtp_cache_reset(unsigned short seq) +{ + int i; + + rtpbuf.first = 0; + rtpbuf.seq[0] = ++seq; + + for (i=0; i MAXRTPPACKETSIN) + { + mp_msg(MSGT_NETWORK, MSGL_DBG2, "Overrun(seq[%d]=%d seq=%d, newseq=%d)\n", rtpbuf.first, rtpbuf.seq[rtpbuf.first], seq, newseq); + memcpy (buffer, data, length); + rtp_cache_reset(seq); + return length; + } + + if (newseq < 0) + { + int i; + + // Is it a stray packet re-sent to network? + for (i=0; i -(3 * MAXRTPPACKETSIN)) { + mp_msg(MSGT_NETWORK, MSGL_ERR, "Too Old packet (seq[%d]=%d seq=%d, newseq=%d)\n", rtpbuf.first, rtpbuf.seq[rtpbuf.first], seq, newseq); + return 0; // Yes, it is! + } + + mp_msg(MSGT_NETWORK, MSGL_ERR, "Underrun(seq[%d]=%d seq=%d, newseq=%d)\n", rtpbuf.first, rtpbuf.seq[rtpbuf.first], seq, newseq); + + memcpy (buffer, data, length); + rtp_cache_reset(seq); + return length; + } + + mp_msg(MSGT_NETWORK, MSGL_DBG4, "Out of Seq (seq[%d]=%d seq=%d, newseq=%d)\n", rtpbuf.first, rtpbuf.seq[rtpbuf.first], seq, newseq); + newseq = ( newseq + rtpbuf.first ) % MAXRTPPACKETSIN; + memcpy (rtpbuf.data[newseq], data, length); + rtpbuf.len[newseq] = length; + rtpbuf.seq[newseq] = seq; + + return 0; +} + +// Get next packet in cache +// Look in cache to get first packet in sequence +static int rtp_get_next(int fd, char *buffer, int length) +{ + int i; + unsigned short nextseq; + + // If we have empty buffer we loop to fill it + for (i=0; i < MAXRTPPACKETSIN -3; i++) { + + if (rtpbuf.len[rtpbuf.first] != 0) break; + + length = rtp_cache(fd, buffer, length) ; + + // returns on first packet in sequence + if (length > 0) { + //mp_msg(MSGT_NETWORK, MSGL_DBG4, "Getting rtp [%d] %hu\n", i, rtpbuf.first); + return length; + } else if (length < 0) break; + + // Only if length == 0 loop continues! + } + + i = rtpbuf.first; + while (rtpbuf.len[i] == 0) { + mp_msg(MSGT_NETWORK, MSGL_ERR, "Lost packet %hu\n", rtpbuf.seq[i]); + i = ( 1 + i ) % MAXRTPPACKETSIN; + if (rtpbuf.first == i) break; + } + rtpbuf.first = i; + + // Copy next non empty packet from cache + mp_msg(MSGT_NETWORK, MSGL_DBG4, "Getting rtp from cache [%d] %hu\n", rtpbuf.first, rtpbuf.seq[rtpbuf.first]); + memcpy (buffer, rtpbuf.data[rtpbuf.first], rtpbuf.len[rtpbuf.first]); + length = rtpbuf.len[rtpbuf.first]; // can be zero? + + // Reset fisrt slot and go next in cache + rtpbuf.len[rtpbuf.first] = 0; + nextseq = rtpbuf.seq[rtpbuf.first]; + rtpbuf.first = ( 1 + rtpbuf.first ) % MAXRTPPACKETSIN; + rtpbuf.seq[rtpbuf.first] = nextseq + 1; + + return length; +} + +// Read next rtp packet using cache int read_rtp_from_server(int fd, char *buffer, int length) { - struct rtpheader rh; - char *data; - int len; - static int got_first = 0; - static unsigned short sequence; - - if( buffer==NULL || length<0 ) return -1; - - getrtp2(fd, &rh, &data, &len); - if( got_first && rh.b.sequence != (unsigned short)(sequence+1) ) - mp_msg(MSGT_NETWORK,MSGL_ERR,"RTP packet sequence error! Expected: %d, received: %d\n", - sequence+1, rh.b.sequence); - got_first = 1; - sequence = rh.b.sequence; - memcpy(buffer, data, len); - return(len); + + // Following test is ASSERT (i.e. uneuseful if code is correct) + if ( buffer==NULL || length