Allow hiding the banner.

Fixes ticket #3246.
This commit is contained in:
Carl Eugen Hoyos
2013-12-28 05:18:39 +01:00
committed by Carl Eugen Hoyos
parent 9ed640015b
commit b4c89c90ff
4 changed files with 14 additions and 1 deletions

View File

@ -66,6 +66,7 @@ AVDictionary *swr_opts;
AVDictionary *format_opts, *codec_opts, *resample_opts;
static FILE *report_file;
int hide_banner = 0;
void init_opts(void)
{
@ -491,6 +492,9 @@ void parse_loglevel(int argc, char **argv, const OptionDef *options)
fflush(report_file);
}
}
idx = locate_option(argc, argv, options, "hide_banner");
if (idx)
hide_banner = 1;
}
static const AVOption *opt_find(void *obj, const char *name, const char *unit,
@ -1083,7 +1087,7 @@ static void print_buildconf(int flags, int level)
void show_banner(int argc, char **argv, const OptionDef *options)
{
int idx = locate_option(argc, argv, options, "version");
if (idx)
if (hide_banner || idx)
return;
print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO);