This commit is contained in:
Ninja Jiraiya 2023-07-03 07:24:22 +07:00
parent 04f4d85e2a
commit cf63c0ec19
1 changed files with 2 additions and 3 deletions

View File

@ -1150,9 +1150,9 @@ static void print_program_info(int flags, int level)
av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers", av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers",
program_birth_year, CONFIG_THIS_YEAR); program_birth_year, CONFIG_THIS_YEAR);
av_log(NULL, level, "\n"); av_log(NULL, level, "\n");
av_log(NULL, level, "%sbuilt with %s\n", indent, CC_IDENT); // av_log(NULL, level, "%sbuilt with %s\n", indent, CC_IDENT);
av_log(NULL, level, "%sconfiguration: " FFMPEG_CONFIGURATION "\n", indent); // av_log(NULL, level, "%sconfiguration: " FFMPEG_CONFIGURATION "\n", indent);
} }
static void print_buildconf(int flags, int level) static void print_buildconf(int flags, int level)
@ -1185,7 +1185,6 @@ void show_banner(int argc, char **argv, const OptionDef *options)
{ {
int idx = locate_option(argc, argv, options, "version"); int idx = locate_option(argc, argv, options, "version");
if (hide_banner || idx) if (hide_banner || idx)
print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO);
return; return;
print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO); print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO);