| 1109 | } |
| 1110 | |
| 1111 | static void print_program_info(int flags, int level) |
| 1112 | { |
| 1113 | const char *indent = flags & INDENT? " " : ""; |
| 1114 | |
| 1115 | av_log(NULL, level, "%s version " FFMPEG_VERSION, program_name); |
| 1116 | if (flags & SHOW_COPYRIGHT) |
| 1117 | av_log(NULL, level, " Copyright (c) %d-%d the FFmpeg developers", |
| 1118 | program_birth_year, CONFIG_THIS_YEAR); |
| 1119 | av_log(NULL, level, "\n"); |
| 1120 | av_log(NULL, level, "%sbuilt with %s\n", indent, CC_IDENT); |
| 1121 | |
| 1122 | av_log(NULL, level, "%sconfiguration: " FFMPEG_CONFIGURATION "\n", indent); |
| 1123 | } |
| 1124 | |
| 1125 | static void print_buildconf(int flags, int level) |
| 1126 | { |
no outgoing calls
no test coverage detected