OSDN Git Service

avconv: Increase the SDP buffer size to fit xiph SDPs
authorMartin Storsjö <martin@martin.st>
Thu, 17 Jan 2013 13:34:25 +0000 (15:34 +0200)
committerMartin Storsjö <martin@martin.st>
Sun, 20 Jan 2013 16:20:47 +0000 (18:20 +0200)
Signed-off-by: Martin Storsjö <martin@martin.st>
avconv.c

index dd998ab..f086cbb 100644 (file)
--- a/avconv.c
+++ b/avconv.c
@@ -1367,7 +1367,7 @@ static int output_packet(InputStream *ist, const AVPacket *pkt)
 
 static void print_sdp(void)
 {
-    char sdp[2048];
+    char sdp[16384];
     int i;
     AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);