| 236 | } |
| 237 | |
| 238 | const 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 | |
| 250 | const AVInputFormat *av_probe_input_format(const AVProbeData *pd, int is_opened) |
| 251 | { |
no test coverage detected