FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 += (size&1)-res;
85  str[res] = 0;
87  }else
88  size+= size&1;
89 
90  avio_skip(s->pb, size);
91 }
92 
93 /* Returns the number of sound data frames or negative on error */
95  unsigned version)
96 {
97  AVIOContext *pb = s->pb;
98  AVCodecParameters *par = s->streams[0]->codecpar;
99  AIFFInputContext *aiff = s->priv_data;
100  int exp;
101  uint64_t val;
102  int sample_rate;
103  unsigned int num_frames;
104 
105  if (size & 1)
106  size++;
108  par->channels = avio_rb16(pb);
109  num_frames = avio_rb32(pb);
110  par->bits_per_coded_sample = avio_rb16(pb);
111 
112  exp = avio_rb16(pb) - 16383 - 63;
113  val = avio_rb64(pb);
114  if (exp <-63 || exp >63) {
115  av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
116  return AVERROR_INVALIDDATA;
117  }
118  if (exp >= 0)
119  sample_rate = val << exp;
120  else
121  sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
122  par->sample_rate = sample_rate;
123  size -= 18;
124 
125  /* get codec id for AIFF-C */
126  if (size < 4) {
127  version = AIFF;
128  } else if (version == AIFF_C_VERSION1) {
129  par->codec_tag = avio_rl32(pb);
131  if (par->codec_id == AV_CODEC_ID_NONE)
132  avpriv_request_sample(s, "unknown or unsupported codec tag: %s",
133  av_fourcc2str(par->codec_tag));
134  size -= 4;
135  }
136 
137  if (version != AIFF_C_VERSION1 || par->codec_id == AV_CODEC_ID_PCM_S16BE) {
140  aiff->block_duration = 1;
141  } else {
142  switch (par->codec_id) {
148  aiff->block_duration = 1;
149  break;
151  par->block_align = 34 * par->channels;
152  break;
153  case AV_CODEC_ID_MACE3:
154  par->block_align = 2 * par->channels;
155  break;
157  par->bits_per_coded_sample = 5;
160  case AV_CODEC_ID_MACE6:
162  par->block_align = 1 * par->channels;
163  break;
164  case AV_CODEC_ID_GSM:
165  par->block_align = 33;
166  break;
167  default:
168  aiff->block_duration = 1;
169  break;
170  }
171  if (par->block_align > 0)
173  par->block_align);
174  }
175 
176  /* Block align needs to be computed in all cases, as the definition
177  * is specific to applications -> here we use the WAVE format definition */
178  if (!par->block_align)
179  par->block_align = (av_get_bits_per_sample(par->codec_id) * par->channels) >> 3;
180 
181  if (aiff->block_duration) {
182  par->bit_rate = (int64_t)par->sample_rate * (par->block_align << 3) /
183  aiff->block_duration;
184  }
185 
186  /* Chunk is over */
187  if (size)
188  avio_skip(pb, size);
189 
190  return num_frames;
191 }
192 
193 static int aiff_probe(AVProbeData *p)
194 {
195  /* check file header */
196  if (p->buf[0] == 'F' && p->buf[1] == 'O' &&
197  p->buf[2] == 'R' && p->buf[3] == 'M' &&
198  p->buf[8] == 'A' && p->buf[9] == 'I' &&
199  p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
200  return AVPROBE_SCORE_MAX;
201  else
202  return 0;
203 }
204 
205 /* aiff input */
207 {
208  int ret, size, filesize;
209  int64_t offset = 0, position;
210  uint32_t tag;
211  unsigned version = AIFF_C_VERSION1;
212  AVIOContext *pb = s->pb;
213  AVStream * st;
214  AIFFInputContext *aiff = s->priv_data;
215  ID3v2ExtraMeta *id3v2_extra_meta = NULL;
216 
217  /* check FORM header */
218  filesize = get_tag(pb, &tag);
219  if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
220  return AVERROR_INVALIDDATA;
221 
222  /* AIFF data type */
223  tag = avio_rl32(pb);
224  if (tag == MKTAG('A', 'I', 'F', 'F')) /* Got an AIFF file */
225  version = AIFF;
226  else if (tag != MKTAG('A', 'I', 'F', 'C')) /* An AIFF-C file then */
227  return AVERROR_INVALIDDATA;
228 
229  filesize -= 4;
230 
231  st = avformat_new_stream(s, NULL);
232  if (!st)
233  return AVERROR(ENOMEM);
234 
235  while (filesize > 0) {
236  /* parse different chunks */
237  size = get_tag(pb, &tag);
238 
239  if (size == AVERROR_EOF && offset > 0 && st->codecpar->block_align) {
240  av_log(s, AV_LOG_WARNING, "header parser hit EOF\n");
241  goto got_sound;
242  }
243  if (size < 0)
244  return size;
245 
246  filesize -= size + 8;
247 
248  switch (tag) {
249  case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */
250  /* Then for the complete header info */
251  st->nb_frames = get_aiff_header(s, size, version);
252  if (st->nb_frames < 0)
253  return st->nb_frames;
254  if (offset > 0) // COMM is after SSND
255  goto got_sound;
256  break;
257  case MKTAG('I', 'D', '3', ' '):
258  position = avio_tell(pb);
259  ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
260  if (id3v2_extra_meta)
261  if ((ret = ff_id3v2_parse_apic(s, &id3v2_extra_meta)) < 0) {
262  ff_id3v2_free_extra_meta(&id3v2_extra_meta);
263  return ret;
264  }
265  ff_id3v2_free_extra_meta(&id3v2_extra_meta);
266  if (position + size > avio_tell(pb))
267  avio_skip(pb, position + size - avio_tell(pb));
268  break;
269  case MKTAG('F', 'V', 'E', 'R'): /* Version chunk */
270  version = avio_rb32(pb);
271  break;
272  case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */
273  get_meta(s, "title" , size);
274  break;
275  case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */
276  get_meta(s, "author" , size);
277  break;
278  case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */
279  get_meta(s, "copyright", size);
280  break;
281  case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */
282  get_meta(s, "comment" , size);
283  break;
284  case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
285  aiff->data_end = avio_tell(pb) + size;
286  offset = avio_rb32(pb); /* Offset of sound data */
287  avio_rb32(pb); /* BlockSize... don't care */
288  offset += avio_tell(pb); /* Compute absolute data offset */
289  if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL)) /* Assume COMM already parsed */
290  goto got_sound;
291  if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
292  av_log(s, AV_LOG_ERROR, "file is not seekable\n");
293  return -1;
294  }
295  avio_skip(pb, size - 8);
296  break;
297  case MKTAG('w', 'a', 'v', 'e'):
298  if ((uint64_t)size > (1<<30))
299  return -1;
300  if (ff_get_extradata(s, st->codecpar, pb, size) < 0)
301  return AVERROR(ENOMEM);
303  && size>=12*4 && !st->codecpar->block_align) {
304  st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
305  aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
306  } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
307  char rate = 0;
308  if (size >= 25)
309  rate = st->codecpar->extradata[24];
310  switch (rate) {
311  case 'H': // RATE_HALF
312  st->codecpar->block_align = 17;
313  break;
314  case 'F': // RATE_FULL
315  default:
316  st->codecpar->block_align = 35;
317  }
318  aiff->block_duration = 160;
319  st->codecpar->bit_rate = (int64_t)st->codecpar->sample_rate * (st->codecpar->block_align << 3) /
320  aiff->block_duration;
321  }
322  break;
323  case MKTAG('C','H','A','N'):
324  if(ff_mov_read_chan(s, pb, st, size) < 0)
325  return AVERROR_INVALIDDATA;
326  break;
327  case 0:
328  if (offset > 0 && st->codecpar->block_align) // COMM && SSND
329  goto got_sound;
330  default: /* Jump */
331  avio_skip(pb, size);
332  }
333 
334  /* Skip required padding byte for odd-sized chunks. */
335  if (size & 1) {
336  filesize--;
337  avio_skip(pb, 1);
338  }
339  }
340 
341 got_sound:
342  if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
343  av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
344  st->codecpar->block_align = 35;
345  } else if (!st->codecpar->block_align) {
346  av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
347  return -1;
348  }
349 
350  /* Now positioned, get the sound data start and end */
351  avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
352  st->start_time = 0;
353  st->duration = st->nb_frames * aiff->block_duration;
354 
355  /* Position the stream at the first block */
356  avio_seek(pb, offset, SEEK_SET);
357 
358  return 0;
359 }
360 
361 #define MAX_SIZE 4096
362 
364  AVPacket *pkt)
365 {
366  AVStream *st = s->streams[0];
367  AIFFInputContext *aiff = s->priv_data;
368  int64_t max_size;
369  int res, size;
370 
371  /* calculate size of remaining data */
372  max_size = aiff->data_end - avio_tell(s->pb);
373  if (max_size <= 0)
374  return AVERROR_EOF;
375 
376  if (!st->codecpar->block_align) {
377  av_log(s, AV_LOG_ERROR, "block_align not set\n");
378  return AVERROR_INVALIDDATA;
379  }
380 
381  /* Now for that packet */
382  switch (st->codecpar->codec_id) {
384  case AV_CODEC_ID_GSM:
385  case AV_CODEC_ID_QDM2:
386  case AV_CODEC_ID_QCELP:
387  size = st->codecpar->block_align;
388  break;
389  default:
391  }
392  size = FFMIN(max_size, size);
393  res = av_get_packet(s->pb, pkt, size);
394  if (res < 0)
395  return res;
396 
397  if (size >= st->codecpar->block_align)
398  pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
399  /* Only one stream in an AIFF file */
400  pkt->stream_index = 0;
401  pkt->duration = (res / st->codecpar->block_align) * aiff->block_duration;
402  return 0;
403 }
404 
406  .name = "aiff",
407  .long_name = NULL_IF_CONFIG_SMALL("Audio IFF"),
408  .priv_data_size = sizeof(AIFFInputContext),
413  .codec_tag = (const AVCodecTag* const []){ ff_codec_aiff_tags, 0 },
414 };
#define NULL
Definition: coverity.c:32
const char const char void * val
Definition: avisynth_c.h:771
static int get_aiff_header(AVFormatContext *s, int size, unsigned version)
Definition: aiffdec.c:94
const char * s
Definition: avisynth_c.h:768
Bytestream IO Context.
Definition: avio.h:155
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
int64_t data_end
Definition: aiffdec.c:37
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:3050
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
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:4601
#define MAX_SIZE
Definition: aiffdec.c:361
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:4066
#define ID3v2_DEFAULT_MAGIC
Default magic bytes for ID3v2 header: "ID3".
Definition: id3v2.h:35
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:231
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:316
static int aiff_read_header(AVFormatContext *s)
Definition: aiffdec.c:206
int version
Definition: avisynth_c.h:766
static AVPacket pkt
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:754
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:1126
This struct describes the properties of an encoded stream.
Definition: avcodec.h:4058
Format I/O context.
Definition: avformat.h:1349
Public dictionary API.
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t
#define av_malloc(s)
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:769
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1675
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4231
static int aiff_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aiffdec.c:363
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:87
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1417
#define AIFF_C_VERSION1
Definition: aiffdec.c:34
uint32_t tag
Definition: movenc.c:1413
#define AVERROR_EOF
End of file.
Definition: error.h:55
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:289
ptrdiff_t size
Definition: opengl_enc.c:101
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:836
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:525
#define av_log(a,...)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:616
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:4095
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:214
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:3575
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1567
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:738
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
#define av_fourcc2str(fourcc)
Definition: avutil.h:348
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:4062
void ff_id3v2_free_extra_meta(ID3v2ExtraMeta **extra_meta)
Free memory allocated parsing special (non-text) metadata.
Definition: id3v2.c:1110
static void get_meta(AVFormatContext *s, const char *key, int size)
Definition: aiffdec.c:74
static enum AVCodecID aiff_codec_get_id(int bps)
Definition: aiffdec.c:41
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
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:3786
int8_t exp
Definition: eval.c:65
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1663
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:463
int block_align
Audio only.
Definition: avcodec.h:4183
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:251
#define FFMIN(a, b)
Definition: common.h:96
#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:76
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static int aiff_probe(AVProbeData *p)
Definition: aiffdec.c:193
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:45
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
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:510
Stream structure.
Definition: avformat.h:889
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
static int get_tag(AVIOContext *pb, uint32_t *tag)
Definition: aiffdec.c:57
int block_duration
Definition: aiffdec.c:38
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
sample_rate
AVIOContext * pb
I/O context.
Definition: avformat.h:1391
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
This structure contains the data a format has to probe a file.
Definition: avformat.h:461
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:946
int sample_rate
Audio only.
Definition: avcodec.h:4176
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:473
Main libavformat public API header.
AVInputFormat ff_aiff_demuxer
Definition: aiffdec.c:405
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base...
Definition: avformat.h:936
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:3234
static const AVCodecTag ff_codec_aiff_tags[]
Definition: aiff.h:33
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 and chapters.
Definition: id3v2.c:1104
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:948
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: avcodec.h:1690
unsigned bps
Definition: movenc.c:1414
#define AIFF
Definition: aiffdec.c:33
#define av_free(p)
as in Berlin toast format
Definition: avcodec.h:567
void * priv_data
Format private data.
Definition: avformat.h:1377
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: avcodec.h:4108
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:4080
int channels
Audio only.
Definition: avcodec.h:4172
common header for AIFF muxer and demuxer
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:664
AVCodecParameters * codecpar
Definition: avformat.h:1252
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:340
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:4070
int stream_index
Definition: avcodec.h:1659
#define MKTAG(a, b, c, d)
Definition: common.h:342
This structure stores compressed data.
Definition: avcodec.h:1634