diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-02-18 15:30:56 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-02-18 15:30:56 +0000 |
commit | b3574faa066667426886d8150f97132f5cfd1126 (patch) | |
tree | 2d8e5c91e8bba4431ff3b685a638cfd566d29539 /ffmpeg.c | |
parent | 5bc440e7e8963d8986d6876d5513c4419c3dcdf5 (diff) | |
download | ffmpeg-b3574faa066667426886d8150f97132f5cfd1126.tar.gz |
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
Originally committed as revision 12136 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2181,7 +2181,7 @@ static void opt_me_threshold(const char *arg) static void opt_verbose(const char *arg) { verbose = atoi(arg); - av_log_set_level(atoi(arg)); + av_log_set_level(verbose); } static void opt_frame_rate(const char *arg) |