]> git.sesse.net Git - ffmpeg/blob - libavformat/riffdec.c
ffplay: introduce key repeats
[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         codec->channels    = avio_rl16(pb);
103         codec->sample_rate = avio_rl32(pb);
104         bitrate            = avio_rl32(pb) * 8LL;
105         codec->block_align = avio_rl16(pb);
106     } else {
107         id                 = avio_rb16(pb);
108         codec->channels    = avio_rb16(pb);
109         codec->sample_rate = avio_rb32(pb);
110         bitrate            = avio_rb32(pb) * 8LL;
111         codec->block_align = avio_rb16(pb);
112     }
113     if (size == 14) {  /* We're dealing with plain vanilla WAVEFORMAT */
114         codec->bits_per_coded_sample = 8;
115     } else {
116         if (!big_endian) {
117             codec->bits_per_coded_sample = avio_rl16(pb);
118         } else {
119             codec->bits_per_coded_sample = avio_rb16(pb);
120         }
121     }
122     if (id == 0xFFFE) {
123         codec->codec_tag = 0;
124     } else {
125         codec->codec_tag = id;
126         codec->codec_id  = ff_wav_codec_get_id(id,
127                                                codec->bits_per_coded_sample);
128     }
129     if (size >= 18) {  /* We're obviously dealing with WAVEFORMATEX */
130         int cbSize = avio_rl16(pb); /* cbSize */
131         if (big_endian) {
132             avpriv_report_missing_feature(codec, "WAVEFORMATEX support for RIFX files\n");
133             return AVERROR_PATCHWELCOME;
134         }
135         size  -= 18;
136         cbSize = FFMIN(size, cbSize);
137         if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
138             parse_waveformatex(pb, codec);
139             cbSize -= 22;
140             size   -= 22;
141         }
142         if (cbSize > 0) {
143             av_freep(&codec->extradata);
144             if (ff_get_extradata(codec, pb, cbSize) < 0)
145                 return AVERROR(ENOMEM);
146             size -= cbSize;
147         }
148
149         /* It is possible for the chunk to contain garbage at the end */
150         if (size > 0)
151             avio_skip(pb, size);
152     }
153
154     if (bitrate > INT_MAX) {
155         if (s->error_recognition & AV_EF_EXPLODE) {
156             av_log(s, AV_LOG_ERROR,
157                    "The bitrate %"PRIu64" is too large.\n",
158                     bitrate);
159             return AVERROR_INVALIDDATA;
160         } else {
161             av_log(s, AV_LOG_WARNING,
162                    "The bitrate %"PRIu64" is too large, resetting to 0.",
163                    bitrate);
164             codec->bit_rate = 0;
165         }
166     } else {
167         codec->bit_rate = bitrate;
168     }
169
170     if (codec->sample_rate <= 0) {
171         av_log(s, AV_LOG_ERROR,
172                "Invalid sample rate: %d\n", codec->sample_rate);
173         return AVERROR_INVALIDDATA;
174     }
175     if (codec->codec_id == AV_CODEC_ID_AAC_LATM) {
176         /* Channels and sample_rate values are those prior to applying SBR
177          * and/or PS. */
178         codec->channels    = 0;
179         codec->sample_rate = 0;
180     }
181     /* override bits_per_coded_sample for G.726 */
182     if (codec->codec_id == AV_CODEC_ID_ADPCM_G726 && codec->sample_rate)
183         codec->bits_per_coded_sample = codec->bit_rate / codec->sample_rate;
184
185     return 0;
186 }
187
188 enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
189 {
190     enum AVCodecID id;
191     id = ff_codec_get_id(ff_codec_wav_tags, tag);
192     if (id <= 0)
193         return id;
194
195     if (id == AV_CODEC_ID_PCM_S16LE)
196         id = ff_get_pcm_codec_id(bps, 0, 0, ~1);
197     else if (id == AV_CODEC_ID_PCM_F32LE)
198         id = ff_get_pcm_codec_id(bps, 1, 0,  0);
199
200     if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
201         id = AV_CODEC_ID_PCM_ZORK;
202     return id;
203 }
204
205 int ff_get_bmp_header(AVIOContext *pb, AVStream *st, unsigned *esize)
206 {
207     int tag1;
208     if(esize) *esize  = avio_rl32(pb);
209     else                avio_rl32(pb);
210     st->codec->width  = avio_rl32(pb);
211     st->codec->height = (int32_t)avio_rl32(pb);
212     avio_rl16(pb); /* planes */
213     st->codec->bits_per_coded_sample = avio_rl16(pb); /* depth */
214     tag1                             = avio_rl32(pb);
215     avio_rl32(pb); /* ImageSize */
216     avio_rl32(pb); /* XPelsPerMeter */
217     avio_rl32(pb); /* YPelsPerMeter */
218     avio_rl32(pb); /* ClrUsed */
219     avio_rl32(pb); /* ClrImportant */
220     return tag1;
221 }
222
223 int ff_read_riff_info(AVFormatContext *s, int64_t size)
224 {
225     int64_t start, end, cur;
226     AVIOContext *pb = s->pb;
227
228     start = avio_tell(pb);
229     end   = start + size;
230
231     while ((cur = avio_tell(pb)) >= 0 &&
232            cur <= end - 8 /* = tag + size */) {
233         uint32_t chunk_code;
234         int64_t chunk_size;
235         char key[5] = { 0 };
236         char *value;
237
238         chunk_code = avio_rl32(pb);
239         chunk_size = avio_rl32(pb);
240         if (avio_feof(pb)) {
241             if (chunk_code || chunk_size) {
242                 av_log(s, AV_LOG_WARNING, "INFO subchunk truncated\n");
243                 return AVERROR_INVALIDDATA;
244             }
245             return AVERROR_EOF;
246         }
247         if (chunk_size > end ||
248             end - chunk_size < cur ||
249             chunk_size == UINT_MAX) {
250             avio_seek(pb, -9, SEEK_CUR);
251             chunk_code = avio_rl32(pb);
252             chunk_size = avio_rl32(pb);
253             if (chunk_size > end || end - chunk_size < cur || chunk_size == UINT_MAX) {
254                 av_log(s, AV_LOG_WARNING, "too big INFO subchunk\n");
255                 return AVERROR_INVALIDDATA;
256             }
257         }
258
259         chunk_size += (chunk_size & 1);
260
261         if (!chunk_code) {
262             if (chunk_size)
263                 avio_skip(pb, chunk_size);
264             else if (pb->eof_reached) {
265                 av_log(s, AV_LOG_WARNING, "truncated file\n");
266                 return AVERROR_EOF;
267             }
268             continue;
269         }
270
271         value = av_mallocz(chunk_size + 1);
272         if (!value) {
273             av_log(s, AV_LOG_ERROR,
274                    "out of memory, unable to read INFO tag\n");
275             return AVERROR(ENOMEM);
276         }
277
278         AV_WL32(key, chunk_code);
279
280         if (avio_read(pb, value, chunk_size) != chunk_size) {
281             av_log(s, AV_LOG_WARNING,
282                    "premature end of file while reading INFO tag\n");
283         }
284
285         av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
286     }
287
288     return 0;
289 }