diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-29 12:59:05 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-29 12:59:05 +0200 |
commit | ecf31a68fd0d30178d7b6e1b663d5c40b88c4551 (patch) | |
tree | b89f9d91e2b357523637ffbfe0be211d486d73fa /cmdutils.c | |
parent | b4483a531a139f304f4370f470325facb107202f (diff) | |
download | ffmpeg-ecf31a68fd0d30178d7b6e1b663d5c40b88c4551.tar.gz |
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.
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c index 9542bbf091..d1607da3a8 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) { |