summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2009-12-14 19:28:33 +0000
committerVitor Sessak <vitor1001@gmail.com>2009-12-14 19:28:33 +0000
commit8b484d0f07088904dddffc8c8a8ad134b5f52037 (patch)
treefffe65acdd6c738f172910954c6c8b94afee755d
parentd1ebd4a9951e2afc41daebbfc1c334935d4e5e62 (diff)
Correct typo
Originally committed as revision 20868 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
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);