summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorLars Täuber <lars.taeuber@gmx.net>2011-09-27 14:41:09 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-27 14:41:09 +0200
commit6c0a902d124f442fb06cd74415a39d5a1959017f (patch)
tree7e7f105a31aaec8678af45489ccb148e4adc2fcb /ffmpeg.c
parent7c1aba4f01a10915d356c7bc0c6bfed25cbb623e (diff)
ffmpeg: fix typo in warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 16da621f04..a5aaa72a31 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -4150,7 +4150,7 @@ static int opt_old2new(OptionsContext *o, const char *opt, const char *arg)
static int opt_bitrate(OptionsContext *o, const char *opt, const char *arg)
{
if(!strcmp(opt, "b")){
- av_log(0,AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambigous\n");
+ av_log(0,AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambiguous\n");
return parse_option(o, av_strdup("b:v"), arg, options);
}
return opt_default(opt, arg);