Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2013-01-17 17:34:25 +0400
committerMartin Storsjö <martin@martin.st>2013-01-20 20:20:47 +0400
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);