[FFmpeg-cvslog] r15141 - trunk/libavformat/rtsp.c

rbultje subversion
Mon Sep 1 15:47:54 CEST 2008


Author: rbultje
Date: Mon Sep  1 15:47:53 2008
New Revision: 15141

Log:
Some RTSP streams use SDP lines longer than 1024 bytes, so the SDP line
buffer needs to be increased. See discussion in "Realmedia patch" thread
on mailinglist.



Modified:
   trunk/libavformat/rtsp.c

Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c	(original)
+++ trunk/libavformat/rtsp.c	Mon Sep  1 15:47:53 2008
@@ -549,7 +549,7 @@ static int sdp_parse(AVFormatContext *s,
 {
     const char *p;
     int letter;
-    char buf[1024], *q;
+    char buf[2048], *q;
     SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;
 
     memset(s1, 0, sizeof(SDPParseState));




More information about the ffmpeg-cvslog mailing list