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

Function av_probe_input_format2

libavformat/format.c:238–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236}
237
238const AVInputFormat *av_probe_input_format2(const AVProbeData *pd,
239 int is_opened, int *score_max)
240{
241 int score_ret;
242 const AVInputFormat *fmt = av_probe_input_format3(pd, is_opened, &score_ret);
243 if (score_ret > *score_max) {
244 *score_max = score_ret;
245 return fmt;
246 } else
247 return NULL;
248}
249
250const AVInputFormat *av_probe_input_format(const AVProbeData *pd, int is_opened)
251{

Callers 4

init_inputFunction · 0.85
read_gab2_subFunction · 0.85
av_probe_input_formatFunction · 0.85
av_probe_input_buffer2Function · 0.85

Calls 1

av_probe_input_format3Function · 0.85

Tested by

no test coverage detected