| 1149 | } |
| 1150 | |
| 1151 | void show_banner(int argc, char **argv, const OptionDef *options) |
| 1152 | { |
| 1153 | int idx = locate_option(argc, argv, options, "version"); |
| 1154 | if (hide_banner || idx) |
| 1155 | return; |
| 1156 | |
| 1157 | print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO); |
| 1158 | print_all_libs_info(INDENT|SHOW_CONFIG, AV_LOG_INFO); |
| 1159 | print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_INFO); |
| 1160 | } |
| 1161 | |
| 1162 | int show_version(void *optctx, const char *opt, const char *arg) |
| 1163 | { |
no test coverage detected