Commit f6e78ea9 authored by rbultje's avatar rbultje

Add comment to indicate why the SDP line buffer is as big as it is.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16137 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9685b2a1
......@@ -563,6 +563,10 @@ static int sdp_parse(AVFormatContext *s, const char *content)
{
const char *p;
int letter;
/* Some SDP lines, particularly for Realmedia or ASF RTSP streams, contain long SDP
* lines containing complete ASF Headers (several kB) or arrays of MDPR (RM stream
* descriptor) headers plus "rulebooks" describing their properties. Therefore, the
* SDP line buffer is large. */
char buf[8192], *q;
SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;
......
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