]> git.sesse.net Git - ffmpeg/blob - libavformat/format.c
Merge commit 'c8e135ea9225137050a6315fd9ba9c0f242c90b6'
[ffmpeg] / libavformat / format.c
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 "libavutil/avstring.h"
23 #include "libavutil/bprint.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/thread.h"
26
27 #include "avio_internal.h"
28 #include "avformat.h"
29 #include "id3v2.h"
30 #include "internal.h"
31
32
33 /**
34  * @file
35  * Format register and lookup
36  */
37
38 int av_match_ext(const char *filename, const char *extensions)
39 {
40     const char *ext;
41
42     if (!filename)
43         return 0;
44
45     ext = strrchr(filename, '.');
46     if (ext)
47         return av_match_name(ext + 1, extensions);
48     return 0;
49 }
50
51 AVOutputFormat *av_guess_format(const char *short_name, const char *filename,
52                                 const char *mime_type)
53 {
54     AVOutputFormat *fmt = NULL, *fmt_found;
55 #if !FF_API_NEXT
56     void *i = 0;
57 #endif
58     int score_max, score;
59
60     /* specific test for image sequences */
61 #if CONFIG_IMAGE2_MUXER
62     if (!short_name && filename &&
63         av_filename_number_test(filename) &&
64         ff_guess_image2_codec(filename) != AV_CODEC_ID_NONE) {
65         return av_guess_format("image2", NULL, NULL);
66     }
67 #endif
68     /* Find the proper file type. */
69     fmt_found = NULL;
70     score_max = 0;
71 #if FF_API_NEXT
72 FF_DISABLE_DEPRECATION_WARNINGS
73     while ((fmt = av_oformat_next(fmt)))
74 #else
75     while ((fmt = av_muxer_iterate(&i)))
76 #endif
77      {
78         score = 0;
79         if (fmt->name && short_name && av_match_name(short_name, fmt->name))
80             score += 100;
81         if (fmt->mime_type && mime_type && !strcmp(fmt->mime_type, mime_type))
82             score += 10;
83         if (filename && fmt->extensions &&
84             av_match_ext(filename, fmt->extensions)) {
85             score += 5;
86         }
87         if (score > score_max) {
88             score_max = score;
89             fmt_found = fmt;
90         }
91     }
92 #if FF_API_NEXT
93 FF_ENABLE_DEPRECATION_WARNINGS
94 #endif
95     return fmt_found;
96 }
97
98 enum AVCodecID av_guess_codec(AVOutputFormat *fmt, const char *short_name,
99                               const char *filename, const char *mime_type,
100                               enum AVMediaType type)
101 {
102     if (av_match_name("segment", fmt->name) || av_match_name("ssegment", fmt->name)) {
103         AVOutputFormat *fmt2 = av_guess_format(NULL, filename, NULL);
104         if (fmt2)
105             fmt = fmt2;
106     }
107
108     if (type == AVMEDIA_TYPE_VIDEO) {
109         enum AVCodecID codec_id = AV_CODEC_ID_NONE;
110
111 #if CONFIG_IMAGE2_MUXER
112         if (!strcmp(fmt->name, "image2") || !strcmp(fmt->name, "image2pipe")) {
113             codec_id = ff_guess_image2_codec(filename);
114         }
115 #endif
116         if (codec_id == AV_CODEC_ID_NONE)
117             codec_id = fmt->video_codec;
118         return codec_id;
119     } else if (type == AVMEDIA_TYPE_AUDIO)
120         return fmt->audio_codec;
121     else if (type == AVMEDIA_TYPE_SUBTITLE)
122         return fmt->subtitle_codec;
123     else if (type == AVMEDIA_TYPE_DATA)
124         return fmt->data_codec;
125     else
126         return AV_CODEC_ID_NONE;
127 }
128
129 AVInputFormat *av_find_input_format(const char *short_name)
130 {
131     AVInputFormat *fmt = NULL;
132 #if FF_API_NEXT
133 FF_DISABLE_DEPRECATION_WARNINGS
134     while ((fmt = av_iformat_next(fmt)))
135         if (av_match_name(short_name, fmt->name))
136             return fmt;
137 FF_ENABLE_DEPRECATION_WARNINGS
138 #else
139     void *i = 0;
140     while ((fmt = av_demuxer_iterate(&i)))
141         if (av_match_name(short_name, fmt->name))
142             return fmt;
143 #endif
144     return NULL;
145 }
146
147 AVInputFormat *av_probe_input_format3(AVProbeData *pd, int is_opened,
148                                       int *score_ret)
149 {
150     AVProbeData lpd = *pd;
151     AVInputFormat *fmt1 = NULL, *fmt;
152     int score, score_max = 0;
153     void *i = 0;
154     const static uint8_t zerobuffer[AVPROBE_PADDING_SIZE];
155     enum nodat {
156         NO_ID3,
157         ID3_ALMOST_GREATER_PROBE,
158         ID3_GREATER_PROBE,
159         ID3_GREATER_MAX_PROBE,
160     } nodat = NO_ID3;
161
162     if (!lpd.buf)
163         lpd.buf = (unsigned char *) zerobuffer;
164
165     if (lpd.buf_size > 10 && ff_id3v2_match(lpd.buf, ID3v2_DEFAULT_MAGIC)) {
166         int id3len = ff_id3v2_tag_len(lpd.buf);
167         if (lpd.buf_size > id3len + 16) {
168             if (lpd.buf_size < 2LL*id3len + 16)
169                 nodat = ID3_ALMOST_GREATER_PROBE;
170             lpd.buf      += id3len;
171             lpd.buf_size -= id3len;
172         } else if (id3len >= PROBE_BUF_MAX) {
173             nodat = ID3_GREATER_MAX_PROBE;
174         } else
175             nodat = ID3_GREATER_PROBE;
176     }
177
178     fmt = NULL;
179     while ((fmt1 = av_demuxer_iterate(&i))) {
180         if (!is_opened == !(fmt1->flags & AVFMT_NOFILE) && strcmp(fmt1->name, "image2"))
181             continue;
182         score = 0;
183         if (fmt1->read_probe) {
184             score = fmt1->read_probe(&lpd);
185             if (score)
186                 av_log(NULL, AV_LOG_TRACE, "Probing %s score:%d size:%d\n", fmt1->name, score, lpd.buf_size);
187             if (fmt1->extensions && av_match_ext(lpd.filename, fmt1->extensions)) {
188                 switch (nodat) {
189                 case NO_ID3:
190                     score = FFMAX(score, 1);
191                     break;
192                 case ID3_GREATER_PROBE:
193                 case ID3_ALMOST_GREATER_PROBE:
194                     score = FFMAX(score, AVPROBE_SCORE_EXTENSION / 2 - 1);
195                     break;
196                 case ID3_GREATER_MAX_PROBE:
197                     score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
198                     break;
199                 }
200             }
201         } else if (fmt1->extensions) {
202             if (av_match_ext(lpd.filename, fmt1->extensions))
203                 score = AVPROBE_SCORE_EXTENSION;
204         }
205         if (av_match_name(lpd.mime_type, fmt1->mime_type)) {
206             if (AVPROBE_SCORE_MIME > score) {
207                 av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, score, AVPROBE_SCORE_MIME);
208                 score = AVPROBE_SCORE_MIME;
209             }
210         }
211         if (score > score_max) {
212             score_max = score;
213             fmt       = fmt1;
214         } else if (score == score_max)
215             fmt = NULL;
216     }
217     if (nodat == ID3_GREATER_PROBE)
218         score_max = FFMIN(AVPROBE_SCORE_EXTENSION / 2 - 1, score_max);
219     *score_ret = score_max;
220
221     return fmt;
222 }
223
224 AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max)
225 {
226     int score_ret;
227     AVInputFormat *fmt = av_probe_input_format3(pd, is_opened, &score_ret);
228     if (score_ret > *score_max) {
229         *score_max = score_ret;
230         return fmt;
231     } else
232         return NULL;
233 }
234
235 AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened)
236 {
237     int score = 0;
238     return av_probe_input_format2(pd, is_opened, &score);
239 }
240
241 int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt,
242                           const char *filename, void *logctx,
243                           unsigned int offset, unsigned int max_probe_size)
244 {
245     AVProbeData pd = { filename ? filename : "" };
246     uint8_t *buf = NULL;
247     int ret = 0, probe_size, buf_offset = 0;
248     int score = 0;
249     int ret2;
250
251     if (!max_probe_size)
252         max_probe_size = PROBE_BUF_MAX;
253     else if (max_probe_size < PROBE_BUF_MIN) {
254         av_log(logctx, AV_LOG_ERROR,
255                "Specified probe size value %u cannot be < %u\n", max_probe_size, PROBE_BUF_MIN);
256         return AVERROR(EINVAL);
257     }
258
259     if (offset >= max_probe_size)
260         return AVERROR(EINVAL);
261
262     if (pb->av_class) {
263         uint8_t *mime_type_opt = NULL;
264         char *semi;
265         av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type_opt);
266         pd.mime_type = (const char *)mime_type_opt;
267         semi = pd.mime_type ? strchr(pd.mime_type, ';') : NULL;
268         if (semi) {
269             *semi = '\0';
270         }
271     }
272 #if 0
273     if (!*fmt && pb->av_class && av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type) >= 0 && mime_type) {
274         if (!av_strcasecmp(mime_type, "audio/aacp")) {
275             *fmt = av_find_input_format("aac");
276         }
277         av_freep(&mime_type);
278     }
279 #endif
280
281     for (probe_size = PROBE_BUF_MIN; probe_size <= max_probe_size && !*fmt;
282          probe_size = FFMIN(probe_size << 1,
283                             FFMAX(max_probe_size, probe_size + 1))) {
284         score = probe_size < max_probe_size ? AVPROBE_SCORE_RETRY : 0;
285
286         /* Read probe data. */
287         if ((ret = av_reallocp(&buf, probe_size + AVPROBE_PADDING_SIZE)) < 0)
288             goto fail;
289         if ((ret = avio_read(pb, buf + buf_offset,
290                              probe_size - buf_offset)) < 0) {
291             /* Fail if error was not end of file, otherwise, lower score. */
292             if (ret != AVERROR_EOF)
293                 goto fail;
294
295             score = 0;
296             ret   = 0;          /* error was end of file, nothing read */
297         }
298         buf_offset += ret;
299         if (buf_offset < offset)
300             continue;
301         pd.buf_size = buf_offset - offset;
302         pd.buf = &buf[offset];
303
304         memset(pd.buf + pd.buf_size, 0, AVPROBE_PADDING_SIZE);
305
306         /* Guess file format. */
307         *fmt = av_probe_input_format2(&pd, 1, &score);
308         if (*fmt) {
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);
314             } else
315                 av_log(logctx, AV_LOG_DEBUG,
316                        "Format %s probed with size=%d and score=%d\n",
317                        (*fmt)->name, probe_size, score);
318 #if 0
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);
321             fclose(f);
322 #endif
323         }
324     }
325
326     if (!*fmt)
327         ret = AVERROR_INVALIDDATA;
328
329 fail:
330     /* Rewind. Reuse probe buffer to avoid seeking. */
331     ret2 = ffio_rewind_with_probe_data(pb, &buf, buf_offset);
332     if (ret >= 0)
333         ret = ret2;
334
335     av_freep(&pd.mime_type);
336     return ret < 0 ? ret : score;
337 }
338
339 int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt,
340                           const char *filename, void *logctx,
341                           unsigned int offset, unsigned int max_probe_size)
342 {
343     int ret = av_probe_input_buffer2(pb, fmt, filename, logctx, offset, max_probe_size);
344     return ret < 0 ? ret : 0;
345 }