]> git.sesse.net Git - ffmpeg/blob - libavformat/riffdec.c
Merge commit '3efd71b4d0b4a73ccbbbdc092e6bbd54d92633f4'
[ffmpeg] / libavformat / riffdec.c
1 /*
2  * RIFF demuxing functions and data
3  * Copyright (c) 2000 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/dict.h"
23 #include "libavutil/error.h"
24 #include "libavutil/log.h"
25 #include "libavutil/mathematics.h"
26 #include "libavcodec/avcodec.h"
27 #include "libavcodec/bytestream.h"
28 #include "avformat.h"
29 #include "avio_internal.h"
30 #include "riff.h"
31
32 int ff_get_guid(AVIOContext *s, ff_asf_guid *g)
33 {
34     int ret;
35     av_assert0(sizeof(*g) == 16); //compiler will optimize this out
36     ret = avio_read(s, *g, sizeof(*g));
37     if (ret < (int)sizeof(*g)) {
38         memset(*g, 0, sizeof(*g));
39         return ret < 0 ? ret : AVERROR_INVALIDDATA;
40     }
41     return 0;
42 }
43
44 enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
45 {
46     int i;
47     for (i = 0; guids[i].id != AV_CODEC_ID_NONE; i++)
48         if (!ff_guidcmp(guids[i].guid, guid))
49             return guids[i].id;
50     return AV_CODEC_ID_NONE;
51 }
52
53 /* We could be given one of the three possible structures here:
54  * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
55  * is an expansion of the previous one with the fields added
56  * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
57  * WAVEFORMATEX adds 'WORD  cbSize' and basically makes itself
58  * an openended structure.
59  */
60
61 static void parse_waveformatex(AVIOContext *pb, AVCodecContext *c)
62 {
63     ff_asf_guid subformat;
64     int bps = avio_rl16(pb);
65     if (bps)
66         c->bits_per_coded_sample = bps;
67
68     c->channel_layout        = avio_rl32(pb); /* dwChannelMask */
69
70     ff_get_guid(pb, &subformat);
71     if (!memcmp(subformat + 4,
72                 (const uint8_t[]){ FF_AMBISONIC_BASE_GUID }, 12) ||
73         !memcmp(subformat + 4,
74                 (const uint8_t[]){ FF_MEDIASUBTYPE_BASE_GUID }, 12)) {
75         c->codec_tag = AV_RL32(subformat);
76         c->codec_id  = ff_wav_codec_get_id(c->codec_tag,
77                                            c->bits_per_coded_sample);
78     } else {
79         c->codec_id = ff_codec_guid_get_id(ff_codec_wav_guids, subformat);
80         if (!c->codec_id)
81             av_log(c, AV_LOG_WARNING,
82                    "unknown subformat:"FF_PRI_GUID"\n",
83                    FF_ARG_GUID(subformat));
84     }
85 }
86
87 /* "big_endian" values are needed for RIFX file format */
88 int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
89                       AVCodecContext *codec, int size, int big_endian)
90 {
91     int id;
92     uint64_t bitrate;
93
94     if (size < 14) {
95         avpriv_request_sample(codec, "wav header size < 14");
96         return AVERROR_INVALIDDATA;
97     }
98
99     codec->codec_type  = AVMEDIA_TYPE_AUDIO;
100     if (!big_endian) {
101         id                 = avio_rl16(pb);
102         if (id != 0x0165) {
103             codec->channels    = avio_rl16(pb);
104             codec->sample_rate = avio_rl32(pb);
105             bitrate            = avio_rl32(pb) * 8LL;
106             codec->block_align = avio_rl16(pb);
107         }
108     } else {
109         id                 = avio_rb16(pb);
110         codec->channels    = avio_rb16(pb);
111         codec->sample_rate = avio_rb32(pb);
112         bitrate            = avio_rb32(pb) * 8LL;
113         codec->block_align = avio_rb16(pb);
114     }
115     if (size == 14) {  /* We're dealing with plain vanilla WAVEFORMAT */
116         codec->bits_per_coded_sample = 8;
117     } else {
118         if (!big_endian) {
119             codec->bits_per_coded_sample = avio_rl16(pb);
120         } else {
121             codec->bits_per_coded_sample = avio_rb16(pb);
122         }
123     }
124     if (id == 0xFFFE) {
125         codec->codec_tag = 0;
126     } else {
127         codec->codec_tag = id;
128         codec->codec_id  = ff_wav_codec_get_id(id,
129                                                codec->bits_per_coded_sample);
130     }
131     if (size >= 18 && id != 0x0165) {  /* We're obviously dealing with WAVEFORMATEX */
132         int cbSize = avio_rl16(pb); /* cbSize */
133         if (big_endian) {
134             avpriv_report_missing_feature(codec, "WAVEFORMATEX support for RIFX files\n");
135             return AVERROR_PATCHWELCOME;
136         }
137         size  -= 18;
138         cbSize = FFMIN(size, cbSize);
139         if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
140             parse_waveformatex(pb, codec);
141             cbSize -= 22;
142             size   -= 22;
143         }
144         if (cbSize > 0) {
145             av_freep(&codec->extradata);
146             if (ff_get_extradata(codec, pb, cbSize) < 0)
147                 return AVERROR(ENOMEM);
148             size -= cbSize;
149         }
150
151         /* It is possible for the chunk to contain garbage at the end */
152         if (size > 0)
153             avio_skip(pb, size);
154     } else if (id == 0x0165 && size >= 32) {
155         int nb_streams, i;
156
157         size -= 4;
158         av_freep(&codec->extradata);
159         if (ff_get_extradata(codec, pb, size) < 0)
160             return AVERROR(ENOMEM);
161         nb_streams         = AV_RL16(codec->extradata + 4);
162         codec->sample_rate = AV_RL32(codec->extradata + 12);
163         codec->channels    = 0;
164         bitrate            = 0;
165         if (size < 8 + nb_streams * 20)
166             return AVERROR_INVALIDDATA;
167         for (i = 0; i < nb_streams; i++)
168             codec->channels += codec->extradata[8 + i * 20 + 17];
169     }
170
171     if (bitrate > INT_MAX) {
172         if (s->error_recognition & AV_EF_EXPLODE) {
173             av_log(s, AV_LOG_ERROR,
174                    "The bitrate %"PRIu64" is too large.\n",
175                     bitrate);
176             return AVERROR_INVALIDDATA;
177         } else {
178             av_log(s, AV_LOG_WARNING,
179                    "The bitrate %"PRIu64" is too large, resetting to 0.",
180                    bitrate);
181             codec->bit_rate = 0;
182         }
183     } else {
184         codec->bit_rate = bitrate;
185     }
186
187     if (codec->sample_rate <= 0) {
188         av_log(s, AV_LOG_ERROR,
189                "Invalid sample rate: %d\n", codec->sample_rate);
190         return AVERROR_INVALIDDATA;
191     }
192     if (codec->codec_id == AV_CODEC_ID_AAC_LATM) {
193         /* Channels and sample_rate values are those prior to applying SBR
194          * and/or PS. */
195         codec->channels    = 0;
196         codec->sample_rate = 0;
197     }
198     /* override bits_per_coded_sample for G.726 */
199     if (codec->codec_id == AV_CODEC_ID_ADPCM_G726 && codec->sample_rate)
200         codec->bits_per_coded_sample = codec->bit_rate / codec->sample_rate;
201
202     return 0;
203 }
204
205 enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
206 {
207     enum AVCodecID id;
208     id = ff_codec_get_id(ff_codec_wav_tags, tag);
209     if (id <= 0)
210         return id;
211
212     if (id == AV_CODEC_ID_PCM_S16LE)
213         id = ff_get_pcm_codec_id(bps, 0, 0, ~1);
214     else if (id == AV_CODEC_ID_PCM_F32LE)
215         id = ff_get_pcm_codec_id(bps, 1, 0,  0);
216
217     if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
218         id = AV_CODEC_ID_PCM_ZORK;
219     return id;
220 }
221
222 int ff_get_bmp_header(AVIOContext *pb, AVStream *st, unsigned *esize)
223 {
224     int tag1;
225     if(esize) *esize  = avio_rl32(pb);
226     else                avio_rl32(pb);
227     st->codec->width  = avio_rl32(pb);
228     st->codec->height = (int32_t)avio_rl32(pb);
229     avio_rl16(pb); /* planes */
230     st->codec->bits_per_coded_sample = avio_rl16(pb); /* depth */
231     tag1                             = avio_rl32(pb);
232     avio_rl32(pb); /* ImageSize */
233     avio_rl32(pb); /* XPelsPerMeter */
234     avio_rl32(pb); /* YPelsPerMeter */
235     avio_rl32(pb); /* ClrUsed */
236     avio_rl32(pb); /* ClrImportant */
237     return tag1;
238 }
239
240 int ff_read_riff_info(AVFormatContext *s, int64_t size)
241 {
242     int64_t start, end, cur;
243     AVIOContext *pb = s->pb;
244
245     start = avio_tell(pb);
246     end   = start + size;
247
248     while ((cur = avio_tell(pb)) >= 0 &&
249            cur <= end - 8 /* = tag + size */) {
250         uint32_t chunk_code;
251         int64_t chunk_size;
252         char key[5] = { 0 };
253         char *value;
254
255         chunk_code = avio_rl32(pb);
256         chunk_size = avio_rl32(pb);
257         if (avio_feof(pb)) {
258             if (chunk_code || chunk_size) {
259                 av_log(s, AV_LOG_WARNING, "INFO subchunk truncated\n");
260                 return AVERROR_INVALIDDATA;
261             }
262             return AVERROR_EOF;
263         }
264         if (chunk_size > end ||
265             end - chunk_size < cur ||
266             chunk_size == UINT_MAX) {
267             avio_seek(pb, -9, SEEK_CUR);
268             chunk_code = avio_rl32(pb);
269             chunk_size = avio_rl32(pb);
270             if (chunk_size > end || end - chunk_size < cur || chunk_size == UINT_MAX) {
271                 av_log(s, AV_LOG_WARNING, "too big INFO subchunk\n");
272                 return AVERROR_INVALIDDATA;
273             }
274         }
275
276         chunk_size += (chunk_size & 1);
277
278         if (!chunk_code) {
279             if (chunk_size)
280                 avio_skip(pb, chunk_size);
281             else if (pb->eof_reached) {
282                 av_log(s, AV_LOG_WARNING, "truncated file\n");
283                 return AVERROR_EOF;
284             }
285             continue;
286         }
287
288         value = av_mallocz(chunk_size + 1);
289         if (!value) {
290             av_log(s, AV_LOG_ERROR,
291                    "out of memory, unable to read INFO tag\n");
292             return AVERROR(ENOMEM);
293         }
294
295         AV_WL32(key, chunk_code);
296
297         if (avio_read(pb, value, chunk_size) != chunk_size) {
298             av_log(s, AV_LOG_WARNING,
299                    "premature end of file while reading INFO tag\n");
300         }
301
302         av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
303     }
304
305     return 0;
306 }