| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * Format register and lookup | ||
| 3 | * Copyright (c) 2000, 2001, 2002 Fabrice Bellard | ||
| 4 | * | ||
| 5 | * This file is part of FFmpeg. | ||
| 6 | * | ||
| 7 | * FFmpeg is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU Lesser General Public | ||
| 9 | * License as published by the Free Software Foundation; either | ||
| 10 | * version 2.1 of the License, or (at your option) any later version. | ||
| 11 | * | ||
| 12 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * Lesser General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU Lesser General Public | ||
| 18 | * License along with FFmpeg; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include "config_components.h" | ||
| 23 | |||
| 24 | #include "libavutil/avstring.h" | ||
| 25 | #include "libavutil/mem.h" | ||
| 26 | #include "libavutil/opt.h" | ||
| 27 | |||
| 28 | #include "avio_internal.h" | ||
| 29 | #include "avformat.h" | ||
| 30 | #include "demux.h" | ||
| 31 | #include "id3v2.h" | ||
| 32 | #include "internal.h" | ||
| 33 | #include "url.h" | ||
| 34 | |||
| 35 | |||
| 36 | /** | ||
| 37 | * @file | ||
| 38 | * Format register and lookup | ||
| 39 | */ | ||
| 40 | |||
| 41 | 1327013 | int av_match_ext(const char *filename, const char *extensions) | |
| 42 | { | ||
| 43 | const char *ext; | ||
| 44 | |||
| 45 |
2/2✓ Branch 0 taken 553700 times.
✓ Branch 1 taken 773313 times.
|
1327013 | if (!filename) |
| 46 | 553700 | return 0; | |
| 47 | |||
| 48 | 773313 | ext = strrchr(filename, '.'); | |
| 49 |
2/2✓ Branch 0 taken 767948 times.
✓ Branch 1 taken 5365 times.
|
773313 | if (ext) |
| 50 | 767948 | return av_match_name(ext + 1, extensions); | |
| 51 | 5365 | return 0; | |
| 52 | } | ||
| 53 | |||
| 54 | 220 | int ff_match_url_ext(const char *url, const char *extensions) | |
| 55 | { | ||
| 56 | const char *ext; | ||
| 57 | URLComponents uc; | ||
| 58 | int ret; | ||
| 59 | char scratchpad[128]; | ||
| 60 | |||
| 61 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 220 times.
|
220 | if (!url) |
| 62 | ✗ | return 0; | |
| 63 | |||
| 64 | 220 | ret = ff_url_decompose(&uc, url, NULL); | |
| 65 |
2/4✓ Branch 0 taken 220 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 220 times.
✗ Branch 3 not taken.
|
220 | if (ret < 0 || !URL_COMPONENT_HAVE(uc, scheme)) |
| 66 | 220 | return ret; | |
| 67 | ✗ | for (ext = uc.query; *ext != '.' && ext > uc.path; ext--) | |
| 68 | ; | ||
| 69 | |||
| 70 | ✗ | if (*ext != '.') | |
| 71 | ✗ | return 0; | |
| 72 | ✗ | if (uc.query - ext > sizeof(scratchpad)) | |
| 73 | ✗ | return AVERROR(ENOMEM); //not enough memory in our scratchpad | |
| 74 | ✗ | av_strlcpy(scratchpad, ext + 1, uc.query - ext); | |
| 75 | |||
| 76 | ✗ | return av_match_name(scratchpad, extensions); | |
| 77 | } | ||
| 78 | |||
| 79 | 8659 | const AVOutputFormat *av_guess_format(const char *short_name, const char *filename, | |
| 80 | const char *mime_type) | ||
| 81 | { | ||
| 82 | 8659 | const AVOutputFormat *fmt = NULL; | |
| 83 | 8659 | const AVOutputFormat *fmt_found = NULL; | |
| 84 | 8659 | void *i = 0; | |
| 85 | int score_max, score; | ||
| 86 | |||
| 87 | /* specific test for image sequences */ | ||
| 88 | #if CONFIG_IMAGE2_MUXER | ||
| 89 |
5/6✓ Branch 0 taken 189 times.
✓ Branch 1 taken 8470 times.
✓ Branch 2 taken 189 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 56 times.
✓ Branch 5 taken 133 times.
|
8848 | if (!short_name && filename && |
| 90 |
2/2✓ Branch 1 taken 51 times.
✓ Branch 2 taken 5 times.
|
245 | av_filename_number_test(filename) && |
| 91 | 56 | ff_guess_image2_codec(filename) != AV_CODEC_ID_NONE) { | |
| 92 | 51 | return av_guess_format("image2", NULL, NULL); | |
| 93 | } | ||
| 94 | #endif | ||
| 95 | /* Find the proper file type. */ | ||
| 96 | 8608 | score_max = 0; | |
| 97 |
2/2✓ Branch 1 taken 1618144 times.
✓ Branch 2 taken 8608 times.
|
1626752 | while ((fmt = av_muxer_iterate(&i))) { |
| 98 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 1618144 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
|
1618144 | if (fmt->flags & AVFMT_EXPERIMENTAL && !short_name) |
| 99 | ✗ | continue; | |
| 100 | 1618144 | score = 0; | |
| 101 |
5/6✓ Branch 0 taken 1618144 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1592200 times.
✓ Branch 3 taken 25944 times.
✓ Branch 5 taken 8503 times.
✓ Branch 6 taken 1583697 times.
|
1618144 | if (fmt->name && short_name && av_match_name(short_name, fmt->name)) |
| 102 | 8503 | score += 100; | |
| 103 |
3/6✓ Branch 0 taken 628384 times.
✓ Branch 1 taken 989760 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 628384 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
1618144 | if (fmt->mime_type && mime_type && !strcmp(fmt->mime_type, mime_type)) |
| 104 | ✗ | score += 10; | |
| 105 |
6/6✓ Branch 0 taken 26320 times.
✓ Branch 1 taken 1591824 times.
✓ Branch 2 taken 19180 times.
✓ Branch 3 taken 7140 times.
✓ Branch 4 taken 154 times.
✓ Branch 5 taken 19026 times.
|
1637324 | if (filename && fmt->extensions && |
| 106 | 19180 | av_match_ext(filename, fmt->extensions)) { | |
| 107 | 154 | score += 5; | |
| 108 | } | ||
| 109 |
2/2✓ Branch 0 taken 8608 times.
✓ Branch 1 taken 1609536 times.
|
1618144 | if (score > score_max) { |
| 110 | 8608 | score_max = score; | |
| 111 | 8608 | fmt_found = fmt; | |
| 112 | } | ||
| 113 | } | ||
| 114 | 8608 | return fmt_found; | |
| 115 | } | ||
| 116 | |||
| 117 | 27659 | enum AVCodecID av_guess_codec(const AVOutputFormat *fmt, const char *short_name, | |
| 118 | const char *filename, const char *mime_type, | ||
| 119 | enum AVMediaType type) | ||
| 120 | { | ||
| 121 |
2/4✓ Branch 1 taken 27659 times.
✗ Branch 2 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 27659 times.
|
27659 | if (av_match_name("segment", fmt->name) || av_match_name("ssegment", fmt->name)) { |
| 122 | ✗ | const AVOutputFormat *fmt2 = av_guess_format(NULL, filename, NULL); | |
| 123 | ✗ | if (fmt2) | |
| 124 | ✗ | fmt = fmt2; | |
| 125 | } | ||
| 126 | |||
| 127 |
2/2✓ Branch 0 taken 10442 times.
✓ Branch 1 taken 17217 times.
|
27659 | if (type == AVMEDIA_TYPE_VIDEO) { |
| 128 | 10442 | enum AVCodecID codec_id = AV_CODEC_ID_NONE; | |
| 129 | |||
| 130 | #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER | ||
| 131 |
4/4✓ Branch 0 taken 10330 times.
✓ Branch 1 taken 112 times.
✓ Branch 2 taken 13 times.
✓ Branch 3 taken 10317 times.
|
10442 | if (!strcmp(fmt->name, "image2") || !strcmp(fmt->name, "image2pipe")) { |
| 132 | 125 | codec_id = ff_guess_image2_codec(filename); | |
| 133 | } | ||
| 134 | #endif | ||
| 135 |
2/2✓ Branch 0 taken 10324 times.
✓ Branch 1 taken 118 times.
|
10442 | if (codec_id == AV_CODEC_ID_NONE) |
| 136 | 10324 | codec_id = fmt->video_codec; | |
| 137 | 10442 | return codec_id; | |
| 138 |
2/2✓ Branch 0 taken 8848 times.
✓ Branch 1 taken 8369 times.
|
17217 | } else if (type == AVMEDIA_TYPE_AUDIO) |
| 139 | 8848 | return fmt->audio_codec; | |
| 140 |
2/2✓ Branch 0 taken 32 times.
✓ Branch 1 taken 8337 times.
|
8369 | else if (type == AVMEDIA_TYPE_SUBTITLE) |
| 141 | 32 | return fmt->subtitle_codec; | |
| 142 | else | ||
| 143 | 8337 | return AV_CODEC_ID_NONE; | |
| 144 | } | ||
| 145 | |||
| 146 | 3895 | const AVInputFormat *av_find_input_format(const char *short_name) | |
| 147 | { | ||
| 148 | 3895 | const AVInputFormat *fmt = NULL; | |
| 149 | 3895 | void *i = 0; | |
| 150 |
1/2✓ Branch 1 taken 592115 times.
✗ Branch 2 not taken.
|
592115 | while ((fmt = av_demuxer_iterate(&i))) |
| 151 |
2/2✓ Branch 1 taken 3895 times.
✓ Branch 2 taken 588220 times.
|
592115 | if (av_match_name(short_name, fmt->name)) |
| 152 | 3895 | return fmt; | |
| 153 | ✗ | return NULL; | |
| 154 | } | ||
| 155 | |||
| 156 | 11440 | const AVInputFormat *av_probe_input_format3(const AVProbeData *pd, | |
| 157 | int is_opened, int *score_ret) | ||
| 158 | { | ||
| 159 | 11440 | AVProbeData lpd = *pd; | |
| 160 | 11440 | const AVInputFormat *fmt1 = NULL; | |
| 161 | 11440 | const AVInputFormat *fmt = NULL; | |
| 162 | 11440 | int score, score_max = 0; | |
| 163 | 11440 | void *i = 0; | |
| 164 | const static uint8_t zerobuffer[AVPROBE_PADDING_SIZE]; | ||
| 165 | enum nodat { | ||
| 166 | NO_ID3, | ||
| 167 | ID3_ALMOST_GREATER_PROBE, | ||
| 168 | ID3_GREATER_PROBE, | ||
| 169 | ID3_GREATER_MAX_PROBE, | ||
| 170 | 11440 | } nodat = NO_ID3; | |
| 171 | |||
| 172 |
2/2✓ Branch 0 taken 3973 times.
✓ Branch 1 taken 7467 times.
|
11440 | if (!lpd.buf) |
| 173 | 3973 | lpd.buf = (unsigned char *) zerobuffer; | |
| 174 | |||
| 175 |
4/4✓ Branch 0 taken 7497 times.
✓ Branch 1 taken 3973 times.
✓ Branch 3 taken 52 times.
✓ Branch 4 taken 7445 times.
|
11470 | while (lpd.buf_size > 10 && ff_id3v2_match(lpd.buf, ID3v2_DEFAULT_MAGIC)) { |
| 176 | 52 | int id3len = ff_id3v2_tag_len(lpd.buf); | |
| 177 |
2/2✓ Branch 0 taken 30 times.
✓ Branch 1 taken 22 times.
|
52 | if (lpd.buf_size > id3len + 16) { |
| 178 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 17 times.
|
30 | if (lpd.buf_size < 2LL*id3len + 16) |
| 179 | 13 | nodat = ID3_ALMOST_GREATER_PROBE; | |
| 180 | 30 | lpd.buf += id3len; | |
| 181 | 30 | lpd.buf_size -= id3len; | |
| 182 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 21 times.
|
22 | } else if (id3len >= PROBE_BUF_MAX) { |
| 183 | 1 | nodat = ID3_GREATER_MAX_PROBE; | |
| 184 | 1 | break; | |
| 185 | } else { | ||
| 186 | 21 | nodat = ID3_GREATER_PROBE; | |
| 187 | 21 | break; | |
| 188 | } | ||
| 189 | } | ||
| 190 | |||
| 191 |
2/2✓ Branch 1 taken 4173430 times.
✓ Branch 2 taken 11440 times.
|
4184870 | while ((fmt1 = av_demuxer_iterate(&i))) { |
| 192 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 4173430 times.
|
4173430 | if (fmt1->flags & AVFMT_EXPERIMENTAL) |
| 193 | ✗ | continue; | |
| 194 |
4/4✓ Branch 0 taken 1487368 times.
✓ Branch 1 taken 2686062 times.
✓ Branch 2 taken 1479901 times.
✓ Branch 3 taken 7467 times.
|
4173430 | if (!is_opened == !(fmt1->flags & AVFMT_NOFILE) && strcmp(fmt1->name, "image2")) |
| 195 | 1479901 | continue; | |
| 196 | 2693529 | score = 0; | |
| 197 |
2/2✓ Branch 1 taken 2304630 times.
✓ Branch 2 taken 388899 times.
|
2693529 | if (ffifmt(fmt1)->read_probe) { |
| 198 | 2304630 | score = ffifmt(fmt1)->read_probe(&lpd); | |
| 199 |
2/2✓ Branch 0 taken 7219 times.
✓ Branch 1 taken 2297411 times.
|
2304630 | if (score) |
| 200 | 7219 | av_log(NULL, AV_LOG_TRACE, "Probing %s score:%d size:%d\n", fmt1->name, score, lpd.buf_size); | |
| 201 |
4/4✓ Branch 0 taken 1082715 times.
✓ Branch 1 taken 1221915 times.
✓ Branch 3 taken 2604 times.
✓ Branch 4 taken 1080111 times.
|
2304630 | if (fmt1->extensions && av_match_ext(lpd.filename, fmt1->extensions)) { |
| 202 |
3/4✓ Branch 0 taken 2573 times.
✓ Branch 1 taken 30 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
|
2604 | switch (nodat) { |
| 203 | 2573 | case NO_ID3: | |
| 204 | 2573 | score = FFMAX(score, 1); | |
| 205 | 2573 | break; | |
| 206 | 30 | case ID3_GREATER_PROBE: | |
| 207 | case ID3_ALMOST_GREATER_PROBE: | ||
| 208 | 30 | score = FFMAX(score, AVPROBE_SCORE_EXTENSION / 2 - 1); | |
| 209 | 30 | break; | |
| 210 | 1 | case ID3_GREATER_MAX_PROBE: | |
| 211 | 1 | score = FFMAX(score, AVPROBE_SCORE_EXTENSION); | |
| 212 | 1 | break; | |
| 213 | } | ||
| 214 | } | ||
| 215 |
2/2✓ Branch 0 taken 201609 times.
✓ Branch 1 taken 187290 times.
|
388899 | } else if (fmt1->extensions) { |
| 216 |
2/2✓ Branch 1 taken 33 times.
✓ Branch 2 taken 201576 times.
|
201609 | if (av_match_ext(lpd.filename, fmt1->extensions)) |
| 217 | 33 | score = AVPROBE_SCORE_EXTENSION; | |
| 218 | } | ||
| 219 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 2693529 times.
|
2693529 | if (av_match_name(lpd.mime_type, fmt1->mime_type)) { |
| 220 | ✗ | int old_score = score; | |
| 221 | ✗ | score += AVPROBE_SCORE_MIME_BONUS; | |
| 222 | ✗ | if (score > AVPROBE_SCORE_MAX) score = AVPROBE_SCORE_MAX; | |
| 223 | ✗ | av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, old_score, score); | |
| 224 | } | ||
| 225 |
2/2✓ Branch 0 taken 6662 times.
✓ Branch 1 taken 2686867 times.
|
2693529 | if (score > score_max) { |
| 226 | 6662 | score_max = score; | |
| 227 | 6662 | fmt = fmt1; | |
| 228 |
2/2✓ Branch 0 taken 1428500 times.
✓ Branch 1 taken 1258367 times.
|
2686867 | } else if (score == score_max) |
| 229 | 1428500 | fmt = NULL; | |
| 230 | } | ||
| 231 |
2/2✓ Branch 0 taken 21 times.
✓ Branch 1 taken 11419 times.
|
11440 | if (nodat == ID3_GREATER_PROBE) |
| 232 | 21 | score_max = FFMIN(AVPROBE_SCORE_EXTENSION / 2 - 1, score_max); | |
| 233 | 11440 | *score_ret = score_max; | |
| 234 | |||
| 235 | 11440 | return fmt; | |
| 236 | } | ||
| 237 | |||
| 238 | 8276 | const AVInputFormat *av_probe_input_format2(const AVProbeData *pd, | |
| 239 | int is_opened, int *score_max) | ||
| 240 | { | ||
| 241 | int score_ret; | ||
| 242 | 8276 | const AVInputFormat *fmt = av_probe_input_format3(pd, is_opened, &score_ret); | |
| 243 |
2/2✓ Branch 0 taken 3987 times.
✓ Branch 1 taken 4289 times.
|
8276 | if (score_ret > *score_max) { |
| 244 | 3987 | *score_max = score_ret; | |
| 245 | 3987 | return fmt; | |
| 246 | } else | ||
| 247 | 4289 | return NULL; | |
| 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 | 3794 | int av_probe_input_buffer2(AVIOContext *pb, const AVInputFormat **fmt, | |
| 257 | const char *filename, void *logctx, | ||
| 258 | unsigned int offset, unsigned int max_probe_size) | ||
| 259 | { | ||
| 260 |
1/2✓ Branch 0 taken 3794 times.
✗ Branch 1 not taken.
|
3794 | AVProbeData pd = { filename ? filename : "" }; |
| 261 | 3794 | uint8_t *buf = NULL; | |
| 262 | 3794 | int ret = 0, probe_size, buf_offset = 0; | |
| 263 | 3794 | int score = 0; | |
| 264 | int ret2; | ||
| 265 | 3794 | int eof = 0; | |
| 266 | |||
| 267 |
2/2✓ Branch 0 taken 14 times.
✓ Branch 1 taken 3780 times.
|
3794 | if (!max_probe_size) |
| 268 | 14 | max_probe_size = PROBE_BUF_MAX; | |
| 269 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3780 times.
|
3780 | else if (max_probe_size < PROBE_BUF_MIN) { |
| 270 | ✗ | av_log(logctx, AV_LOG_ERROR, | |
| 271 | "Specified probe size value %u cannot be < %u\n", max_probe_size, PROBE_BUF_MIN); | ||
| 272 | ✗ | return AVERROR(EINVAL); | |
| 273 | } | ||
| 274 | |||
| 275 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3794 times.
|
3794 | if (offset >= max_probe_size) |
| 276 | ✗ | return AVERROR(EINVAL); | |
| 277 | |||
| 278 |
2/2✓ Branch 0 taken 3780 times.
✓ Branch 1 taken 14 times.
|
3794 | if (pb->av_class) { |
| 279 | 3780 | uint8_t *mime_type_opt = NULL; | |
| 280 | char *semi; | ||
| 281 | 3780 | av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type_opt); | |
| 282 | 3780 | pd.mime_type = (const char *)mime_type_opt; | |
| 283 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3780 times.
|
3780 | semi = pd.mime_type ? strchr(pd.mime_type, ';') : NULL; |
| 284 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3780 times.
|
3780 | if (semi) { |
| 285 | ✗ | *semi = '\0'; | |
| 286 | } | ||
| 287 | } | ||
| 288 | |||
| 289 |
5/6✓ Branch 0 taken 8095 times.
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 4303 times.
✓ Branch 3 taken 3792 times.
✓ Branch 4 taken 4303 times.
✗ Branch 5 not taken.
|
8097 | for (probe_size = PROBE_BUF_MIN; probe_size <= max_probe_size && !*fmt && !eof; |
| 290 | 4303 | probe_size = FFMIN(probe_size << 1, | |
| 291 | FFMAX(max_probe_size, probe_size + 1))) { | ||
| 292 |
2/2✓ Branch 0 taken 4301 times.
✓ Branch 1 taken 2 times.
|
4303 | score = probe_size < max_probe_size ? AVPROBE_SCORE_RETRY : 0; |
| 293 | |||
| 294 | /* Read probe data. */ | ||
| 295 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 4303 times.
|
4303 | if ((ret = av_reallocp(&buf, probe_size + AVPROBE_PADDING_SIZE)) < 0) |
| 296 | ✗ | goto fail; | |
| 297 |
2/2✓ Branch 1 taken 8 times.
✓ Branch 2 taken 4295 times.
|
4303 | if ((ret = avio_read(pb, buf + buf_offset, |
| 298 | probe_size - buf_offset)) < 0) { | ||
| 299 | /* Fail if error was not end of file, otherwise, lower score. */ | ||
| 300 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
|
8 | if (ret != AVERROR_EOF) |
| 301 | ✗ | goto fail; | |
| 302 | |||
| 303 | 8 | score = 0; | |
| 304 | 8 | ret = 0; /* error was end of file, nothing read */ | |
| 305 | 8 | eof = 1; | |
| 306 | } | ||
| 307 | 4303 | buf_offset += ret; | |
| 308 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 4303 times.
|
4303 | if (buf_offset < offset) |
| 309 | ✗ | continue; | |
| 310 | 4303 | pd.buf_size = buf_offset - offset; | |
| 311 | 4303 | pd.buf = &buf[offset]; | |
| 312 | |||
| 313 | 4303 | memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE); | |
| 314 | |||
| 315 | /* Guess file format. */ | ||
| 316 | 4303 | *fmt = av_probe_input_format2(&pd, 1, &score); | |
| 317 |
2/2✓ Branch 0 taken 3794 times.
✓ Branch 1 taken 509 times.
|
4303 | if (*fmt) { |
| 318 | /* This can only be true in the last iteration. */ | ||
| 319 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 3784 times.
|
3794 | if (score <= AVPROBE_SCORE_RETRY) { |
| 320 | 10 | av_log(logctx, AV_LOG_WARNING, | |
| 321 | "Format %s detected only with low score of %d, " | ||
| 322 | 10 | "misdetection possible!\n", (*fmt)->name, score); | |
| 323 | } else | ||
| 324 | 3784 | av_log(logctx, AV_LOG_DEBUG, | |
| 325 | "Format %s probed with size=%d and score=%d\n", | ||
| 326 | 3784 | (*fmt)->name, probe_size, score); | |
| 327 | #if 0 | ||
| 328 | FILE *f = fopen("probestat.tmp", "ab"); | ||
| 329 | fprintf(f, "probe_size:%d format:%s score:%d filename:%s\n", probe_size, (*fmt)->name, score, filename); | ||
| 330 | fclose(f); | ||
| 331 | #endif | ||
| 332 | } | ||
| 333 | } | ||
| 334 | |||
| 335 |
1/2✓ Branch 0 taken 3794 times.
✗ Branch 1 not taken.
|
3794 | if (!*fmt) |
| 336 | ✗ | ret = AVERROR_INVALIDDATA; | |
| 337 | |||
| 338 | 3794 | fail: | |
| 339 | /* Rewind. Reuse probe buffer to avoid seeking. */ | ||
| 340 | 3794 | ret2 = ffio_rewind_with_probe_data(pb, &buf, buf_offset); | |
| 341 |
1/2✓ Branch 0 taken 3794 times.
✗ Branch 1 not taken.
|
3794 | if (ret >= 0) |
| 342 | 3794 | ret = ret2; | |
| 343 | |||
| 344 | 3794 | av_freep(&pd.mime_type); | |
| 345 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3794 times.
|
3794 | return ret < 0 ? ret : score; |
| 346 | } | ||
| 347 | |||
| 348 | 14 | 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 | 14 | int ret = av_probe_input_buffer2(pb, fmt, filename, logctx, offset, max_probe_size); | |
| 353 | 14 | return ret < 0 ? ret : 0; | |
| 354 | } | ||
| 355 |