id,summary,reporter,owner,description,type,status,priority,component,version,resolution,keywords,cc,blockedby,blocking,reproduced,analyzed
2314,Can't receive RTP streams > 1500 bytes.,babgvant,,"Some Digital Cable Tuners use RTP packets larger than 1500 bytes, because of this the current implementation will not connect to their RTP streams. Fix is noted below.

Cheers

Change: rtpdec.h

#define RTP_MAX_PACKET_LENGTH 8192 //1500

Change: rtsp.c

static int rtp_read_header(AVFormatContext *s)
{
    //uint8_t recvbuf[1500];
	uint8_t recvbuf[RTP_MAX_PACKET_LENGTH];",defect,closed,normal,avformat,unspecified,fixed,RTP,,,,0,0
