FFmpeg
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 
22 #include "libavutil/intreadwrite.h"
23 #include "libavutil/dict.h"
24 #include "libavutil/mem.h"
25 #include "avformat.h"
26 #include "avio_internal.h"
27 #include "demux.h"
28 #include "internal.h"
29 #include "pcm.h"
30 #include "aiff.h"
31 #include "id3v2.h"
32 #include "mov_chan.h"
33 #include "replaygain.h"
34 
35 #define AIFF 0
36 #define AIFF_C_VERSION1 0xA2805140
37 
38 typedef struct AIFFInputContext {
42 
44 {
45  if (bps <= 8)
46  return AV_CODEC_ID_PCM_S8;
47  if (bps <= 16)
48  return AV_CODEC_ID_PCM_S16BE;
49  if (bps <= 24)
50  return AV_CODEC_ID_PCM_S24BE;
51  if (bps <= 32)
52  return AV_CODEC_ID_PCM_S32BE;
53 
54  /* bigger than 32 isn't allowed */
55  return AV_CODEC_ID_NONE;
56 }
57 
58 /* returns the size of the found tag */
59 static int64_t get_tag(AVIOContext *pb, uint32_t * tag)
60 {
61  int64_t size;
62 
63  if (avio_feof(pb))
64  return AVERROR_INVALIDDATA;
65 
66  *tag = avio_rl32(pb);
67  size = avio_rb32(pb);
68 
69  return size;
70 }
71 
72 /* Metadata string read */
73 static void get_meta(AVFormatContext *s, const char *key, int64_t size)
74 {
75  uint8_t *str = NULL;
76 
77  if (size < SIZE_MAX)
78  str = av_malloc(size+1);
79 
80  if (str) {
81  int res = avio_read(s->pb, str, size);
82  if (res < 0){
83  av_free(str);
84  return;
85  }
86  size -= res;
87  str[res] = 0;
88  av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
89  }
90 
91  avio_skip(s->pb, size);
92 }
93 
94 /* Returns the number of sound data frames or negative on error */
96  unsigned version)
97 {
98  AVIOContext *pb = s->pb;
99  AVCodecParameters *par = s->streams[0]->codecpar;
100  AIFFInputContext *aiff = s->priv_data;
101  int exp;
102  uint64_t val;
103  int sample_rate;
104  unsigned int num_frames;
105  int channels;
106 
107  if (size & 1)
108  size++;
110  channels = avio_rb16(pb);
111  if (par->ch_layout.nb_channels && par->ch_layout.nb_channels != channels)
112  return AVERROR_INVALIDDATA;
114  num_frames = avio_rb32(pb);
115  par->bits_per_coded_sample = avio_rb16(pb);
116 
117  exp = avio_rb16(pb) - 16383 - 63;
118  val = avio_rb64(pb);
119  if (exp <-63 || exp >63) {
120  av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
121  return AVERROR_INVALIDDATA;
122  }
123  if (exp >= 0)
124  sample_rate = val << exp;
125  else
126  sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
127  if (sample_rate <= 0)
128  return AVERROR_INVALIDDATA;
129 
130  par->sample_rate = sample_rate;
131  if (size < 18)
132  return AVERROR_INVALIDDATA;
133  size -= 18;
134 
135  /* get codec id for AIFF-C */
136  if (size < 4) {
137  version = AIFF;
138  } else if (version == AIFF_C_VERSION1) {
139  par->codec_tag = avio_rl32(pb);
141  if (par->codec_id == AV_CODEC_ID_NONE)
142  avpriv_request_sample(s, "unknown or unsupported codec tag: %s",
143  av_fourcc2str(par->codec_tag));
144  size -= 4;
145  }
146 
150  aiff->block_duration = 1;
151  } else {
152  switch (par->codec_id) {
158  aiff->block_duration = 1;
159  break;
161  par->block_align = 34 * channels;
162  break;
163  case AV_CODEC_ID_MACE3:
164  par->block_align = 2 * channels;
165  break;
167  par->bits_per_coded_sample = 5;
170  case AV_CODEC_ID_MACE6:
173  par->block_align = 1 * channels;
174  break;
175  case AV_CODEC_ID_GSM:
176  par->block_align = 33;
177  break;
178  case AV_CODEC_ID_G728:
179  par->block_align = 5;
180  break;
182  par->block_align = 9;
183  break;
184  default:
185  aiff->block_duration = 1;
186  break;
187  }
188  if (par->block_align > 0)
190  par->block_align);
191  }
192 
193  /* Block align needs to be computed in all cases, as the definition
194  * is specific to applications -> here we use the WAVE format definition */
195  if (!par->block_align)
196  par->block_align = (av_get_bits_per_sample(par->codec_id) * channels) >> 3;
197 
198  if (aiff->block_duration) {
199  par->bit_rate = av_rescale(par->sample_rate, par->block_align * 8LL,
200  aiff->block_duration);
201  if (par->bit_rate < 0)
202  par->bit_rate = 0;
203  }
204 
205  /* Chunk is over */
206  if (size)
207  avio_skip(pb, size);
208 
209  return num_frames;
210 }
211 
212 static int aiff_probe(const AVProbeData *p)
213 {
214  /* check file header */
215  if (AV_RL32(p->buf) == MKTAG('F', 'O', 'R', 'M') &&
216  AV_RB32(p->buf + 4) >= 4 &&
217  p->buf[8] == 'A' && p->buf[9] == 'I' &&
218  p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
219  return AVPROBE_SCORE_MAX;
220  else
221  return 0;
222 }
223 
224 /* aiff input */
226 {
227  int ret;
229  int64_t offset = 0, position;
230  uint32_t tag;
231  unsigned version = AIFF_C_VERSION1;
232  AVIOContext *pb = s->pb;
233  AVStream * st;
234  AIFFInputContext *aiff = s->priv_data;
235  ID3v2ExtraMeta *id3v2_extra_meta;
236 
237  /* check FORM header */
238  filesize = get_tag(pb, &tag);
239  if (filesize < 4 || tag != MKTAG('F', 'O', 'R', 'M'))
240  return AVERROR_INVALIDDATA;
241 
242  /* AIFF data type */
243  tag = avio_rl32(pb);
244  if (tag == MKTAG('A', 'I', 'F', 'F')) /* Got an AIFF file */
245  version = AIFF;
246  else if (tag != MKTAG('A', 'I', 'F', 'C')) /* An AIFF-C file then */
247  return AVERROR_INVALIDDATA;
248 
249  filesize -= 4;
250 
251  st = avformat_new_stream(s, NULL);
252  if (!st)
253  return AVERROR(ENOMEM);
254 
255  while (filesize > 0) {
256  /* parse different chunks */
257  size = get_tag(pb, &tag);
258 
259  if (size == AVERROR_EOF && offset > 0 && st->codecpar->block_align) {
260  av_log(s, AV_LOG_WARNING, "header parser hit EOF\n");
261  goto got_sound;
262  }
263  if (size < 0)
264  return size;
265 
266  filesize -= size + 8;
267 
268  switch (tag) {
269  case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */
270  /* Then for the complete header info */
272  if (st->nb_frames < 0)
273  return st->nb_frames;
274  if (offset > 0) // COMM is after SSND
275  goto got_sound;
276  break;
277  case MKTAG('I', 'D', '3', ' '):
278  position = avio_tell(pb);
279  ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
280  if (id3v2_extra_meta)
281  if ((ret = ff_id3v2_parse_apic(s, id3v2_extra_meta)) < 0 ||
282  (ret = ff_id3v2_parse_chapters(s, id3v2_extra_meta)) < 0) {
283  ff_id3v2_free_extra_meta(&id3v2_extra_meta);
284  return ret;
285  }
286  ff_id3v2_free_extra_meta(&id3v2_extra_meta);
287  if (position + size > avio_tell(pb))
288  avio_skip(pb, position + size - avio_tell(pb));
289  break;
290  case MKTAG('F', 'V', 'E', 'R'): /* Version chunk */
291  version = avio_rb32(pb);
292  break;
293  case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */
294  get_meta(s, "title" , size);
295  break;
296  case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */
297  get_meta(s, "author" , size);
298  break;
299  case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */
300  get_meta(s, "copyright", size);
301  break;
302  case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */
303  get_meta(s, "comment" , size);
304  break;
305  case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
306  if (size < 8)
307  return AVERROR_INVALIDDATA;
308  aiff->data_end = avio_tell(pb) + size;
309  offset = avio_rb32(pb); /* Offset of sound data */
310  avio_rb32(pb); /* BlockSize... don't care */
311  offset += avio_tell(pb); /* Compute absolute data offset */
312  if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL)) /* Assume COMM already parsed */
313  goto got_sound;
314  if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
315  av_log(s, AV_LOG_ERROR, "file is not seekable\n");
316  return -1;
317  }
318  avio_skip(pb, size - 8);
319  break;
320  case MKTAG('w', 'a', 'v', 'e'):
321  if ((uint64_t)size > (1<<30))
322  return AVERROR_INVALIDDATA;
323  if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
324  return ret;
326  && size>=12*4 && !st->codecpar->block_align) {
327  st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
328  aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
329  } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
330  char rate = 0;
331  if (size >= 25)
332  rate = st->codecpar->extradata[24];
333  switch (rate) {
334  case 'H': // RATE_HALF
335  st->codecpar->block_align = 17;
336  break;
337  case 'F': // RATE_FULL
338  default:
339  st->codecpar->block_align = 35;
340  }
341  aiff->block_duration = 160;
342  st->codecpar->bit_rate = (int64_t)st->codecpar->sample_rate * (st->codecpar->block_align << 3) /
343  aiff->block_duration;
344  }
345  break;
346  case MKTAG('C','H','A','N'):
347  if ((ret = ff_mov_read_chan(s, pb, st, size)) < 0)
348  return ret;
349  break;
350  case MKTAG('A','P','C','M'): /* XA ADPCM compressed sound chunk */
352  aiff->data_end = avio_tell(pb) + size;
353  offset = avio_tell(pb) + 8;
354  /* This field is unknown and its data seems to be irrelevant */
355  avio_rb32(pb);
356  st->codecpar->block_align = avio_rb32(pb);
357 
358  goto got_sound;
359  break;
360  case MKTAG('A','P','P','L'):
361  if (size > 4) {
362  uint32_t chunk = avio_rl32(pb);
363 
364  size -= 4;
365  if (chunk == MKTAG('s','t','o','c')) {
366  int len = avio_r8(pb);
367 
368  size--;
369  if (len == 11 && size > 11) {
370  uint8_t chunk[11];
371 
372  ret = ffio_read_size(pb, chunk, 11);
373  if (ret < 0)
374  return ret;
375  size -= ret;
376  if (!memcmp(chunk, "VADPCMCODES", sizeof(chunk))) {
377  if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
378  return ret;
379  size -= ret;
380  }
381  }
382  }
383  }
384  avio_skip(pb, size);
385  break;
386  case 0:
387  if (offset > 0 && st->codecpar->block_align) // COMM && SSND
388  goto got_sound;
389  default: /* Jump */
390  avio_skip(pb, size);
391  }
392 
393  /* Skip required padding byte for odd-sized chunks. */
394  if (size & 1) {
395  filesize--;
396  avio_skip(pb, 1);
397  }
398  }
399 
400  ret = ff_replaygain_export(st, s->metadata);
401  if (ret < 0)
402  return ret;
403 
404 got_sound:
405  if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
406  av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
407  st->codecpar->block_align = 35;
408  } else if (st->codecpar->block_align <= 0) {
409  av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
410  return AVERROR_INVALIDDATA;
411  }
412  if (aiff->block_duration < 0)
413  return AVERROR_INVALIDDATA;
414 
415  /* Now positioned, get the sound data start and end */
416  avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
417  st->start_time = 0;
418  st->duration = st->nb_frames * aiff->block_duration;
419 
420  /* Position the stream at the first block */
421  avio_seek(pb, offset, SEEK_SET);
422 
423  return 0;
424 }
425 
426 #define MAX_SIZE 4096
427 
429  AVPacket *pkt)
430 {
431  AVStream *st = s->streams[0];
432  AIFFInputContext *aiff = s->priv_data;
433  int64_t max_size;
434  int res, size;
435 
436  /* calculate size of remaining data */
437  max_size = aiff->data_end - avio_tell(s->pb);
438  if (max_size <= 0)
439  return AVERROR_EOF;
440 
441  if (!st->codecpar->block_align) {
442  av_log(s, AV_LOG_ERROR, "block_align not set\n");
443  return AVERROR_INVALIDDATA;
444  }
445 
446  /* Now for that packet */
447  switch (st->codecpar->codec_id) {
449  case AV_CODEC_ID_GSM:
450  case AV_CODEC_ID_QDM2:
451  case AV_CODEC_ID_QCELP:
452  size = st->codecpar->block_align;
453  break;
454  default:
456  if (!size)
457  return AVERROR_INVALIDDATA;
458  }
459  size = FFMIN(max_size, size);
460  res = av_get_packet(s->pb, pkt, size);
461  if (res < 0)
462  return res;
463 
464  if (size >= st->codecpar->block_align)
466  /* Only one stream in an AIFF file */
467  pkt->stream_index = 0;
468  pkt->duration = (res / st->codecpar->block_align) * (int64_t) aiff->block_duration;
469  return 0;
470 }
471 
473  .p.name = "aiff",
474  .p.long_name = NULL_IF_CONFIG_SMALL("Audio IFF"),
475  .p.codec_tag = ff_aiff_codec_tags_list,
476  .priv_data_size = sizeof(AIFFInputContext),
481 };
AV_CODEC_ID_PCM_S16LE
@ AV_CODEC_ID_PCM_S16LE
Definition: codec_id.h:338
AV_CODEC_ID_MACE6
@ AV_CODEC_ID_MACE6
Definition: codec_id.h:470
AIFFInputContext::data_end
int64_t data_end
Definition: aiffdec.c:39
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
AV_CODEC_ID_PCM_F32BE
@ AV_CODEC_ID_PCM_F32BE
Definition: codec_id.h:358
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:69
AV_CODEC_ID_ADPCM_IMA_QT
@ AV_CODEC_ID_ADPCM_IMA_QT
Definition: codec_id.h:377
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
pcm.h
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
MAX_SIZE
#define MAX_SIZE
Definition: aiffdec.c:426
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
ff_replaygain_export
int ff_replaygain_export(AVStream *st, AVDictionary *metadata)
Parse replaygain tags and export them as per-stream side data.
Definition: replaygain.c:94
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
AV_CODEC_ID_ADPCM_N64
@ AV_CODEC_ID_ADPCM_N64
Definition: codec_id.h:433
int64_t
long long int64_t
Definition: coverity.c:34
id3v2.h
aiff_read_packet
static int aiff_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aiffdec.c:428
ff_id3v2_read
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:1149
AV_CODEC_ID_ADPCM_G722
@ AV_CODEC_ID_ADPCM_G722
Definition: codec_id.h:405
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:606
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:59
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
AIFFInputContext
Definition: aiffdec.c:38
ff_get_extradata
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...
Definition: demux_utils.c:340
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:463
avpriv_set_pts_info
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:781
AV_CODEC_ID_PCM_S16BE
@ AV_CODEC_ID_PCM_S16BE
Definition: codec_id.h:339
AIFF_C_VERSION1
#define AIFF_C_VERSION1
Definition: aiffdec.c:36
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:151
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:494
val
static double val(void *priv, double ch)
Definition: aeval.c:77
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:803
ff_id3v2_parse_chapters
int ff_id3v2_parse_chapters(AVFormatContext *s, ID3v2ExtraMeta *cur)
Create chapters for all CHAP tags found in the ID3v2 header.
Definition: id3v2.c:1202
AV_DICT_DONT_STRDUP_VAL
#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
av_get_bits_per_sample
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:549
AV_CODEC_ID_PCM_S8
@ AV_CODEC_ID_PCM_S8
Definition: codec_id.h:342
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:764
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
AV_CODEC_ID_MACE3
@ AV_CODEC_ID_MACE3
Definition: codec_id.h:469
AV_PKT_FLAG_CORRUPT
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: packet.h:644
ID3v2ExtraMeta
Definition: id3v2.h:84
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:42
ff_codec_aiff_tags
const AVCodecTag ff_codec_aiff_tags[]
Definition: aiff.c:26
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_aiff_demuxer
const FFInputFormat ff_aiff_demuxer
Definition: aiffdec.c:472
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:549
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
channels
channels
Definition: aptx.h:31
AV_CODEC_ID_PCM_MULAW
@ AV_CODEC_ID_PCM_MULAW
Definition: codec_id.h:344
key
const char * key
Definition: hwcontext_opencl.c:189
aiff_probe
static int aiff_probe(const AVProbeData *p)
Definition: aiffdec.c:212
if
if(ret)
Definition: filter_design.txt:179
AVFormatContext
Format I/O context.
Definition: avformat.h:1263
AV_CODEC_ID_PCM_ALAW
@ AV_CODEC_ID_PCM_ALAW
Definition: codec_id.h:345
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:767
get_tag
static int64_t get_tag(AVIOContext *pb, uint32_t *tag)
Definition: aiffdec.c:59
NULL
#define NULL
Definition: coverity.c:32
get_aiff_header
static int get_aiff_header(AVFormatContext *s, int64_t size, unsigned version)
Definition: aiffdec.c:95
AV_CODEC_ID_ADPCM_IMA_WS
@ AV_CODEC_ID_ADPCM_IMA_WS
Definition: codec_id.h:381
aiff.h
AIFFInputContext::block_duration
int block_duration
Definition: aiffdec.c:40
ff_id3v2_parse_apic
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:1171
avio_rb64
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:911
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
AV_CODEC_ID_G728
@ AV_CODEC_ID_G728
Definition: codec_id.h:567
AV_CODEC_ID_QDM2
@ AV_CODEC_ID_QDM2
Definition: codec_id.h:479
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
exp
int8_t exp
Definition: eval.c:76
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
AV_CODEC_ID_ADPCM_XA
@ AV_CODEC_ID_ADPCM_XA
Definition: codec_id.h:385
AV_CODEC_ID_GSM
@ AV_CODEC_ID_GSM
as in Berlin toast format
Definition: codec_id.h:478
AVStream::nb_frames
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:805
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:49
AV_CODEC_ID_QCELP
@ AV_CODEC_ID_QCELP
Definition: codec_id.h:484
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:733
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
ff_codec_get_id
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:143
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:261
bps
unsigned bps
Definition: movenc.c:2047
size
int size
Definition: twinvq_data.h:10344
ID3v2_DEFAULT_MAGIC
#define ID3v2_DEFAULT_MAGIC
Default magic bytes for ID3v2 header: "ID3".
Definition: id3v2.h:35
AV_CODEC_ID_QDMC
@ AV_CODEC_ID_QDMC
Definition: codec_id.h:510
aiff_codec_get_id
static enum AVCodecID aiff_codec_get_id(int bps)
Definition: aiffdec.c:43
AV_RB32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:96
av_get_audio_frame_duration2
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
This function is the same as av_get_audio_frame_duration(), except it works with AVCodecParameters in...
Definition: utils.c:816
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:70
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:606
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:594
read_header
static int read_header(FFV1Context *f, RangeCoder *c)
Definition: ffv1dec.c:498
version
version
Definition: libkvazaar.c:313
filesize
static int64_t filesize(AVIOContext *pb)
Definition: ffmpeg_mux.c:51
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:50
avio_internal.h
AIFF
#define AIFF
Definition: aiffdec.c:35
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:191
AV_CODEC_ID_PCM_F64BE
@ AV_CODEC_ID_PCM_F64BE
Definition: codec_id.h:360
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
AV_CODEC_ID_PCM_S32BE
@ AV_CODEC_ID_PCM_S32BE
Definition: codec_id.h:347
demux.h
len
int len
Definition: vorbis_enc_data.h:426
av_rescale
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
av_get_packet
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
get_meta
static void get_meta(AVFormatContext *s, const char *key, int64_t size)
Definition: aiffdec.c:73
mov_chan.h
tag
uint32_t tag
Definition: movenc.c:2046
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:744
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:236
ff_pcm_read_seek
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:73
av_malloc
void * av_malloc(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:98
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:749
avformat.h
dict.h
AV_CODEC_ID_CBD2_DPCM
@ AV_CODEC_ID_CBD2_DPCM
Definition: codec_id.h:457
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
AV_CODEC_ID_ADPCM_G726LE
@ AV_CODEC_ID_ADPCM_G726LE
Definition: codec_id.h:412
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:41
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:615
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
AVPacket::stream_index
int stream_index
Definition: packet.h:590
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:321
read_probe
static int read_probe(const AVProbeData *p)
Definition: cdg.c:30
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:110
mem.h
AV_CODEC_ID_SDX2_DPCM
@ AV_CODEC_ID_SDX2_DPCM
Definition: codec_id.h:453
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
ff_aiff_codec_tags_list
const AVCodecTag *const ff_aiff_codec_tags_list[]
Definition: aiff.c:57
AVPacket
This structure stores compressed data.
Definition: packet.h:565
av_dict_set
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
ff_id3v2_free_extra_meta
void ff_id3v2_free_extra_meta(ID3v2ExtraMeta **extra_meta)
Free memory allocated parsing special (non-text) metadata.
Definition: id3v2.c:1155
FFInputFormat
Definition: demux.h:66
replaygain.h
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: codec_par.h:97
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55
ffio_read_size
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:665
AVStream::start_time
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition: avformat.h:793
pkt
static AVPacket * pkt
Definition: demux_decode.c:55
AV_CODEC_ID_PCM_S24BE
@ AV_CODEC_ID_PCM_S24BE
Definition: codec_id.h:351
av_fourcc2str
#define av_fourcc2str(fourcc)
Definition: avutil.h:347
ff_mov_read_chan
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:524
aiff_read_header
static int aiff_read_header(AVFormatContext *s)
Definition: aiffdec.c:225
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:349