diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-14 22:23:14 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-12-14 22:23:14 +0000 |
commit | e322d3f5be65edde56f42eda61983d74ad24dcdf (patch) | |
tree | c52e473c3329d95585799f1936ad2d49d3c4ae8e /libavformat | |
parent | d0a01fe84b03ed07a8706cc64876e5cc5037a468 (diff) | |
download | ffmpeg-e322d3f5be65edde56f42eda61983d74ad24dcdf.tar.gz |
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.
Originally committed as revision 16136 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 134910c98c..b1f2a84584 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -563,7 +563,7 @@ static int sdp_parse(AVFormatContext *s, const char *content) { 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)); |