summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-05-25 20:34:50 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-05-25 20:34:50 +0000
commit46eab09341d3496ad680bb1bf609ea38c7deea66 (patch)
tree22ab0beafef2de4f7de889d1772968c4da9d17e3 /ffmpeg.c
parenteccba2bc4bde88755dc2a8569e44ea0373f5e0c7 (diff)
Make opt_verbose() work again.
Originally committed as revision 13403 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 f428ba5550..dc53f34c34 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2234,7 +2234,7 @@ static int opt_me_threshold(const char *opt, const char *arg)
static int opt_verbose(const char *opt, const char *arg)
{
- verbose = parse_number_or_die(opt, arg, OPT_INT64, AV_LOG_QUIET, AV_LOG_DEBUG);
+ verbose = parse_number_or_die(opt, arg, OPT_INT64, -10, 10);
av_log_set_level(verbose);
return 0;
}