| 290 | } |
| 291 | |
| 292 | void print_error(const char *filename, int err) |
| 293 | { |
| 294 | char errbuf[128]; |
| 295 | const char *errbuf_ptr = errbuf; |
| 296 | |
| 297 | if (av_strerror(err, errbuf, sizeof(errbuf)) < 0) |
| 298 | errbuf_ptr = strerror(AVUNERROR(err)); |
| 299 | fprintf(stderr, "%s: %s\n", filename, errbuf_ptr); |
| 300 | } |
| 301 | |
| 302 | #define PRINT_LIB_VERSION(outstream,libname,LIBNAME,indent) \ |
| 303 | if (CONFIG_##LIBNAME) { \ |
no test coverage detected