2 * Format register and lookup
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/avstring.h"
23 #include "libavutil/bprint.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/thread.h"
27 #include "avio_internal.h"
35 * Format register and lookup
38 int av_match_ext(const char *filename
, const char *extensions
)
45 ext
= strrchr(filename
, '.');
47 return av_match_name(ext
+ 1, extensions
);
51 int ff_match_url_ext(const char *url
, const char *extensions
)
61 ret
= ff_url_decompose(&uc
, url
, NULL
);
62 if (ret
< 0 || !URL_COMPONENT_HAVE(uc
, scheme
))
64 for (ext
= uc
.query
; *ext
!= '.' && ext
> uc
.path
; ext
--)
69 if (uc
.query
- ext
> sizeof(scratchpad
))
70 return AVERROR(ENOMEM
); //not enough memory in our scratchpad
71 av_strlcpy(scratchpad
, ext
+ 1, FFMIN(sizeof(scratchpad
), uc
.query
- ext
));
73 return av_match_name(scratchpad
, extensions
);
76 ff_const59 AVOutputFormat
*av_guess_format(const char *short_name
, const char *filename
,
77 const char *mime_type
)
79 const AVOutputFormat
*fmt
= NULL
;
80 AVOutputFormat
*fmt_found
= NULL
;
84 /* specific test for image sequences */
85 #if CONFIG_IMAGE2_MUXER
86 if (!short_name
&& filename
&&
87 av_filename_number_test(filename
) &&
88 ff_guess_image2_codec(filename
) != AV_CODEC_ID_NONE
) {
89 return av_guess_format("image2", NULL
, NULL
);
92 /* Find the proper file type. */
94 while ((fmt
= av_muxer_iterate(&i
))) {
96 if (fmt
->name
&& short_name
&& av_match_name(short_name
, fmt
->name
))
98 if (fmt
->mime_type
&& mime_type
&& !strcmp(fmt
->mime_type
, mime_type
))
100 if (filename
&& fmt
->extensions
&&
101 av_match_ext(filename
, fmt
->extensions
)) {
104 if (score
> score_max
) {
106 fmt_found
= (AVOutputFormat
*)fmt
;
112 enum AVCodecID
av_guess_codec(ff_const59 AVOutputFormat
*fmt
, const char *short_name
,
113 const char *filename
, const char *mime_type
,
114 enum AVMediaType type
)
116 if (av_match_name("segment", fmt
->name
) || av_match_name("ssegment", fmt
->name
)) {
117 ff_const59 AVOutputFormat
*fmt2
= av_guess_format(NULL
, filename
, NULL
);
122 if (type
== AVMEDIA_TYPE_VIDEO
) {
123 enum AVCodecID codec_id
= AV_CODEC_ID_NONE
;
125 #if CONFIG_IMAGE2_MUXER
126 if (!strcmp(fmt
->name
, "image2") || !strcmp(fmt
->name
, "image2pipe")) {
127 codec_id
= ff_guess_image2_codec(filename
);
130 if (codec_id
== AV_CODEC_ID_NONE
)
131 codec_id
= fmt
->video_codec
;
133 } else if (type
== AVMEDIA_TYPE_AUDIO
)
134 return fmt
->audio_codec
;
135 else if (type
== AVMEDIA_TYPE_SUBTITLE
)
136 return fmt
->subtitle_codec
;
137 else if (type
== AVMEDIA_TYPE_DATA
)
138 return fmt
->data_codec
;
140 return AV_CODEC_ID_NONE
;
143 ff_const59 AVInputFormat
*av_find_input_format(const char *short_name
)
145 const AVInputFormat
*fmt
= NULL
;
147 while ((fmt
= av_demuxer_iterate(&i
)))
148 if (av_match_name(short_name
, fmt
->name
))
149 return (AVInputFormat
*)fmt
;
153 ff_const59 AVInputFormat
*av_probe_input_format3(ff_const59 AVProbeData
*pd
, int is_opened
,
156 AVProbeData lpd
= *pd
;
157 const AVInputFormat
*fmt1
= NULL
;
158 ff_const59 AVInputFormat
*fmt
= NULL
;
159 int score
, score_max
= 0;
161 const static uint8_t zerobuffer
[AVPROBE_PADDING_SIZE
];
164 ID3_ALMOST_GREATER_PROBE
,
166 ID3_GREATER_MAX_PROBE
,
170 lpd
.buf
= (unsigned char *) zerobuffer
;
172 if (lpd
.buf_size
> 10 && ff_id3v2_match(lpd
.buf
, ID3v2_DEFAULT_MAGIC
)) {
173 int id3len
= ff_id3v2_tag_len(lpd
.buf
);
174 if (lpd
.buf_size
> id3len
+ 16) {
175 if (lpd
.buf_size
< 2LL*id3len
+ 16)
176 nodat
= ID3_ALMOST_GREATER_PROBE
;
178 lpd
.buf_size
-= id3len
;
179 } else if (id3len
>= PROBE_BUF_MAX
) {
180 nodat
= ID3_GREATER_MAX_PROBE
;
182 nodat
= ID3_GREATER_PROBE
;
185 while ((fmt1
= av_demuxer_iterate(&i
))) {
186 if (!is_opened
== !(fmt1
->flags
& AVFMT_NOFILE
) && strcmp(fmt1
->name
, "image2"))
189 if (fmt1
->read_probe
) {
190 score
= fmt1
->read_probe(&lpd
);
192 av_log(NULL
, AV_LOG_TRACE
, "Probing %s score:%d size:%d\n", fmt1
->name
, score
, lpd
.buf_size
);
193 if (fmt1
->extensions
&& av_match_ext(lpd
.filename
, fmt1
->extensions
)) {
196 score
= FFMAX(score
, 1);
198 case ID3_GREATER_PROBE
:
199 case ID3_ALMOST_GREATER_PROBE
:
200 score
= FFMAX(score
, AVPROBE_SCORE_EXTENSION
/ 2 - 1);
202 case ID3_GREATER_MAX_PROBE
:
203 score
= FFMAX(score
, AVPROBE_SCORE_EXTENSION
);
207 } else if (fmt1
->extensions
) {
208 if (av_match_ext(lpd
.filename
, fmt1
->extensions
))
209 score
= AVPROBE_SCORE_EXTENSION
;
211 if (av_match_name(lpd
.mime_type
, fmt1
->mime_type
)) {
212 if (AVPROBE_SCORE_MIME
> score
) {
213 av_log(NULL
, AV_LOG_DEBUG
, "Probing %s score:%d increased to %d due to MIME type\n", fmt1
->name
, score
, AVPROBE_SCORE_MIME
);
214 score
= AVPROBE_SCORE_MIME
;
217 if (score
> score_max
) {
219 fmt
= (AVInputFormat
*)fmt1
;
220 } else if (score
== score_max
)
223 if (nodat
== ID3_GREATER_PROBE
)
224 score_max
= FFMIN(AVPROBE_SCORE_EXTENSION
/ 2 - 1, score_max
);
225 *score_ret
= score_max
;
230 ff_const59 AVInputFormat
*av_probe_input_format2(ff_const59 AVProbeData
*pd
, int is_opened
, int *score_max
)
233 ff_const59 AVInputFormat
*fmt
= av_probe_input_format3(pd
, is_opened
, &score_ret
);
234 if (score_ret
> *score_max
) {
235 *score_max
= score_ret
;
241 ff_const59 AVInputFormat
*av_probe_input_format(ff_const59 AVProbeData
*pd
, int is_opened
)
244 return av_probe_input_format2(pd
, is_opened
, &score
);
247 int av_probe_input_buffer2(AVIOContext
*pb
, ff_const59 AVInputFormat
**fmt
,
248 const char *filename
, void *logctx
,
249 unsigned int offset
, unsigned int max_probe_size
)
251 AVProbeData pd
= { filename
? filename
: "" };
253 int ret
= 0, probe_size
, buf_offset
= 0;
259 max_probe_size
= PROBE_BUF_MAX
;
260 else if (max_probe_size
< PROBE_BUF_MIN
) {
261 av_log(logctx
, AV_LOG_ERROR
,
262 "Specified probe size value %u cannot be < %u\n", max_probe_size
, PROBE_BUF_MIN
);
263 return AVERROR(EINVAL
);
266 if (offset
>= max_probe_size
)
267 return AVERROR(EINVAL
);
270 uint8_t *mime_type_opt
= NULL
;
272 av_opt_get(pb
, "mime_type", AV_OPT_SEARCH_CHILDREN
, &mime_type_opt
);
273 pd
.mime_type
= (const char *)mime_type_opt
;
274 semi
= pd
.mime_type
? strchr(pd
.mime_type
, ';') : NULL
;
280 for (probe_size
= PROBE_BUF_MIN
; probe_size
<= max_probe_size
&& !*fmt
&& !eof
;
281 probe_size
= FFMIN(probe_size
<< 1,
282 FFMAX(max_probe_size
, probe_size
+ 1))) {
283 score
= probe_size
< max_probe_size
? AVPROBE_SCORE_RETRY
: 0;
285 /* Read probe data. */
286 if ((ret
= av_reallocp(&buf
, probe_size
+ AVPROBE_PADDING_SIZE
)) < 0)
288 if ((ret
= avio_read(pb
, buf
+ buf_offset
,
289 probe_size
- buf_offset
)) < 0) {
290 /* Fail if error was not end of file, otherwise, lower score. */
291 if (ret
!= AVERROR_EOF
)
295 ret
= 0; /* error was end of file, nothing read */
299 if (buf_offset
< offset
)
301 pd
.buf_size
= buf_offset
- offset
;
302 pd
.buf
= &buf
[offset
];
304 memset(pd
.buf
+ pd
.buf_size
, 0, AVPROBE_PADDING_SIZE
);
306 /* Guess file format. */
307 *fmt
= av_probe_input_format2(&pd
, 1, &score
);
309 /* This can only be true in the last iteration. */
310 if (score
<= AVPROBE_SCORE_RETRY
) {
311 av_log(logctx
, AV_LOG_WARNING
,
312 "Format %s detected only with low score of %d, "
313 "misdetection possible!\n", (*fmt
)->name
, score
);
315 av_log(logctx
, AV_LOG_DEBUG
,
316 "Format %s probed with size=%d and score=%d\n",
317 (*fmt
)->name
, probe_size
, score
);
319 FILE *f
= fopen("probestat.tmp", "ab");
320 fprintf(f
, "probe_size:%d format:%s score:%d filename:%s\n", probe_size
, (*fmt
)->name
, score
, filename
);
327 ret
= AVERROR_INVALIDDATA
;
330 /* Rewind. Reuse probe buffer to avoid seeking. */
331 ret2
= ffio_rewind_with_probe_data(pb
, &buf
, buf_offset
);
335 av_freep(&pd
.mime_type
);
336 return ret
< 0 ? ret
: score
;
339 int av_probe_input_buffer(AVIOContext
*pb
, ff_const59 AVInputFormat
**fmt
,
340 const char *filename
, void *logctx
,
341 unsigned int offset
, unsigned int max_probe_size
)
343 int ret
= av_probe_input_buffer2(pb
, fmt
, filename
, logctx
, offset
, max_probe_size
);
344 return ret
< 0 ? ret
: 0;