summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2013-01-17 15:34:25 +0200
committerMartin Storsjö <martin@martin.st>2013-01-20 18:20:47 +0200
commita23abaf30257b814b4e15f16d8a5948170802067 (patch)
tree846f381db58467c8928f94621a210058a4360211 /avconv.c
parentc6f1dc8e4cd967ae056698eafb891a08003c211c (diff)
avconv: Increase the SDP buffer size to fit xiph SDPs
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv.c b/avconv.c
index dd998ab40c..f086cbb5e2 100644
--- 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);