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/mathematics.h"
24 #include "libavutil/dict.h"
25 #include "avformat.h"
26 #include "internal.h"
27 #include "pcm.h"
28 #include "aiff.h"
29 #include "isom.h"
30 #include "id3v2.h"
31 #include "mov_chan.h"
32 
33 #define AIFF 0
34 #define AIFF_C_VERSION1 0xA2805140
35 
36 typedef struct AIFFInputContext {
37  int64_t data_end;
40 
42 {
43  if (bps <= 8)
44  return AV_CODEC_ID_PCM_S8;
45  if (bps <= 16)
46  return AV_CODEC_ID_PCM_S16BE;
47  if (bps <= 24)
48  return AV_CODEC_ID_PCM_S24BE;
49  if (bps <= 32)
50  return AV_CODEC_ID_PCM_S32BE;
51 
52  /* bigger than 32 isn't allowed */
53  return AV_CODEC_ID_NONE;
54 }
55 
56 /* returns the size of the found tag */
57 static int get_tag(AVIOContext *pb, uint32_t * tag)
58 {
59  int size;
60 
61  if (avio_feof(pb))
62  return AVERROR(EIO);
63 
64  *tag = avio_rl32(pb);
65  size = avio_rb32(pb);
66 
67  if (size < 0)
68  size = 0x7fffffff;
69 
70  return size;
71 }
72 
73 /* Metadata string read */
74 static void get_meta(AVFormatContext *s, const char *key, int size)
75 {
76  uint8_t *str = av_malloc(size+1);
77 
78  if (str) {
79  int res = avio_read(s->pb, str, size);
80  if (res < 0){
81  av_free(str);
82  return;
83  }
84  size -= res;
85  str[res] = 0;
86  av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
87  }
88 
89  avio_skip(s->pb, size);
90 }
91 
92 /* Returns the number of sound data frames or negative on error */
94  unsigned version)
95 {
96  AVIOContext *pb = s->pb;
97  AVCodecParameters *par = s->streams[0]->codecpar;
98  AIFFInputContext *aiff = s->priv_data;
99  int exp;
100  uint64_t val;
101  int sample_rate;
102  unsigned int num_frames;
103 
104  if (size == INT_MAX)
105  return AVERROR_INVALIDDATA;
106 
107  if (size & 1)
108  size++;
110  par->channels = avio_rb16(pb);
111  num_frames = avio_rb32(pb);
112  par->bits_per_coded_sample = avio_rb16(pb);
113 
114  exp = avio_rb16(pb) - 16383 - 63;
115  val = avio_rb64(pb);
116  if (exp <-63 || exp >63) {
117  av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
118  return AVERROR_INVALIDDATA;
119  }
120  if (exp >= 0)
121  sample_rate = val << exp;
122  else
123  sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
124  if (sample_rate <= 0)
125  return AVERROR_INVALIDDATA;
126 
127  par->sample_rate = sample_rate;
128  if (size < 18)
129  return AVERROR_INVALIDDATA;
130  size -= 18;
131 
132  /* get codec id for AIFF-C */
133  if (size < 4) {
134  version = AIFF;
135  } else if (version == AIFF_C_VERSION1) {
136  par->codec_tag = avio_rl32(pb);
138  if (par->codec_id == AV_CODEC_ID_NONE)
139  avpriv_request_sample(s, "unknown or unsupported codec tag: %s",
140  av_fourcc2str(par->codec_tag));
141  size -= 4;
142  }
143 
147  aiff->block_duration = 1;
148  } else {
149  switch (par->codec_id) {
155  aiff->block_duration = 1;
156  break;
158  par->block_align = 34 * par->channels;
159  break;
160  case AV_CODEC_ID_MACE3:
161  par->block_align = 2 * par->channels;
162  break;
164  par->bits_per_coded_sample = 5;
167  case AV_CODEC_ID_MACE6:
169  par->block_align = 1 * par->channels;
170  break;
171  case AV_CODEC_ID_GSM:
172  par->block_align = 33;
173  break;
174  default:
175  aiff->block_duration = 1;
176  break;
177  }
178  if (par->block_align > 0)
180  par->block_align);
181  }
182 
183  /* Block align needs to be computed in all cases, as the definition
184  * is specific to applications -> here we use the WAVE format definition */
185  if (!par->block_align)
186  par->block_align = (av_get_bits_per_sample(par->codec_id) * par->channels) >> 3;
187 
188  if (aiff->block_duration) {
189  par->bit_rate = av_rescale(par->sample_rate, par->block_align * 8LL,
190  aiff->block_duration);
191  if (par->bit_rate < 0)
192  par->bit_rate = 0;
193  }
194 
195  /* Chunk is over */
196  if (size)
197  avio_skip(pb, size);
198 
199  return num_frames;
200 }
201 
202 static int aiff_probe(const AVProbeData *p)
203 {
204  /* check file header */
205  if (p->buf[0] == 'F' && p->buf[1] == 'O' &&
206  p->buf[2] == 'R' && p->buf[3] == 'M' &&
207  p->buf[8] == 'A' && p->buf[9] == 'I' &&
208  p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
209  return AVPROBE_SCORE_MAX;
210  else
211  return 0;
212 }
213 
214 /* aiff input */
216 {
217  int ret, size, filesize;
218  int64_t offset = 0, position;
219  uint32_t tag;
220  unsigned version = AIFF_C_VERSION1;
221  AVIOContext *pb = s->pb;
222  AVStream * st;
223  AIFFInputContext *aiff = s->priv_data;
224  ID3v2ExtraMeta *id3v2_extra_meta = NULL;
225 
226  /* check FORM header */
227  filesize = get_tag(pb, &tag);
228  if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
229  return AVERROR_INVALIDDATA;
230 
231  /* AIFF data type */
232  tag = avio_rl32(pb);
233  if (tag == MKTAG('A', 'I', 'F', 'F')) /* Got an AIFF file */
234  version = AIFF;
235  else if (tag != MKTAG('A', 'I', 'F', 'C')) /* An AIFF-C file then */
236  return AVERROR_INVALIDDATA;
237 
238  filesize -= 4;
239 
240  st = avformat_new_stream(s, NULL);
241  if (!st)
242  return AVERROR(ENOMEM);
243 
244  while (filesize > 0) {
245  /* parse different chunks */
246  size = get_tag(pb, &tag);
247 
248  if (size == AVERROR_EOF && offset > 0 && st->codecpar->block_align) {
249  av_log(s, AV_LOG_WARNING, "header parser hit EOF\n");
250  goto got_sound;
251  }
252  if (size < 0)
253  return size;
254 
255  filesize -= size + 8;
256 
257  switch (tag) {
258  case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */
259  /* Then for the complete header info */
261  if (st->nb_frames < 0)
262  return st->nb_frames;
263  if (offset > 0) // COMM is after SSND
264  goto got_sound;
265  break;
266  case MKTAG('I', 'D', '3', ' '):
267  position = avio_tell(pb);
268  ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
269  if (id3v2_extra_meta)
270  if ((ret = ff_id3v2_parse_apic(s, &id3v2_extra_meta)) < 0 ||
271  (ret = ff_id3v2_parse_chapters(s, &id3v2_extra_meta)) < 0) {
272  ff_id3v2_free_extra_meta(&id3v2_extra_meta);
273  return ret;
274  }
275  ff_id3v2_free_extra_meta(&id3v2_extra_meta);
276  if (position + size > avio_tell(pb))
277  avio_skip(pb, position + size - avio_tell(pb));
278  break;
279  case MKTAG('F', 'V', 'E', 'R'): /* Version chunk */
280  version = avio_rb32(pb);
281  break;
282  case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */
283  get_meta(s, "title" , size);
284  break;
285  case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */
286  get_meta(s, "author" , size);
287  break;
288  case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */
289  get_meta(s, "copyright", size);
290  break;
291  case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */
292  get_meta(s, "comment" , size);
293  break;
294  case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
295  if (size < 8)
296  return AVERROR_INVALIDDATA;
297  aiff->data_end = avio_tell(pb) + size;
298  offset = avio_rb32(pb); /* Offset of sound data */
299  avio_rb32(pb); /* BlockSize... don't care */
300  offset += avio_tell(pb); /* Compute absolute data offset */
301  if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL)) /* Assume COMM already parsed */
302  goto got_sound;
303  if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
304  av_log(s, AV_LOG_ERROR, "file is not seekable\n");
305  return -1;
306  }
307  avio_skip(pb, size - 8);
308  break;
309  case MKTAG('w', 'a', 'v', 'e'):
310  if ((uint64_t)size > (1<<30))
311  return -1;
312  if (ff_get_extradata(s, st->codecpar, pb, size) < 0)
313  return AVERROR(ENOMEM);
315  && size>=12*4 && !st->codecpar->block_align) {
316  st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
317  aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
318  } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
319  char rate = 0;
320  if (size >= 25)
321  rate = st->codecpar->extradata[24];
322  switch (rate) {
323  case 'H': // RATE_HALF
324  st->codecpar->block_align = 17;
325  break;
326  case 'F': // RATE_FULL
327  default:
328  st->codecpar->block_align = 35;
329  }
330  aiff->block_duration = 160;
331  st->codecpar->bit_rate = (int64_t)st->codecpar->sample_rate * (st->codecpar->block_align << 3) /
332  aiff->block_duration;
333  }
334  break;
335  case MKTAG('C','H','A','N'):
336  if(ff_mov_read_chan(s, pb, st, size) < 0)
337  return AVERROR_INVALIDDATA;
338  break;
339  case MKTAG('A','P','C','M'): /* XA ADPCM compressed sound chunk */
341  aiff->data_end = avio_tell(pb) + size;
342  offset = avio_tell(pb) + 8;
343  /* This field is unknown and its data seems to be irrelevant */
344  avio_rb32(pb);
345  st->codecpar->block_align = avio_rb32(pb);
346 
347  goto got_sound;
348  break;
349  case 0:
350  if (offset > 0 && st->codecpar->block_align) // COMM && SSND
351  goto got_sound;
352  default: /* Jump */
353  avio_skip(pb, size);
354  }
355 
356  /* Skip required padding byte for odd-sized chunks. */
357  if (size & 1) {
358  filesize--;
359  avio_skip(pb, 1);
360  }
361  }
362 
363 got_sound:
364  if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
365  av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
366  st->codecpar->block_align = 35;
367  } else if (st->codecpar->block_align <= 0) {
368  av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
369  return -1;
370  }
371 
372  /* Now positioned, get the sound data start and end */
373  avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
374  st->start_time = 0;
375  st->duration = st->nb_frames * aiff->block_duration;
376 
377  /* Position the stream at the first block */
378  avio_seek(pb, offset, SEEK_SET);
379 
380  return 0;
381 }
382 
383 #define MAX_SIZE 4096
384 
386  AVPacket *pkt)
387 {
388  AVStream *st = s->streams[0];
389  AIFFInputContext *aiff = s->priv_data;
390  int64_t max_size;
391  int res, size;
392 
393  /* calculate size of remaining data */
394  max_size = aiff->data_end - avio_tell(s->pb);
395  if (max_size <= 0)
396  return AVERROR_EOF;
397 
398  if (!st->codecpar->block_align) {
399  av_log(s, AV_LOG_ERROR, "block_align not set\n");
400  return AVERROR_INVALIDDATA;
401  }
402 
403  /* Now for that packet */
404  switch (st->codecpar->codec_id) {
406  case AV_CODEC_ID_GSM:
407  case AV_CODEC_ID_QDM2:
408  case AV_CODEC_ID_QCELP:
409  size = st->codecpar->block_align;
410  break;
411  default:
413  if (!size)
414  return AVERROR_INVALIDDATA;
415  }
416  size = FFMIN(max_size, size);
417  res = av_get_packet(s->pb, pkt, size);
418  if (res < 0)
419  return res;
420 
421  if (size >= st->codecpar->block_align)
423  /* Only one stream in an AIFF file */
424  pkt->stream_index = 0;
425  pkt->duration = (res / st->codecpar->block_align) * aiff->block_duration;
426  return 0;
427 }
428 
430  .name = "aiff",
431  .long_name = NULL_IF_CONFIG_SMALL("Audio IFF"),
432  .priv_data_size = sizeof(AIFFInputContext),
437  .codec_tag = (const AVCodecTag* const []){ ff_codec_aiff_tags, 0 },
438 };
AV_CODEC_ID_PCM_S16LE
@ AV_CODEC_ID_PCM_S16LE
Definition: avcodec.h:463
AV_CODEC_ID_MACE6
@ AV_CODEC_ID_MACE6
Definition: avcodec.h:574
AIFFInputContext::data_end
int64_t data_end
Definition: aiffdec.c:37
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
AV_CODEC_ID_PCM_F32BE
@ AV_CODEC_ID_PCM_F32BE
Definition: avcodec.h:483
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3971
AV_CODEC_ID_ADPCM_IMA_QT
@ AV_CODEC_ID_ADPCM_IMA_QT
Definition: avcodec.h:502
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
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4480
pcm.h
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3953
MAX_SIZE
#define MAX_SIZE
Definition: aiffdec.c:383
ff_get_extradata
int ff_get_extradata(AVFormatContext *s, 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: utils.c:3327
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3949
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:55
MKTAG
#define MKTAG(a, b, c, d)
Definition: common.h:366
id3v2.h
aiff_read_packet
static int aiff_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aiffdec.c:385
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:1131
AV_CODEC_ID_ADPCM_G722
@ AV_CODEC_ID_ADPCM_G722
Definition: avcodec.h:530
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1495
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3961
mathematics.h
sample_rate
sample_rate
Definition: ffmpeg_filter.c:191
AIFFInputContext
Definition: aiffdec.c:36
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:458
AVCodecParameters::channels
int channels
Audio only.
Definition: avcodec.h:4063
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:1153
AV_CODEC_ID_PCM_S16BE
@ AV_CODEC_ID_PCM_S16BE
Definition: avcodec.h:464
AIFF_C_VERSION1
#define AIFF_C_VERSION1
Definition: aiffdec.c:34
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:557
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:919
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:74
AV_CODEC_ID_PCM_S8
@ AV_CODEC_ID_PCM_S8
Definition: avcodec.h:467
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:800
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AV_CODEC_ID_MACE3
@ AV_CODEC_ID_MACE3
Definition: avcodec.h:573
AVInputFormat
Definition: avformat.h:640
AV_PKT_FLAG_CORRUPT
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: avcodec.h:1510
AVCodecTag
Definition: internal.h:44
ID3v2ExtraMeta
Definition: id3v2.h:57
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:448
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
get_meta
static void get_meta(AVFormatContext *s, const char *key, int size)
Definition: aiffdec.c:74
AV_CODEC_ID_PCM_MULAW
@ AV_CODEC_ID_PCM_MULAW
Definition: avcodec.h:469
key
const char * key
Definition: hwcontext_opencl.c:168
version
int version
Definition: avisynth_c.h:858
aiff_probe
static int aiff_probe(const AVProbeData *p)
Definition: aiffdec.c:202
if
if(ret)
Definition: filter_design.txt:179
AVFormatContext
Format I/O context.
Definition: avformat.h:1342
AV_CODEC_ID_PCM_ALAW
@ AV_CODEC_ID_PCM_ALAW
Definition: avcodec.h:470
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1017
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
NULL
#define NULL
Definition: coverity.c:32
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
isom.h
AV_CODEC_ID_ADPCM_IMA_WS
@ AV_CODEC_ID_ADPCM_IMA_WS
Definition: avcodec.h:506
aiff.h
AIFFInputContext::block_duration
int block_duration
Definition: aiffdec.c:38
avio_rb64
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:921
ff_codec_aiff_tags
static const AVCodecTag ff_codec_aiff_tags[]
Definition: aiff.h:33
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:446
AV_CODEC_ID_QDM2
@ AV_CODEC_ID_QDM2
Definition: avcodec.h:583
exp
int8_t exp
Definition: eval.c:72
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: avcodec.h:4067
AV_CODEC_ID_ADPCM_XA
@ AV_CODEC_ID_ADPCM_XA
Definition: avcodec.h:510
AV_CODEC_ID_GSM
@ AV_CODEC_ID_GSM
as in Berlin toast format
Definition: avcodec.h:582
AVStream::nb_frames
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:921
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
AV_CODEC_ID_QCELP
@ AV_CODEC_ID_QCELP
Definition: avcodec.h:588
av_get_bits_per_sample
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:1550
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:769
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
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:188
ff_codec_get_id
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:3146
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:260
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4910
bps
unsigned bps
Definition: movenc.c:1497
size
int size
Definition: twinvq_data.h:11134
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: avcodec.h:614
aiff_codec_get_id
static enum AVCodecID aiff_codec_get_id(int bps)
Definition: aiffdec.c:41
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:92
val
const char const char void * val
Definition: avisynth_c.h:863
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
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: avcodec.h:1483
ff_aiff_demuxer
AVInputFormat ff_aiff_demuxer
Definition: aiffdec.c:429
get_tag
static int get_tag(AVIOContext *pb, uint32_t *tag)
Definition: aiffdec.c:57
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: avcodec.h:216
AIFF
#define AIFF
Definition: aiffdec.c:33
AVCodecParameters::block_align
int block_align
Audio only.
Definition: avcodec.h:4074
AV_CODEC_ID_PCM_F64BE
@ AV_CODEC_ID_PCM_F64BE
Definition: avcodec.h:485
AV_CODEC_ID_PCM_S32BE
@ AV_CODEC_ID_PCM_S32BE
Definition: avcodec.h:472
uint8_t
uint8_t
Definition: audio_convert.c:194
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:313
mov_chan.h
tag
uint32_t tag
Definition: movenc.c:1496
ret
ret
Definition: filter_design.txt:187
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
AVStream
Stream structure.
Definition: avformat.h:870
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:246
ff_pcm_read_seek
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:56
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:785
avformat.h
dict.h
AV_CODEC_ID_ADPCM_G726LE
@ AV_CODEC_ID_ADPCM_G726LE
Definition: avcodec.h:538
pkt
static AVPacket pkt
Definition: demuxing_decoding.c:54
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:647
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:1785
AVPacket::stream_index
int stream_index
Definition: avcodec.h:1479
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:331
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: avcodec.h:3999
AV_CODEC_ID_SDX2_DPCM
@ AV_CODEC_ID_SDX2_DPCM
Definition: avcodec.h:560
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:39
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: avcodec.h:3957
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
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:70
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:1137
AVCodecParameters::bit_rate
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:3986
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
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:909
ff_id3v2_parse_chapters
int ff_id3v2_parse_chapters(AVFormatContext *s, ID3v2ExtraMeta **extra_meta)
Create chapters for all CHAP tags found in the ID3v2 header.
Definition: id3v2.c:1193
AV_CODEC_ID_PCM_S24BE
@ AV_CODEC_ID_PCM_S24BE
Definition: avcodec.h:476
get_aiff_header
static int get_aiff_header(AVFormatContext *s, int size, unsigned version)
Definition: aiffdec.c:93
av_fourcc2str
#define av_fourcc2str(fourcc)
Definition: avutil.h:348
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:547
aiff_read_header
static int aiff_read_header(AVFormatContext *s)
Definition: aiffdec.c:215
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:358