| 144 | } |
| 145 | |
| 146 | const AVInputFormat *av_find_input_format(const char *short_name) |
| 147 | { |
| 148 | const AVInputFormat *fmt = NULL; |
| 149 | void *i = 0; |
| 150 | while ((fmt = av_demuxer_iterate(&i))) |
| 151 | if (av_match_name(short_name, fmt->name)) |
| 152 | return fmt; |
| 153 | return NULL; |
| 154 | } |
| 155 | |
| 156 | const AVInputFormat *av_probe_input_format3(const AVProbeData *pd, |
| 157 | int is_opened, int *score_ret) |
no test coverage detected