* Print an error message to stderr, indicating filename and a human * readable description of the error code err. * * If strerror_r() is not available the use of this function in a * multithreaded application may be unsafe. * * @see av_strerror() */
| 470 | * @see av_strerror() |
| 471 | */ |
| 472 | static inline void print_error(const char *filename, int err) |
| 473 | { |
| 474 | av_log(NULL, AV_LOG_ERROR, "%s: %s\n", filename, av_err2str(err)); |
| 475 | } |
| 476 | |
| 477 | /** |
| 478 | * Print the program banner to stderr. The banner contents depend on the |
no test coverage detected