diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-05-18 13:58:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-18 17:14:34 +0200 |
commit | e89403216cc15563a7f701a9e6547abf2b8ad7a9 (patch) | |
tree | 2a7fe48a2de50578132bc29b9b5ae44059209b51 /ffmpeg.c | |
parent | 64be0d1edad630f5bc0f287022f5880de07915b2 (diff) | |
download | ffmpeg-e89403216cc15563a7f701a9e6547abf2b8ad7a9.tar.gz |
ffmpeg: dont show_banner() on verbose<0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4539,7 +4539,8 @@ int main(int argc, char **argv) init_opts(); - show_banner(); + if(verbose>=0) + show_banner(); /* parse options */ parse_options(argc, argv, options, opt_output_file); |