1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-01 08:49:59 +02:00

ffmpeg: fix typo in warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Lars Täuber 2011-09-27 14:41:09 +02:00 committed by Michael Niedermayer
parent 7c1aba4f01
commit 6c0a902d12

View File

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