MCPcopy Create free account
hub / github.com/byhook/ffmpeg4android / print_error

Function print_error

ffmpeg-single-cmd/src/main/cpp/cmdutils.c:1052–1060  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1050}
1051
1052void print_error(const char *filename, int err)
1053{
1054 char errbuf[128];
1055 const char *errbuf_ptr = errbuf;
1056
1057 if (av_strerror(err, errbuf, sizeof(errbuf)) < 0)
1058 errbuf_ptr = strerror(AVUNERROR(err));
1059 av_log(NULL, AV_LOG_ERROR, "%s: %s\n", filename, errbuf_ptr);
1060}
1061
1062static int warned_cfg = 0;
1063

Callers 4

open_input_fileFunction · 0.85
open_output_fileFunction · 0.85
write_packetFunction · 0.85
process_inputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected