1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avconv: Increase the SDP buffer size to fit xiph SDPs

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2013-01-17 15:34:25 +02:00
parent c6f1dc8e4c
commit a23abaf302

View File

@ -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);