FFmpeg
Loading...
Searching...
No Matches
aiffdec.c
Go to the documentation of this file.
1/*
2 * AIFF/AIFF-C demuxer
3 * Copyright (c) 2006 Patrick Guimond
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
24#include "libavutil/dict.h"
25#include "libavutil/mem.h"
26#include "avformat.h"
27#include "avio_internal.h"
28#include "demux.h"
29#include "internal.h"
30#include "pcm.h"
31#include "aiff.h"
32#include "id3v2.h"
33#include "mov_chan.h"
34#include "replaygain.h"
35
36#define AIFF 0
37#define AIFF_C_VERSION1 0xA2805140
38
43
45{
46 if (bps <= 8)
47 return AV_CODEC_ID_PCM_S8;
48 if (bps <= 16)
50 if (bps <= 24)
52 if (bps <= 32)
54
55 /* bigger than 32 isn't allowed */
56 return AV_CODEC_ID_NONE;
57}
58
59/* returns the size of the found tag */
60static int64_t get_tag(AVIOContext *pb, uint32_t * tag)
61{
63
64 if (avio_feof(pb))
66
67 *tag = avio_rl32(pb);
68 size = avio_rb32(pb);
69
70 return size;
71}
72
73/* Metadata string read */
74static void get_meta(AVFormatContext *s, const char *key, int64_t size)
75{
76 uint8_t *str = NULL;
77
78 if (size < SIZE_MAX)
79 str = av_malloc(size+1);
80
81 if (str) {
82 int res = avio_read(s->pb, str, size);
83 if (res < 0){
84 av_free(str);
85 return;
86 }
87 size -= res;
88 str[res] = 0;
89 av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
90 }
91
92 avio_skip(s->pb, size);
93}
94
95/* Returns the number of sound data frames or negative on error */
97 unsigned version)
98{
99 AVIOContext *pb = s->pb;
100 AVCodecParameters *par = s->streams[0]->codecpar;
101 AIFFInputContext *aiff = s->priv_data;
102 int exp;
103 uint64_t val;
104 int sample_rate;
105 unsigned int num_frames;
106 int channels;
107
108 if (size & 1)
109 size++;
111 channels = avio_rb16(pb);
113 return AVERROR_INVALIDDATA;
115 num_frames = avio_rb32(pb);
117
118 exp = avio_rb16(pb) - 16383 - 63;
119 val = avio_rb64(pb);
120 if (exp <-63 || exp >63) {
121 av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
122 return AVERROR_INVALIDDATA;
123 }
124 if (exp >= 0)
125 sample_rate = val << exp;
126 else
127 sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
128 if (sample_rate <= 0)
129 return AVERROR_INVALIDDATA;
130
131 par->sample_rate = sample_rate;
132 if (size < 18)
133 return AVERROR_INVALIDDATA;
134 size -= 18;
135
136 /* get codec id for AIFF-C */
137 if (size < 4) {
138 version = AIFF;
139 } else if (version == AIFF_C_VERSION1) {
140 par->codec_tag = avio_rl32(pb);
142 if (par->codec_id == AV_CODEC_ID_NONE)
143 avpriv_request_sample(s, "unknown or unsupported codec tag: %s",
145 size -= 4;
146 }
147
151 aiff->block_duration = 1;
152 } else {
153 switch (par->codec_id) {
159 aiff->block_duration = 1;
160 break;
162 par->block_align = 34 * channels;
163 break;
165 par->block_align = 2 * channels;
166 break;
168 par->bits_per_coded_sample = 5;
175 par->block_align = 1 * channels;
176 break;
177 case AV_CODEC_ID_GSM:
178 par->block_align = 33;
179 break;
180 case AV_CODEC_ID_G728:
181 par->block_align = 5;
182 break;
184 par->block_align = 9;
185 break;
186 default:
187 aiff->block_duration = 1;
188 break;
189 }
190 if (par->block_align > 0)
192 par->block_align);
193 }
194
195 /* Block align needs to be computed in all cases, as the definition
196 * is specific to applications -> here we use the WAVE format definition */
197 if (!par->block_align)
199
200 if (aiff->block_duration) {
201 par->bit_rate = av_rescale(par->sample_rate, par->block_align * 8LL,
202 aiff->block_duration);
203 if (par->bit_rate < 0)
204 par->bit_rate = 0;
205 }
206
207 /* Chunk is over */
208 if (size)
209 avio_skip(pb, size);
210
211 return num_frames;
212}
213
214static int aiff_probe(const AVProbeData *p)
215{
216 /* check file header */
217 if (AV_RL32(p->buf) == MKTAG('F', 'O', 'R', 'M') &&
218 AV_RB32(p->buf + 4) >= 4 &&
219 p->buf[8] == 'A' && p->buf[9] == 'I' &&
220 p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
221 return AVPROBE_SCORE_MAX;
222 else
223 return 0;
224}
225
226/* aiff input */
228{
229 int ret;
231 int64_t offset = 0, position;
232 uint32_t tag;
233 unsigned version = AIFF_C_VERSION1;
234 AVIOContext *pb = s->pb;
235 AVStream * st;
236 AIFFInputContext *aiff = s->priv_data;
237 ID3v2ExtraMeta *id3v2_extra_meta;
238
239 /* check FORM header */
240 filesize = get_tag(pb, &tag);
241 if (filesize < 4 || tag != MKTAG('F', 'O', 'R', 'M'))
242 return AVERROR_INVALIDDATA;
243
244 /* AIFF data type */
245 tag = avio_rl32(pb);
246 if (tag == MKTAG('A', 'I', 'F', 'F')) /* Got an AIFF file */
247 version = AIFF;
248 else if (tag != MKTAG('A', 'I', 'F', 'C')) /* An AIFF-C file then */
249 return AVERROR_INVALIDDATA;
250
251 filesize -= 4;
252
254 if (!st)
255 return AVERROR(ENOMEM);
256
257 while (filesize > 0) {
258 /* parse different chunks */
259 size = get_tag(pb, &tag);
260
261 if (size == AVERROR_EOF && offset > 0 && st->codecpar->block_align) {
262 av_log(s, AV_LOG_WARNING, "header parser hit EOF\n");
263 goto got_sound;
264 }
265 if (size < 0)
266 return size;
267
268 filesize -= size + 8;
269
270 switch (tag) {
271 case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */
272 /* Then for the complete header info */
274 if (st->nb_frames < 0)
275 return st->nb_frames;
276 if (offset > 0) // COMM is after SSND
277 goto got_sound;
278 break;
279 case MKTAG('I', 'D', '3', ' '):
280 position = avio_tell(pb);
281 ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
282 if (id3v2_extra_meta)
283 if ((ret = ff_id3v2_parse_apic(s, id3v2_extra_meta)) < 0 ||
284 (ret = ff_id3v2_parse_chapters(s, id3v2_extra_meta)) < 0) {
285 ff_id3v2_free_extra_meta(&id3v2_extra_meta);
286 return ret;
287 }
288 ff_id3v2_free_extra_meta(&id3v2_extra_meta);
289 if (position + size > avio_tell(pb))
290 avio_skip(pb, position + size - avio_tell(pb));
291 break;
292 case MKTAG('F', 'V', 'E', 'R'): /* Version chunk */
293 version = avio_rb32(pb);
294 break;
295 case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */
296 get_meta(s, "title" , size);
297 break;
298 case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */
299 get_meta(s, "author" , size);
300 break;
301 case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */
302 get_meta(s, "copyright", size);
303 break;
304 case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */
305 get_meta(s, "comment" , size);
306 break;
307 case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
308 if (size < 8)
309 return AVERROR_INVALIDDATA;
310 aiff->data_end = avio_tell(pb) + size;
311 offset = avio_rb32(pb); /* Offset of sound data */
312 avio_rb32(pb); /* BlockSize... don't care */
313 offset += avio_tell(pb); /* Compute absolute data offset */
314 if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL)) /* Assume COMM already parsed */
315 goto got_sound;
316 if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
317 av_log(s, AV_LOG_ERROR, "file is not seekable\n");
318 return -1;
319 }
320 avio_skip(pb, size - 8);
321 break;
322 case MKTAG('w', 'a', 'v', 'e'):
323 if ((uint64_t)size > (1<<30))
324 return AVERROR_INVALIDDATA;
325 if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
326 return ret;
328 && size>=12*4 && !st->codecpar->block_align) {
330 aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
331 } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
332 char rate = 0;
333 if (size >= 25)
334 rate = st->codecpar->extradata[24];
335 switch (rate) {
336 case 'H': // RATE_HALF
337 st->codecpar->block_align = 17;
338 break;
339 case 'F': // RATE_FULL
340 default:
341 st->codecpar->block_align = 35;
342 }
343 aiff->block_duration = 160;
345 aiff->block_duration;
346 }
347 break;
348 case MKTAG('C','H','A','N'):
349 if ((ret = ff_mov_read_chan(s, pb, st, size)) < 0)
350 return ret;
351 break;
352 case MKTAG('A','P','C','M'): /* XA ADPCM compressed sound chunk */
354 aiff->data_end = avio_tell(pb) + size;
355 offset = avio_tell(pb) + 8;
356 /* This field is unknown and its data seems to be irrelevant */
357 avio_rb32(pb);
358 st->codecpar->block_align = avio_rb32(pb);
359
360 goto got_sound;
361 break;
362 case MKTAG('A','P','P','L'):
363 if (size > 4) {
364 uint32_t chunk = avio_rl32(pb);
365
366 size -= 4;
367 if (chunk == MKTAG('s','t','o','c')) {
368 int len = avio_r8(pb);
369
370 size--;
371 if (len == 11 && size > 11) {
372 uint8_t chunk[11];
373
374 ret = ffio_read_size(pb, chunk, 11);
375 if (ret < 0)
376 return ret;
377 size -= ret;
378 if (!memcmp(chunk, "VADPCMCODES", sizeof(chunk))) {
379 if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
380 return ret;
381 size -= ret;
382 }
383 }
384 }
385 }
386 avio_skip(pb, size);
387 break;
388 case 0:
389 if (offset > 0 && st->codecpar->block_align) // COMM && SSND
390 goto got_sound;
392 default: /* Jump */
393 avio_skip(pb, size);
394 }
395
396 /* Skip required padding byte for odd-sized chunks. */
397 if (size & 1) {
398 filesize--;
399 avio_skip(pb, 1);
400 }
401 }
402
403 ret = ff_replaygain_export(st, s->metadata);
404 if (ret < 0)
405 return ret;
406
407got_sound:
409 av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
410 st->codecpar->block_align = 35;
411 } else if (st->codecpar->block_align <= 0) {
412 av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
413 return AVERROR_INVALIDDATA;
414 }
415 if (aiff->block_duration < 0)
416 return AVERROR_INVALIDDATA;
417
418 /* Now positioned, get the sound data start and end */
420 st->start_time = 0;
421 st->duration = st->nb_frames * aiff->block_duration;
422
423 /* Position the stream at the first block */
424 avio_seek(pb, offset, SEEK_SET);
425
426 return 0;
427}
428
429#define MAX_SIZE 4096
430
432 AVPacket *pkt)
433{
434 AVStream *st = s->streams[0];
435 AIFFInputContext *aiff = s->priv_data;
436 int64_t max_size;
437 int res, size;
438
439 /* calculate size of remaining data */
440 max_size = aiff->data_end - avio_tell(s->pb);
441 if (max_size <= 0)
442 return AVERROR_EOF;
443
444 if (!st->codecpar->block_align) {
445 av_log(s, AV_LOG_ERROR, "block_align not set\n");
446 return AVERROR_INVALIDDATA;
447 }
448
449 /* Now for that packet */
450 switch (st->codecpar->codec_id) {
452 case AV_CODEC_ID_GSM:
453 case AV_CODEC_ID_QDM2:
456 break;
457 default:
459 if (!size)
460 return AVERROR_INVALIDDATA;
461 }
462 size = FFMIN(max_size, size);
463 res = av_get_packet(s->pb, pkt, size);
464 if (res < 0)
465 return res;
466
467 if (size >= st->codecpar->block_align)
468 pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
469 /* Only one stream in an AIFF file */
470 pkt->stream_index = 0;
471 pkt->duration = (res / st->codecpar->block_align) * (int64_t) aiff->block_duration;
472 return 0;
473}
474
476 .p.name = "aiff",
477 .p.long_name = NULL_IF_CONFIG_SMALL("Audio IFF"),
478 .p.codec_tag = ff_aiff_codec_tags_list,
479 .priv_data_size = sizeof(AIFFInputContext),
484};
static double val(void *priv, double ch)
Definition aeval.c:77
const AVCodecTag ff_codec_aiff_tags[]
Definition aiff.c:26
const AVCodecTag *const ff_aiff_codec_tags_list[]
Definition aiff.c:57
common header for AIFF muxer and demuxer
static int aiff_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition aiffdec.c:431
static int aiff_read_header(AVFormatContext *s)
Definition aiffdec.c:227
static int aiff_probe(const AVProbeData *p)
Definition aiffdec.c:214
static void get_meta(AVFormatContext *s, const char *key, int64_t size)
Definition aiffdec.c:74
#define AIFF
Definition aiffdec.c:36
static int get_aiff_header(AVFormatContext *s, int64_t size, unsigned version)
Definition aiffdec.c:96
#define AIFF_C_VERSION1
Definition aiffdec.c:37
static int64_t get_tag(AVIOContext *pb, uint32_t *tag)
Definition aiffdec.c:60
const FFInputFormat ff_aiff_demuxer
Definition aiffdec.c:475
static enum AVCodecID aiff_codec_get_id(int bps)
Definition aiffdec.c:44
channels
Definition aptx.h:31
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition utils.c:98
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition avio.h:41
uint64_t avio_rb64(AVIOContext *s)
Definition aviobuf.c:911
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
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 avio_r8(AVIOContext *s)
Definition aviobuf.c:606
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define s(width, name)
Definition cbs_vp9.c:198
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
#define NULL
Definition coverity.c:32
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...
static AVPacket * pkt
Public dictionary API.
int8_t exp
Definition eval.c:76
static int64_t filesize(AVIOContext *pb)
Definition ffmpeg_mux.c:51
const char * key
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition utils.c:556
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_PCM_S24BE
Definition codec_id.h:343
@ AV_CODEC_ID_ADPCM_IMA_WS
Definition codec_id.h:374
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
@ AV_CODEC_ID_GSM
as in Berlin toast format
Definition codec_id.h:471
@ AV_CODEC_ID_PCM_F32BE
Definition codec_id.h:350
@ AV_CODEC_ID_ADPCM_G722
Definition codec_id.h:398
@ AV_CODEC_ID_G728
Definition codec_id.h:560
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_PCM_S16BE
Definition codec_id.h:331
@ AV_CODEC_ID_ADPCM_XA
Definition codec_id.h:378
@ AV_CODEC_ID_SDX2_DPCM
Definition codec_id.h:446
@ AV_CODEC_ID_ADPCM_G726LE
Definition codec_id.h:405
@ AV_CODEC_ID_PCM_S8
Definition codec_id.h:334
@ AV_CODEC_ID_PCM_ALAW
Definition codec_id.h:337
@ AV_CODEC_ID_ADPCM_IMA_QT
Definition codec_id.h:370
@ AV_CODEC_ID_PCM_F64BE
Definition codec_id.h:352
@ AV_CODEC_ID_QCELP
Definition codec_id.h:477
@ AV_CODEC_ID_MACE3
Definition codec_id.h:462
@ AV_CODEC_ID_MACE6
Definition codec_id.h:463
@ AV_CODEC_ID_QDM2
Definition codec_id.h:472
@ AV_CODEC_ID_PCM_S32BE
Definition codec_id.h:339
@ AV_CODEC_ID_ADPCM_N64
Definition codec_id.h:426
@ AV_CODEC_ID_CBD2_DPCM
Definition codec_id.h:450
@ AV_CODEC_ID_QDMC
Definition codec_id.h:503
@ AV_CODEC_ID_PCM_MULAW
Definition codec_id.h:336
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition packet.h:651
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#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_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
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
#define av_fourcc2str(fourcc)
Definition avutil.h:323
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
void ff_id3v2_read(AVFormatContext *s, const char *magic, ID3v2ExtraMeta **extra_meta, unsigned int max_search_size)
Read an ID3v2 tag, including supported extra metadata.
Definition id3v2.c:1180
void ff_id3v2_free_extra_meta(ID3v2ExtraMeta **extra_meta)
Free memory allocated parsing special (non-text) metadata.
Definition id3v2.c:1186
int ff_id3v2_parse_apic(AVFormatContext *s, ID3v2ExtraMeta *extra_meta)
Create a stream for each APIC (attached picture) extracted from the ID3v2 header.
Definition id3v2.c:1202
int ff_id3v2_parse_chapters(AVFormatContext *s, ID3v2ExtraMeta *cur)
Create chapters for all CHAP tags found in the ID3v2 header.
Definition id3v2.c:1233
#define ID3v2_DEFAULT_MAGIC
Default magic bytes for ID3v2 header: "ID3".
Definition id3v2.h:35
#define AV_RL32(p)
#define AV_RB32(p)
unsigned offset
Definition libaomenc.c:763
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
Definition utils.c:823
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition utils.c:143
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition pcm.c:73
Macro definitions for various function/variable attributes.
#define av_fallthrough
Definition attributes.h:67
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition libcdio.c:151
version
Definition libkvazaar.c:313
#define FFMIN(a, b)
Definition macros.h:49
#define MKTAG(a, b, c, d)
Definition macros.h:55
Memory handling functions.
int ff_mov_read_chan(AVFormatContext *s, AVIOContext *pb, AVStream *st, int64_t size)
Read 'chan' tag from the input stream.
Definition mov_chan.c:550
uint32_t tag
Definition movenc.c:2087
unsigned bps
Definition movenc.c:2088
#define av_malloc(s)
Definition ops_static.c:52
int ff_replaygain_export(AVStream *st, AVDictionary *metadata)
Parse replaygain tags and export them as per-stream side data.
Definition replaygain.c:94
int64_t data_end
Definition aiffdec.c:40
int nb_channels
Number of channels in this layout.
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
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
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 seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition avio.h:261
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t nb_frames
number of frames in this stream if known or 0
Definition avformat.h:827
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition avformat.h:815
#define av_free(p)
#define avpriv_request_sample(...)
#define av_log(a,...)
int size
#define MAX_SIZE
Definition vf_colormap.c:35
int len