summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-05-18 13:58:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-05-18 17:14:34 +0200
commite89403216cc15563a7f701a9e6547abf2b8ad7a9 (patch)
tree2a7fe48a2de50578132bc29b9b5ae44059209b51 /ffmpeg.c
parent64be0d1edad630f5bc0f287022f5880de07915b2 (diff)
ffmpeg: dont show_banner() on verbose<0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index ca44c82b86..90c7d71d2f 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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);