From 10e7fc7ce4c5e1fc3aa37dccd49087af1ad7a227 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 24 Feb 2008 01:56:27 +0000 Subject: [PATCH] Reduce initial fifo size, so as not to senselessly waste memory. Originally committed as revision 12186 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index baa10df2ba..3cce5cedd7 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1643,7 +1643,7 @@ static int av_encode(AVFormatContext **output_files, } else { switch(codec->codec_type) { case CODEC_TYPE_AUDIO: - if (av_fifo_init(&ost->fifo, 2 * MAX_AUDIO_PACKET_SIZE)) + if (av_fifo_init(&ost->fifo, 1024)) goto fail; ost->audio_resample = codec->sample_rate != icodec->sample_rate || audio_sync_method > 1; icodec->request_channels = codec->channels;