| 346 | } |
| 347 | |
| 348 | int av_probe_input_buffer(AVIOContext *pb, const AVInputFormat **fmt, |
| 349 | const char *filename, void *logctx, |
| 350 | unsigned int offset, unsigned int max_probe_size) |
| 351 | { |
| 352 | int ret = av_probe_input_buffer2(pb, fmt, filename, logctx, offset, max_probe_size); |
| 353 | return ret < 0 ? ret : 0; |
| 354 | } |
no test coverage detected