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

Function print_error

cmdutils.c:292–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

290}
291
292void 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) { \

Callers 6

read_ffserver_streamsFunction · 0.85
write_frameFunction · 0.85
opt_input_fileFunction · 0.85
opt_output_fileFunction · 0.85
decode_threadFunction · 0.85
open_input_fileFunction · 0.85

Calls 1

av_strerrorFunction · 0.85

Tested by

no test coverage detected