Commit 9685b2a1 authored by rbultje's avatar rbultje

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.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16136 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 178d5edd
......@@ -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));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment