| 248 | } |
| 249 | |
| 250 | const AVInputFormat *av_probe_input_format(const AVProbeData *pd, int is_opened) |
| 251 | { |
| 252 | int score = 0; |
| 253 | return av_probe_input_format2(pd, is_opened, &score); |
| 254 | } |
| 255 | |
| 256 | int av_probe_input_buffer2(AVIOContext *pb, const AVInputFormat **fmt, |
| 257 | const char *filename, void *logctx, |
nothing calls this directly
no test coverage detected