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/atomic.h"
23 #include "libavutil/avstring.h"
24 #include "libavutil/bprint.h"
25 #include "libavutil/opt.h"
27 #include "avio_internal.h"
35 * Format register and lookup
37 /** head of registered input format linked list */
38 static AVInputFormat *first_iformat = NULL;
39 /** head of registered output format linked list */
40 static AVOutputFormat *first_oformat = NULL;
42 static AVInputFormat **last_iformat = &first_iformat;
43 static AVOutputFormat **last_oformat = &first_oformat;
45 AVInputFormat *av_iformat_next(const AVInputFormat *f)
53 AVOutputFormat *av_oformat_next(const AVOutputFormat *f)
61 void av_register_input_format(AVInputFormat *format)
63 AVInputFormat **p = last_iformat;
65 // Note, format could be added after the first 2 checks but that implies that *p is no longer NULL
66 while(p != &format->next && !format->next && avpriv_atomic_ptr_cas((void * volatile *)p, NULL, format))
70 last_iformat = &format->next;
73 void av_register_output_format(AVOutputFormat *format)
75 AVOutputFormat **p = last_oformat;
77 // Note, format could be added after the first 2 checks but that implies that *p is no longer NULL
78 while(p != &format->next && !format->next && avpriv_atomic_ptr_cas((void * volatile *)p, NULL, format))
82 last_oformat = &format->next;
85 int av_match_ext(const char *filename, const char *extensions)
92 ext = strrchr(filename, '.');
94 return av_match_name(ext + 1, extensions);
98 AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
99 const char *mime_type)
101 AVOutputFormat *fmt = NULL, *fmt_found;
102 int score_max, score;
104 /* specific test for image sequences */
105 #if CONFIG_IMAGE2_MUXER
106 if (!short_name && filename &&
107 av_filename_number_test(filename) &&
108 ff_guess_image2_codec(filename) != AV_CODEC_ID_NONE) {
109 return av_guess_format("image2", NULL, NULL);
112 /* Find the proper file type. */
115 while ((fmt = av_oformat_next(fmt))) {
117 if (fmt->name && short_name && av_match_name(short_name, fmt->name))
119 if (fmt->mime_type && mime_type && !strcmp(fmt->mime_type, mime_type))
121 if (filename && fmt->extensions &&
122 av_match_ext(filename, fmt->extensions)) {
125 if (score > score_max) {
133 enum AVCodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
134 const char *filename, const char *mime_type,
135 enum AVMediaType type)
137 if (av_match_name("segment", fmt->name) || av_match_name("ssegment", fmt->name)) {
138 AVOutputFormat *fmt2 = av_guess_format(NULL, filename, NULL);
143 if (type == AVMEDIA_TYPE_VIDEO) {
144 enum AVCodecID codec_id = AV_CODEC_ID_NONE;
146 #if CONFIG_IMAGE2_MUXER
147 if (!strcmp(fmt->name, "image2") || !strcmp(fmt->name, "image2pipe")) {
148 codec_id = ff_guess_image2_codec(filename);
151 if (codec_id == AV_CODEC_ID_NONE)
152 codec_id = fmt->video_codec;
154 } else if (type == AVMEDIA_TYPE_AUDIO)
155 return fmt->audio_codec;
156 else if (type == AVMEDIA_TYPE_SUBTITLE)
157 return fmt->subtitle_codec;
158 else if (type == AVMEDIA_TYPE_DATA)
159 return fmt->data_codec;
161 return AV_CODEC_ID_NONE;
164 AVInputFormat *av_find_input_format(const char *short_name)
166 AVInputFormat *fmt = NULL;
167 while ((fmt = av_iformat_next(fmt)))
168 if (av_match_name(short_name, fmt->name))
173 AVInputFormat *av_probe_input_format3(AVProbeData *pd, int is_opened,
176 AVProbeData lpd = *pd;
177 AVInputFormat *fmt1 = NULL, *fmt;
178 int score, score_max = 0;
179 const static uint8_t zerobuffer[AVPROBE_PADDING_SIZE];
182 ID3_ALMOST_GREATER_PROBE,
184 ID3_GREATER_MAX_PROBE,
188 lpd.buf = (unsigned char *) zerobuffer;
190 if (lpd.buf_size > 10 && ff_id3v2_match(lpd.buf, ID3v2_DEFAULT_MAGIC)) {
191 int id3len = ff_id3v2_tag_len(lpd.buf);
192 if (lpd.buf_size > id3len + 16) {
193 if (lpd.buf_size < 2LL*id3len + 16)
194 nodat = ID3_ALMOST_GREATER_PROBE;
196 lpd.buf_size -= id3len;
197 } else if (id3len >= PROBE_BUF_MAX) {
198 nodat = ID3_GREATER_MAX_PROBE;
200 nodat = ID3_GREATER_PROBE;
204 while ((fmt1 = av_iformat_next(fmt1))) {
205 if (!is_opened == !(fmt1->flags & AVFMT_NOFILE) && strcmp(fmt1->name, "image2"))
208 if (fmt1->read_probe) {
209 score = fmt1->read_probe(&lpd);
211 av_log(NULL, AV_LOG_TRACE, "Probing %s score:%d size:%d\n", fmt1->name, score, lpd.buf_size);
212 if (fmt1->extensions && av_match_ext(lpd.filename, fmt1->extensions)) {
215 score = FFMAX(score, 1);
217 case ID3_GREATER_PROBE:
218 case ID3_ALMOST_GREATER_PROBE:
219 score = FFMAX(score, AVPROBE_SCORE_EXTENSION / 2 - 1);
221 case ID3_GREATER_MAX_PROBE:
222 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
226 } else if (fmt1->extensions) {
227 if (av_match_ext(lpd.filename, fmt1->extensions))
228 score = AVPROBE_SCORE_EXTENSION;
230 if (av_match_name(lpd.mime_type, fmt1->mime_type)) {
231 if (AVPROBE_SCORE_MIME > score) {
232 av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, score, AVPROBE_SCORE_MIME);
233 score = AVPROBE_SCORE_MIME;
236 if (score > score_max) {
239 } else if (score == score_max)
242 if (nodat == ID3_GREATER_PROBE)
243 score_max = FFMIN(AVPROBE_SCORE_EXTENSION / 2 - 1, score_max);
244 *score_ret = score_max;
249 AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max)
252 AVInputFormat *fmt = av_probe_input_format3(pd, is_opened, &score_ret);
253 if (score_ret > *score_max) {
254 *score_max = score_ret;
260 AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened)
263 return av_probe_input_format2(pd, is_opened, &score);
266 int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt,
267 const char *filename, void *logctx,
268 unsigned int offset, unsigned int max_probe_size)
270 AVProbeData pd = { filename ? filename : "" };
272 int ret = 0, probe_size, buf_offset = 0;
277 max_probe_size = PROBE_BUF_MAX;
278 else if (max_probe_size < PROBE_BUF_MIN) {
279 av_log(logctx, AV_LOG_ERROR,
280 "Specified probe size value %u cannot be < %u\n", max_probe_size, PROBE_BUF_MIN);
281 return AVERROR(EINVAL);
284 if (offset >= max_probe_size)
285 return AVERROR(EINVAL);
288 uint8_t *mime_type_opt = NULL;
290 av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type_opt);
291 pd.mime_type = (const char *)mime_type_opt;
292 semi = pd.mime_type ? strchr(pd.mime_type, ';') : NULL;
298 if (!*fmt && pb->av_class && av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type) >= 0 && mime_type) {
299 if (!av_strcasecmp(mime_type, "audio/aacp")) {
300 *fmt = av_find_input_format("aac");
302 av_freep(&mime_type);
306 for (probe_size = PROBE_BUF_MIN; probe_size <= max_probe_size && !*fmt;
307 probe_size = FFMIN(probe_size << 1,
308 FFMAX(max_probe_size, probe_size + 1))) {
309 score = probe_size < max_probe_size ? AVPROBE_SCORE_RETRY : 0;
311 /* Read probe data. */
312 if ((ret = av_reallocp(&buf, probe_size + AVPROBE_PADDING_SIZE)) < 0)
314 if ((ret = avio_read(pb, buf + buf_offset,
315 probe_size - buf_offset)) < 0) {
316 /* Fail if error was not end of file, otherwise, lower score. */
317 if (ret != AVERROR_EOF)
321 ret = 0; /* error was end of file, nothing read */
324 if (buf_offset < offset)
326 pd.buf_size = buf_offset - offset;
327 pd.buf = &buf[offset];
329 memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE);
331 /* Guess file format. */
332 *fmt = av_probe_input_format2(&pd, 1, &score);
334 /* This can only be true in the last iteration. */
335 if (score <= AVPROBE_SCORE_RETRY) {
336 av_log(logctx, AV_LOG_WARNING,
337 "Format %s detected only with low score of %d, "
338 "misdetection possible!\n", (*fmt)->name, score);
340 av_log(logctx, AV_LOG_DEBUG,
341 "Format %s probed with size=%d and score=%d\n",
342 (*fmt)->name, probe_size, score);
344 FILE *f = fopen("probestat.tmp", "ab");
345 fprintf(f, "probe_size:%d format:%s score:%d filename:%s\n", probe_size, (*fmt)->name, score, filename);
352 ret = AVERROR_INVALIDDATA;
355 /* Rewind. Reuse probe buffer to avoid seeking. */
356 ret2 = ffio_rewind_with_probe_data(pb, &buf, buf_offset);
360 av_freep(&pd.mime_type);
361 return ret < 0 ? ret : score;
364 int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
365 const char *filename, void *logctx,
366 unsigned int offset, unsigned int max_probe_size)
368 int ret = av_probe_input_buffer2(pb, fmt, filename, logctx, offset, max_probe_size);
369 return ret < 0 ? ret : 0;