# HG changeset patch # User rbultje # Date 1220276873 0 # Node ID d8fce96bb3abf507f18bac101aa74ddc4a56fd86 # Parent 8bde52c0934c6c889821c3c11742d111e18f9872 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. diff -r 8bde52c0934c -r d8fce96bb3ab rtsp.c --- a/rtsp.c Mon Sep 01 13:46:50 2008 +0000 +++ b/rtsp.c Mon Sep 01 13:47:53 2008 +0000 @@ -549,7 +549,7 @@ { 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));