From 5ed9eebc24add4d713ac0deafecfc714502b0bf3 Mon Sep 17 00:00:00 2001 From: Andrew Van Til Date: Fri, 5 Apr 2013 01:45:52 +0200 Subject: [PATCH] rtsp/rtp_read_header: Use RTP_MAX_PACKET_LENGTH instead of 1500 Signed-off-by: Michael Niedermayer --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 317893c5d0..fcc134f06f 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -2134,7 +2134,7 @@ static int rtp_probe(AVProbeData *p) static int rtp_read_header(AVFormatContext *s) { - uint8_t recvbuf[1500]; + uint8_t recvbuf[RTP_MAX_PACKET_LENGTH]; char host[500], sdp[500]; int ret, port; URLContext* in = NULL;