FFmpeg
Loading...
Searching...
No Matches
riffdec.c
Go to the documentation of this file.
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/avassert.h"
23#include "libavutil/dict.h"
24#include "libavutil/error.h"
26#include "libavutil/log.h"
27#include "libavutil/mem.h"
28#include "avformat.h"
29#include "avio_internal.h"
30#include "demux.h"
31#include "riff.h"
32
34{
35 int ret;
36 av_assert0(sizeof(*g) == 16); //compiler will optimize this out
37 ret = ffio_read_size(s, *g, sizeof(*g));
38 if (ret < 0) {
39 memset(*g, 0, sizeof(*g));
40 return ret;
41 }
42 return 0;
43}
44
46{
47 int i;
48 for (i = 0; guids[i].id != AV_CODEC_ID_NONE; i++)
49 if (!ff_guidcmp(guids[i].guid, guid))
50 return guids[i].id;
51 return AV_CODEC_ID_NONE;
52}
53
54/* We could be given one of the three possible structures here:
55 * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
56 * is an expansion of the previous one with the fields added
57 * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
58 * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself
59 * an openended structure.
60 */
61
62static void parse_waveformatex(void *logctx, AVIOContext *pb, AVCodecParameters *par)
63{
64 ff_asf_guid subformat;
65 int bps;
66 uint64_t mask;
67
68 bps = avio_rl16(pb);
69 if (bps)
71
72 mask = avio_rl32(pb); /* dwChannelMask */
74
75 ff_get_guid(pb, &subformat);
76 if (!memcmp(subformat + 4,
77 (const uint8_t[]){ FF_AMBISONIC_BASE_GUID }, 12) ||
78 !memcmp(subformat + 4,
79 (const uint8_t[]){ FF_BROKEN_BASE_GUID }, 12) ||
80 !memcmp(subformat + 4,
81 (const uint8_t[]){ FF_MEDIASUBTYPE_BASE_GUID }, 12)) {
82 par->codec_tag = AV_RL32(subformat);
85 } else {
87 if (!par->codec_id)
88 av_log(logctx, AV_LOG_WARNING,
89 "unknown subformat:"FF_PRI_GUID"\n",
90 FF_ARG_GUID(subformat));
91 }
92}
93
94/*
95 * Compute the expected bit_rate for codecs with a deterministic block
96 * structure. Returns 0 when the codec is not handled or the parameters
97 * are not sufficient to derive a reliable value.
98 */
100{
101 if (par->sample_rate <= 0 || par->block_align <= 0 ||
102 par->ch_layout.nb_channels <= 0)
103 return 0;
104
105 switch (par->codec_id) {
121 int block_align = ((par->bits_per_coded_sample + 7) / 8) *
123 if (par->block_align != block_align)
124 return 0;
125 return (int64_t)par->sample_rate * block_align * 8;
126 }
130 par->block_align);
131 if (frame_size <= 0)
132 return 0;
133 return 8LL * par->sample_rate * par->block_align / frame_size;
134 }
135 default:
136 return 0;
137 }
138}
139
140/* "big_endian" values are needed for RIFX file format */
142 AVCodecParameters *par, int size, int big_endian)
143{
144 int id, channels = 0, ret;
145 uint64_t bitrate = 0;
146
147 if (size < 14) {
148 avpriv_request_sample(s, "wav header size < 14");
149 return AVERROR_INVALIDDATA;
150 }
151
153
155 if (!big_endian) {
156 id = avio_rl16(pb);
157 if (id != 0x0165) {
158 channels = avio_rl16(pb);
159 par->sample_rate = avio_rl32(pb);
160 bitrate = avio_rl32(pb) * 8LL;
161 par->block_align = avio_rl16(pb);
162 }
163 } else {
164 id = avio_rb16(pb);
165 channels = avio_rb16(pb);
166 par->sample_rate = avio_rb32(pb);
167 bitrate = avio_rb32(pb) * 8LL;
168 par->block_align = avio_rb16(pb);
169 }
170 if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
171 par->bits_per_coded_sample = 8;
172 } else {
173 if (!big_endian) {
175 } else {
177 }
178 }
179 if (id == 0xFFFE) {
180 par->codec_tag = 0;
181 } else {
182 par->codec_tag = id;
185 }
186 if (size >= 18 && id != 0x0165) { /* We're obviously dealing with WAVEFORMATEX */
187 int cbSize = avio_rl16(pb); /* cbSize */
188 if (big_endian) {
189 avpriv_report_missing_feature(s, "WAVEFORMATEX support for RIFX files");
191 }
192 size -= 18;
193 cbSize = FFMIN(size, cbSize);
194 if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
195 parse_waveformatex(s, pb, par);
196 cbSize -= 22;
197 size -= 22;
198 } else if (cbSize >= 12 && id == 0x1610) { /* HEAACWAVEFORMAT */
199 int wPayloadType = avio_rl16(pb);
200 if (wPayloadType == 3)
202 avio_skip(pb, 2); // wAudioProfileLevelIndication
203 int wStructType = avio_rl16(pb);
204 if (wStructType) {
205 avpriv_report_missing_feature(s, "HEAACWAVEINFO wStructType \"%d\"", wStructType);
207 }
208 avio_skip(pb, 2); // wReserved1
209 avio_skip(pb, 4); // dwReserved2
210 cbSize -= 12;
211 size -= 12;
212 }
213 if (cbSize > 0) {
214 ret = ff_get_extradata(s, par, pb, cbSize);
215 if (ret < 0)
216 return ret;
217 size -= cbSize;
218 }
219
220 /* It is possible for the chunk to contain garbage at the end */
221 if (size > 0)
222 avio_skip(pb, size);
223 } else if (id == 0x0165 && size >= 32) {
224 int nb_streams, i;
225
226 size -= 4;
227 ret = ff_get_extradata(s, par, pb, size);
228 if (ret < 0)
229 return ret;
230 nb_streams = AV_RL16(par->extradata + 4);
231 par->sample_rate = AV_RL32(par->extradata + 12);
232 channels = 0;
233 bitrate = 0;
234 if (size < 8 + nb_streams * 20)
235 return AVERROR_INVALIDDATA;
236 for (i = 0; i < nb_streams; i++)
237 channels += par->extradata[8 + i * 20 + 17];
238 }
239
240 par->bit_rate = bitrate;
241
242 if (par->sample_rate <= 0) {
244 "Invalid sample rate: %d\n", par->sample_rate);
245 return AVERROR_INVALIDDATA;
246 }
247
248 if (par->codec_id == AV_CODEC_ID_AAC_LATM) {
249 /* Channels and sample_rate values are those prior to applying SBR
250 * and/or PS. */
251 channels = 0;
252 par->sample_rate = 0;
253 }
254 /* override bits_per_coded_sample for G.726 */
255 if (par->codec_id == AV_CODEC_ID_ADPCM_G726 && par->sample_rate)
256 par->bits_per_coded_sample = par->bit_rate / par->sample_rate;
257
258 /* ignore WAVEFORMATEXTENSIBLE layout if different from channel count */
259 if (channels != par->ch_layout.nb_channels) {
263 }
264
265 int64_t expected_bitrate = compute_bitrate(par);
266 if (expected_bitrate && par->bit_rate / 8 != expected_bitrate / 8) {
268 "nAvgBytesPerSec %"PRId64" inconsistent with other fields"
269 " (expected %"PRId64"), overriding.\n",
270 par->bit_rate / 8, expected_bitrate / 8);
271 par->bit_rate = expected_bitrate;
272 }
273
274 return 0;
275}
276
277enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
278{
279 enum AVCodecID id;
281 if (id <= 0)
282 return id;
283
284 if (id == AV_CODEC_ID_PCM_S16LE)
285 id = ff_get_pcm_codec_id(bps, 0, 0, ~1);
286 else if (id == AV_CODEC_ID_PCM_F32LE)
287 id = ff_get_pcm_codec_id(bps, 1, 0, 0);
288
289 if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
291 return id;
292}
293
295{
296 int tag1;
297 uint32_t size_ = avio_rl32(pb);
298 if (size)
299 *size = size_;
300 st->codecpar->width = avio_rl32(pb);
301 st->codecpar->height = (int32_t)avio_rl32(pb);
302 avio_rl16(pb); /* planes */
303 st->codecpar->bits_per_coded_sample = avio_rl16(pb); /* depth */
304 tag1 = avio_rl32(pb);
305 avio_rl32(pb); /* ImageSize */
306 avio_rl32(pb); /* XPelsPerMeter */
307 avio_rl32(pb); /* YPelsPerMeter */
308 avio_rl32(pb); /* ClrUsed */
309 avio_rl32(pb); /* ClrImportant */
310 return tag1;
311}
312
314{
315 int64_t start, end, cur;
316 AVIOContext *pb = s->pb;
317
318 start = avio_tell(pb);
319 end = start + size;
320
321 while ((cur = avio_tell(pb)) >= 0 &&
322 cur <= end - 8 /* = tag + size */) {
323 uint32_t chunk_code;
324 int64_t chunk_size;
325 char key[5] = { 0 };
326 char *value;
327
328 chunk_code = avio_rl32(pb);
329 chunk_size = avio_rl32(pb);
330 if (avio_feof(pb)) {
331 if (chunk_code || chunk_size) {
332 av_log(s, AV_LOG_WARNING, "INFO subchunk truncated\n");
333 return AVERROR_INVALIDDATA;
334 }
335 return AVERROR_EOF;
336 }
337 if (chunk_size > end ||
338 end - chunk_size < cur ||
339 chunk_size == UINT_MAX) {
340 avio_seek(pb, -9, SEEK_CUR);
341 chunk_code = avio_rl32(pb);
342 chunk_size = avio_rl32(pb);
343 if (chunk_size > end || end - chunk_size < cur || chunk_size == UINT_MAX) {
344 av_log(s, AV_LOG_WARNING, "too big INFO subchunk\n");
345 return AVERROR_INVALIDDATA;
346 }
347 }
348
349 chunk_size += (chunk_size & 1);
350
351 if (!chunk_code) {
352 if (chunk_size)
353 avio_skip(pb, chunk_size);
354 else if (pb->eof_reached) {
355 av_log(s, AV_LOG_WARNING, "truncated file\n");
356 return AVERROR_EOF;
357 }
358 continue;
359 }
360
361 value = av_mallocz(chunk_size + 1);
362 if (!value) {
364 "out of memory, unable to read INFO tag\n");
365 return AVERROR(ENOMEM);
366 }
367
368 AV_WL32(key, chunk_code);
369 // Work around VC++ 2015 Update 1 code-gen bug:
370 // https://connect.microsoft.com/VisualStudio/feedback/details/2291638
371 key[4] = 0;
372
373 if (avio_read(pb, value, chunk_size) != chunk_size) {
375 "premature end of file while reading INFO tag\n");
376 }
377
379 }
380
381 return 0;
382}
channels
Definition aptx.h:31
int32_t
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
Main libavformat public API header.
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
unsigned int avio_rb16(AVIOContext *s)
Definition aviobuf.c:749
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
unsigned int avio_rl16(AVIOContext *s)
Definition aviobuf.c:717
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:615
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
long long int64_t
Definition coverity.c:34
int ff_get_extradata(void *logctx, AVCodecParameters *par, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
Public dictionary API.
enum AVCodecID id
Definition dts2pts.c:607
error code definitions
double value
Definition eval.c:102
const char * key
static unsigned int nb_streams
Definition ffprobe.c:352
static const uint8_t frame_size[4]
Definition g723_1.h:222
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_PCM_F32LE
Definition codec_id.h:351
@ AV_CODEC_ID_PCM_S24BE
Definition codec_id.h:343
@ AV_CODEC_ID_PCM_U8
Definition codec_id.h:335
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_PCM_S16BE
Definition codec_id.h:331
@ AV_CODEC_ID_PCM_S24LE
Definition codec_id.h:342
@ AV_CODEC_ID_PCM_S32LE
Definition codec_id.h:338
@ AV_CODEC_ID_PCM_S8
Definition codec_id.h:334
@ AV_CODEC_ID_ADPCM_MS
Definition codec_id.h:376
@ AV_CODEC_ID_ADPCM_ZORK
Definition codec_id.h:414
@ AV_CODEC_ID_PCM_ALAW
Definition codec_id.h:337
@ AV_CODEC_ID_PCM_F64LE
Definition codec_id.h:353
@ AV_CODEC_ID_PCM_U16BE
Definition codec_id.h:333
@ AV_CODEC_ID_PCM_S64LE
Definition codec_id.h:361
@ AV_CODEC_ID_ADPCM_G726
Definition codec_id.h:381
@ AV_CODEC_ID_PCM_S32BE
Definition codec_id.h:339
@ AV_CODEC_ID_ADPCM_IMA_WAV
Definition codec_id.h:371
@ AV_CODEC_ID_AAC_LATM
Definition codec_id.h:502
@ AV_CODEC_ID_PCM_U16LE
Definition codec_id.h:332
@ AV_CODEC_ID_PCM_MULAW
Definition codec_id.h:336
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask)
Initialize a native channel layout from a bitmask indicating which channels are present.
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition dict.h:79
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition dict.c:86
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_WL32(p, v)
#define AV_RL32(p)
#define AV_RL16(p)
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
Definition utils.c:823
enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags)
Select a PCM codec based on the given parameters.
Definition utils.c:154
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition utils.c:143
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static const uint16_t mask[17]
Definition lzw.c:38
#define FFMIN(a, b)
Definition macros.h:49
Memory handling functions.
uint32_t tag
Definition movenc.c:2073
unsigned bps
Definition movenc.c:2074
const AVCodecGuid ff_codec_wav_guids[]
Definition riff.c:659
const AVCodecTag ff_codec_wav_tags[]
Definition riff.c:525
internal header for RIFF based (de)muxers do NOT include this in end user applications
static av_always_inline int ff_guidcmp(const void *g1, const void *g2)
Definition riff.h:122
#define FF_BROKEN_BASE_GUID
Definition riff.h:119
#define FF_PRI_GUID
Definition riff.h:105
#define FF_ARG_GUID(g)
Definition riff.h:109
#define FF_MEDIASUBTYPE_BASE_GUID
Definition riff.h:115
uint8_t ff_asf_guid[16]
Definition riff.h:96
#define FF_AMBISONIC_BASE_GUID
Definition riff.h:117
int ff_get_guid(AVIOContext *s, ff_asf_guid *g)
Definition riffdec.c:33
static void parse_waveformatex(void *logctx, AVIOContext *pb, AVCodecParameters *par)
Definition riffdec.c:62
int ff_get_bmp_header(AVIOContext *pb, AVStream *st, uint32_t *size)
Read BITMAPINFOHEADER structure and set AVStream codec width, height and bits_per_encoded_sample fiel...
Definition riffdec.c:294
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int size, int big_endian)
Definition riffdec.c:141
enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
Definition riffdec.c:277
static int64_t compute_bitrate(const AVCodecParameters *par)
Definition riffdec.c:99
int ff_read_riff_info(AVFormatContext *s, int64_t size)
Definition riffdec.c:313
enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
Definition riffdec.c:45
enum AVChannelOrder order
Channel order used in this layout.
int nb_channels
Number of channels in this layout.
enum AVCodecID id
Definition riff.h:99
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
int height
The height of the video frame in pixels.
Definition codec_par.h:150
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int width
The width of the video frame in pixels.
Definition codec_par.h:143
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition codec_par.h:99
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition codec_par.h:61
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
int eof_reached
true if was unable to read due to error or eof
Definition avio.h:238
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
#define av_mallocz(s)
#define avpriv_request_sample(...)
#define av_log(a,...)
int64_t bitrate
Definition av1_levels.c:47
int size
const char * g
Definition vf_curves.c:128