changeset 4108:132640f78cb2 libavformat

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.
author rbultje
date Sun, 14 Dec 2008 22:23:14 +0000
parents 0f0be7c78ece
children e2349f1f7c26
files rtsp.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rtsp.c	Sun Dec 14 20:38:05 2008 +0000
+++ b/rtsp.c	Sun Dec 14 22:23:14 2008 +0000
@@ -563,7 +563,7 @@
 {
     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));