Browse Source

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.

Originally committed as revision 15141 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Ronald S. Bultje 17 years ago
parent
commit
d6bb9ebdc6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtsp.c

+ 1
- 1
libavformat/rtsp.c View File

@@ -549,7 +549,7 @@ static int sdp_parse(AVFormatContext *s, const char *content)
{
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));


Loading…
Cancel
Save