[FFmpeg-cvslog] ffmpeg: dont show_banner() on verbose<0

Michael Niedermayer git at videolan.org
Wed May 18 17:18:23 CEST 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed May 18 13:58:13 2011 +0200| [e89403216cc15563a7f701a9e6547abf2b8ad7a9] | committer: Michael Niedermayer

ffmpeg: dont show_banner() on verbose<0

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e89403216cc15563a7f701a9e6547abf2b8ad7a9
---

 ffmpeg.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index ca44c82..90c7d71 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);



More information about the ffmpeg-cvslog mailing list