[FFmpeg-cvslog] Show configuration and library version with AV_LOG_INFO.

Carl Eugen Hoyos git at videolan.org
Thu Sep 29 13:01:35 CEST 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Sep 29 12:59:05 2011 +0200| [ecf31a68fd0d30178d7b6e1b663d5c40b88c4551] | committer: Carl Eugen Hoyos

Show configuration and library version with AV_LOG_INFO.

This partly reverts 1c5e9551bca12e040270e0cd3d71440f83e9f8ae,
a change of behaviour that was not discussed.

The reason for the revert is that FFmpeg cares about bugreports.

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

 cmdutils.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmdutils.c b/cmdutils.c
index 9542bbf..d1607da 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -484,9 +484,9 @@ void show_banner(void)
            program_name, program_birth_year, this_year);
     av_log(NULL, AV_LOG_INFO, "  built on %s %s with %s %s\n",
            __DATE__, __TIME__, CC_TYPE, CC_VERSION);
-    av_log(NULL, AV_LOG_VERBOSE, "  configuration: " FFMPEG_CONFIGURATION "\n");
-    print_all_libs_info(INDENT|SHOW_CONFIG,  AV_LOG_VERBOSE);
-    print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_VERBOSE);
+    av_log(NULL, AV_LOG_INFO, "  configuration: " FFMPEG_CONFIGURATION "\n");
+    print_all_libs_info(INDENT|SHOW_CONFIG,  AV_LOG_INFO);
+    print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_INFO);
 }
 
 int opt_version(const char *opt, const char *arg) {



More information about the ffmpeg-cvslog mailing list