Commit b518a575 authored by superdump's avatar superdump

Remove a superfluous call to atoi in ffmpeg.c:opt_verbose

Patch by Stefano Sabatini ( stefano sabatini-lala poste it )
[FFmpeg-devel] [PATCH] Cosmetics: remove a superfluos call to atoi in
ffmpeg.c:opt_verbose


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12136 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6d864472
...@@ -2181,7 +2181,7 @@ static void opt_me_threshold(const char *arg) ...@@ -2181,7 +2181,7 @@ static void opt_me_threshold(const char *arg)
static void opt_verbose(const char *arg) static void opt_verbose(const char *arg)
{ {
verbose = atoi(arg); verbose = atoi(arg);
av_log_set_level(atoi(arg)); av_log_set_level(verbose);
} }
static void opt_frame_rate(const char *arg) static void opt_frame_rate(const char *arg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment