MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / print_error

Function print_error

fftools/cmdutils.h:472–475  ·  view source on GitHub ↗

* 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() */

Source from the content-addressed store, hash-verified

470 * @see av_strerror()
471 */
472static 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

Callers 2

read_threadFunction · 0.85
open_input_fileFunction · 0.85

Calls 1

av_logFunction · 0.85

Tested by

no test coverage detected