[FFmpeg-cvslog] r16136 - trunk/libavformat/rtsp.c
rbultje
subversion
Sun Dec 14 23:23:14 CET 2008
Author: rbultje
Date: Sun Dec 14 23:23:14 2008
New Revision: 16136
Log:
Increase SDP line buffer size because ASF headers in RTSP-MS are very big. See ML discussion
in "rtsp.c: increase SDP line buffer size" thread.
Modified:
trunk/libavformat/rtsp.c
Modified: trunk/libavformat/rtsp.c
==============================================================================
--- trunk/libavformat/rtsp.c (original)
+++ trunk/libavformat/rtsp.c Sun Dec 14 23:23:14 2008
@@ -563,7 +563,7 @@ static int sdp_parse(AVFormatContext *s,
{
const char *p;
int letter;
- char buf[2048], *q;
+ char buf[8192], *q;
SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;
memset(s1, 0, sizeof(SDPParseState));
More information about the ffmpeg-cvslog
mailing list