Libav
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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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/mathematics.h"
23 #include "libavutil/dict.h"
24 #include "avformat.h"
25 #include "internal.h"
26 #include "pcm.h"
27 #include "aiff.h"
28 
29 #define AIFF 0
30 #define AIFF_C_VERSION1 0xA2805140
31 
32 typedef struct AIFFInputContext {
33  int64_t data_end;
36 
38 {
39  if (bps <= 8)
40  return AV_CODEC_ID_PCM_S8;
41  if (bps <= 16)
42  return AV_CODEC_ID_PCM_S16BE;
43  if (bps <= 24)
44  return AV_CODEC_ID_PCM_S24BE;
45  if (bps <= 32)
46  return AV_CODEC_ID_PCM_S32BE;
47 
48  /* bigger than 32 isn't allowed */
49  return AV_CODEC_ID_NONE;
50 }
51 
52 /* returns the size of the found tag */
53 static int get_tag(AVIOContext *pb, uint32_t * tag)
54 {
55  int size;
56 
57  if (pb->eof_reached)
58  return AVERROR(EIO);
59 
60  *tag = avio_rl32(pb);
61  size = avio_rb32(pb);
62 
63  if (size < 0)
64  size = 0x7fffffff;
65 
66  return size;
67 }
68 
69 /* Metadata string read */
70 static void get_meta(AVFormatContext *s, const char *key, int size)
71 {
72  uint8_t *str = av_malloc(size+1);
73  int res;
74 
75  if (!str) {
76  avio_skip(s->pb, size);
77  return;
78  }
79 
80  res = avio_read(s->pb, str, size);
81  if (res < 0)
82  return;
83 
84  str[res] = 0;
86 }
87 
88 /* Returns the number of sound data frames or negative on error */
89 static unsigned int get_aiff_header(AVFormatContext *s, int size,
90  unsigned version)
91 {
92  AVIOContext *pb = s->pb;
93  AVCodecParameters *par = s->streams[0]->codecpar;
94  AIFFInputContext *aiff = s->priv_data;
95  int exp;
96  uint64_t val;
97  double sample_rate;
98  unsigned int num_frames;
99 
100  if (size & 1)
101  size++;
103  par->channels = avio_rb16(pb);
104  num_frames = avio_rb32(pb);
105  par->bits_per_coded_sample = avio_rb16(pb);
106 
107  exp = avio_rb16(pb);
108  val = avio_rb64(pb);
109  sample_rate = ldexp(val, exp - 16383 - 63);
110  par->sample_rate = sample_rate;
111  size -= 18;
112 
113  /* get codec id for AIFF-C */
114  if (version == AIFF_C_VERSION1) {
115  par->codec_tag = avio_rl32(pb);
117  size -= 4;
118  }
119 
120  if (version != AIFF_C_VERSION1 || par->codec_id == AV_CODEC_ID_PCM_S16BE) {
123  aiff->block_duration = 1;
124  } else {
125  switch (par->codec_id) {
131  aiff->block_duration = 1;
132  break;
134  par->block_align = 34 * par->channels;
135  break;
136  case AV_CODEC_ID_MACE3:
137  par->block_align = 2 * par->channels;
138  break;
140  case AV_CODEC_ID_MACE6:
141  par->block_align = 1 * par->channels;
142  break;
143  case AV_CODEC_ID_GSM:
144  par->block_align = 33;
145  break;
146  case AV_CODEC_ID_QCELP:
147  par->block_align = 35;
148  break;
149  default:
150  break;
151  }
152  if (par->block_align > 0)
154  par->block_align);
155  }
156 
157  /* Block align needs to be computed in all cases, as the definition
158  * is specific to applications -> here we use the WAVE format definition */
159  if (!par->block_align)
160  par->block_align = (par->bits_per_coded_sample * par->channels) >> 3;
161 
162  if (aiff->block_duration) {
163  par->bit_rate = par->sample_rate * (par->block_align << 3) /
164  aiff->block_duration;
165  }
166 
167  /* Chunk is over */
168  if (size)
169  avio_skip(pb, size);
170 
171  return num_frames;
172 }
173 
174 static int aiff_probe(AVProbeData *p)
175 {
176  /* check file header */
177  if (p->buf[0] == 'F' && p->buf[1] == 'O' &&
178  p->buf[2] == 'R' && p->buf[3] == 'M' &&
179  p->buf[8] == 'A' && p->buf[9] == 'I' &&
180  p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
181  return AVPROBE_SCORE_MAX;
182  else
183  return 0;
184 }
185 
186 /* aiff input */
188 {
189  int size, filesize;
190  int64_t offset = 0;
191  uint32_t tag;
192  unsigned version = AIFF_C_VERSION1;
193  AVIOContext *pb = s->pb;
194  AVStream * st;
195  AIFFInputContext *aiff = s->priv_data;
196 
197  /* check FORM header */
198  filesize = get_tag(pb, &tag);
199  if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
200  return AVERROR_INVALIDDATA;
201 
202  /* AIFF data type */
203  tag = avio_rl32(pb);
204  if (tag == MKTAG('A', 'I', 'F', 'F')) /* Got an AIFF file */
205  version = AIFF;
206  else if (tag != MKTAG('A', 'I', 'F', 'C')) /* An AIFF-C file then */
207  return AVERROR_INVALIDDATA;
208 
209  filesize -= 4;
210 
211  st = avformat_new_stream(s, NULL);
212  if (!st)
213  return AVERROR(ENOMEM);
214 
215  while (filesize > 0) {
216  /* parse different chunks */
217  size = get_tag(pb, &tag);
218  if (size < 0)
219  return size;
220 
221  filesize -= size + 8;
222 
223  switch (tag) {
224  case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */
225  /* Then for the complete header info */
226  st->nb_frames = get_aiff_header(s, size, version);
227  if (st->nb_frames < 0)
228  return st->nb_frames;
229  if (offset > 0) // COMM is after SSND
230  goto got_sound;
231  break;
232  case MKTAG('F', 'V', 'E', 'R'): /* Version chunk */
233  version = avio_rb32(pb);
234  break;
235  case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */
236  get_meta(s, "title" , size);
237  break;
238  case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */
239  get_meta(s, "author" , size);
240  break;
241  case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */
242  get_meta(s, "copyright", size);
243  break;
244  case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */
245  get_meta(s, "comment" , size);
246  break;
247  case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
248  aiff->data_end = avio_tell(pb) + size;
249  offset = avio_rb32(pb); /* Offset of sound data */
250  avio_rb32(pb); /* BlockSize... don't care */
251  offset += avio_tell(pb); /* Compute absolute data offset */
252  if (st->codecpar->block_align) /* Assume COMM already parsed */
253  goto got_sound;
254  if (!pb->seekable) {
255  av_log(s, AV_LOG_ERROR, "file is not seekable\n");
256  return -1;
257  }
258  avio_skip(pb, size - 8);
259  break;
260  case MKTAG('w', 'a', 'v', 'e'):
261  if ((uint64_t)size > (1<<30))
262  return -1;
264  if (!st->codecpar->extradata)
265  return AVERROR(ENOMEM);
267  avio_read(pb, st->codecpar->extradata, size);
268  break;
269  default: /* Jump */
270  avio_skip(pb, size);
271  }
272 
273  /* Skip required padding byte for odd-sized chunks. */
274  if (size & 1) {
275  filesize--;
276  avio_skip(pb, 1);
277  }
278  }
279 
280 got_sound:
281  if (!st->codecpar->block_align) {
282  av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
283  return -1;
284  }
285 
286  /* Now positioned, get the sound data start and end */
287  avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
288  st->start_time = 0;
289  st->duration = st->nb_frames * aiff->block_duration;
290 
291  /* Position the stream at the first block */
292  avio_seek(pb, offset, SEEK_SET);
293 
294  return 0;
295 }
296 
297 #define MAX_SIZE 4096
298 
300  AVPacket *pkt)
301 {
302  AVStream *st = s->streams[0];
303  AIFFInputContext *aiff = s->priv_data;
304  int64_t max_size;
305  int res, size;
306 
307  /* calculate size of remaining data */
308  max_size = aiff->data_end - avio_tell(s->pb);
309  if (max_size <= 0)
310  return AVERROR_EOF;
311 
312  /* Now for that packet */
313  if (st->codecpar->block_align >= 33) // GSM, QCLP, IMA4
314  size = st->codecpar->block_align;
315  else
316  size = (MAX_SIZE / st->codecpar->block_align) * st->codecpar->block_align;
317  size = FFMIN(max_size, size);
318  res = av_get_packet(s->pb, pkt, size);
319  if (res < 0)
320  return res;
321 
322  /* Only one stream in an AIFF file */
323  pkt->stream_index = 0;
324  pkt->duration = (res / st->codecpar->block_align) * aiff->block_duration;
325  return 0;
326 }
327 
329  .name = "aiff",
330  .long_name = NULL_IF_CONFIG_SMALL("Audio IFF"),
331  .priv_data_size = sizeof(AIFFInputContext),
336  .codec_tag = (const AVCodecTag* const []){ ff_codec_aiff_tags, 0 },
337 };
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:62
Bytestream IO Context.
Definition: avio.h:104
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
int size
int64_t data_end
Definition: aiffdec.c:33
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:1983
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:2986
#define MAX_SIZE
Definition: aiffdec.c:297
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:3483
av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (%s)\, len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic ? ac->func_descr_generic :ac->func_descr)
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:242
static int aiff_read_header(AVFormatContext *s)
Definition: aiffdec.c:187
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:681
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3475
Format I/O context.
Definition: avformat.h:940
Public dictionary API.
uint8_t
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:696
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1364
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:2648
static int aiff_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aiffdec.c:299
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1008
#define AIFF_C_VERSION1
Definition: aiffdec.c:30
uint32_t tag
Definition: movenc.c:854
#define AVERROR_EOF
End of file.
Definition: error.h:51
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:117
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:761
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:295
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:545
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:193
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:124
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:2348
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1148
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:665
#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:148
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3479
static void get_meta(AVFormatContext *s, const char *key, int size)
Definition: aiffdec.c:70
static enum AVCodecID aiff_codec_get_id(int bps)
Definition: aiffdec.c:37
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:2515
int extradata_size
Size of the extradata content in bytes.
Definition: avcodec.h:3501
int bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:3512
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:400
int block_align
Audio only.
Definition: avcodec.h:3571
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:153
#define FFMIN(a, b)
Definition: common.h:66
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that&#39;s been allocated with av_malloc() and children.
Definition: dict.h:64
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static av_always_inline int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: avio.h:286
static int aiff_probe(AVProbeData *p)
Definition: aiffdec.c:174
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:27
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:546
Stream structure.
Definition: avformat.h:705
static int get_tag(AVIOContext *pb, uint32_t *tag)
Definition: aiffdec.c:53
int block_duration
Definition: aiffdec.c:34
NULL
Definition: eval.c:55
version
Definition: ffv1enc.c:1091
AVIOContext * pb
I/O context.
Definition: avformat.h:982
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
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:68
This structure contains the data a format has to probe a file.
Definition: avformat.h:398
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:757
int sample_rate
Audio only.
Definition: avcodec.h:3564
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:407
Main libavformat public API header.
AVInputFormat ff_aiff_demuxer
Definition: aiffdec.c:328
int64_t start_time
Decoding: pts of the first frame of the stream, in stream time base.
Definition: avformat.h:750
static const AVCodecTag ff_codec_aiff_tags[]
Definition: aiff.h:33
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:759
static unsigned int get_aiff_header(AVFormatContext *s, int size, unsigned version)
Definition: aiffdec.c:89
unsigned bps
Definition: movenc.c:855
#define AIFF
Definition: aiffdec.c:29
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:638
int eof_reached
true if eof reached
Definition: avio.h:132
as in Berlin toast format
Definition: avcodec.h:496
void * priv_data
Format private data.
Definition: avformat.h:968
int bits_per_coded_sample
Definition: avcodec.h:3514
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3497
int channels
Audio only.
Definition: avcodec.h:3560
common header for AIFF muxer and demuxer
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:529
AVCodecParameters * codecpar
Definition: avformat.h:831
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3487
int stream_index
Definition: avcodec.h:1348
#define MKTAG(a, b, c, d)
Definition: common.h:256
This structure stores compressed data.
Definition: avcodec.h:1323
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:211