From 8b484d0f07088904dddffc8c8a8ad134b5f52037 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Mon, 14 Dec 2009 19:28:33 +0000 Subject: Correct typo Originally committed as revision 20868 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index ffc0fc0a89..b90c649b43 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -568,7 +568,7 @@ static void do_audio_out(AVFormatContext *s, audio_buf_size= (size + isize*dec->channels - 1) / (isize*dec->channels); audio_buf_size= (audio_buf_size*enc->sample_rate + dec->sample_rate) / dec->sample_rate; - audio_buf_size= audio_buf_size*2 + 10000; //saftey factors for the deprecated resampling API + audio_buf_size= audio_buf_size*2 + 10000; //safety factors for the deprecated resampling API audio_buf_size*= osize*enc->channels; audio_out_size= FFMAX(audio_buf_size, enc->frame_size * osize * enc->channels); -- cgit v1.2.3