Lines Matching refs:fmt1
134 const AVInputFormat *fmt1 = NULL;
162 while ((fmt1 = av_demuxer_iterate(&i))) {
163 if (fmt1->flags & AVFMT_EXPERIMENTAL)
165 if (!is_opened == !(fmt1->flags & AVFMT_NOFILE) && strcmp(fmt1->name, "image2"))
168 if (fmt1->read_probe) {
169 score = fmt1->read_probe(&lpd);
171 av_log(NULL, AV_LOG_TRACE, "Probing %s score:%d size:%d\n", fmt1->name, score, lpd.buf_size);
172 if (fmt1->extensions && av_match_ext(lpd.filename, fmt1->extensions)) {
186 } else if (fmt1->extensions) {
187 if (av_match_ext(lpd.filename, fmt1->extensions))
190 if (av_match_name(lpd.mime_type, fmt1->mime_type)) {
192 av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, score, AVPROBE_SCORE_MIME);
198 fmt = fmt1;