2 * AIFF/AIFF-C muxer and demuxer
3 * Copyright (c) 2006 Patrick Guimond
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/intfloat_readwrite.h"
27 static const AVCodecTag codec_aiff_tags
[] = {
28 { CODEC_ID_PCM_S16BE
, MKTAG('N','O','N','E') },
29 { CODEC_ID_PCM_S8
, MKTAG('N','O','N','E') },
30 { CODEC_ID_PCM_S24BE
, MKTAG('N','O','N','E') },
31 { CODEC_ID_PCM_S32BE
, MKTAG('N','O','N','E') },
32 { CODEC_ID_PCM_ALAW
, MKTAG('a','l','a','w') },
33 { CODEC_ID_PCM_MULAW
, MKTAG('u','l','a','w') },
34 { CODEC_ID_MACE3
, MKTAG('M','A','C','3') },
35 { CODEC_ID_MACE6
, MKTAG('M','A','C','6') },
36 { CODEC_ID_GSM
, MKTAG('G','S','M',' ') },
37 { CODEC_ID_ADPCM_G726
, MKTAG('G','7','2','6') },
38 { CODEC_ID_PCM_S16LE
, MKTAG('s','o','w','t') },
39 { CODEC_ID_ADPCM_IMA_QT
, MKTAG('i','m','a','4') },
40 { CODEC_ID_QDM2
, MKTAG('Q','D','M','2') },
45 #define AIFF_C_VERSION1 0xA2805140
47 static int aiff_codec_get_id(int bps
)
50 return CODEC_ID_PCM_S8
;
52 return CODEC_ID_PCM_S16BE
;
54 return CODEC_ID_PCM_S24BE
;
56 return CODEC_ID_PCM_S32BE
;
58 /* bigger than 32 isn't allowed */
62 /* returns the size of the found tag */
63 static int get_tag(ByteIOContext
*pb
, uint32_t * tag
)
79 /* Metadata string read */
80 static void get_meta(ByteIOContext
*pb
, char * str
, int strsize
, int size
)
85 res
= get_buffer(pb
, (uint8_t*)str
, strsize
-1);
87 res
= get_buffer(pb
, (uint8_t*)str
, size
);
100 /* Returns the number of sound data frames or negative on error */
101 static unsigned int get_aiff_header(ByteIOContext
*pb
, AVCodecContext
*codec
,
102 int size
, unsigned version
)
106 unsigned int num_frames
;
110 codec
->codec_type
= CODEC_TYPE_AUDIO
;
111 codec
->channels
= get_be16(pb
);
112 num_frames
= get_be32(pb
);
113 codec
->bits_per_sample
= get_be16(pb
);
115 get_buffer(pb
, (uint8_t*)&ext
, sizeof(ext
));/* Sample rate is in */
116 sample_rate
= av_ext2dbl(ext
); /* 80 bits BE IEEE extended float */
117 codec
->sample_rate
= sample_rate
;
121 if (version
== AIFF_C_VERSION1
) {
122 codec
->codec_tag
= get_le32(pb
);
123 codec
->codec_id
= codec_get_id(codec_aiff_tags
, codec
->codec_tag
);
125 switch (codec
->codec_id
) {
126 case CODEC_ID_PCM_S16BE
:
127 codec
->codec_id
= aiff_codec_get_id(codec
->bits_per_sample
);
128 codec
->bits_per_sample
= av_get_bits_per_sample(codec
->codec_id
);
130 case CODEC_ID_ADPCM_IMA_QT
:
131 codec
->block_align
= 34*codec
->channels
;
132 codec
->frame_size
= 64;
135 codec
->block_align
= 2*codec
->channels
;
136 codec
->frame_size
= 6;
139 codec
->block_align
= 1*codec
->channels
;
140 codec
->frame_size
= 6;
147 /* Need the codec type */
148 codec
->codec_id
= aiff_codec_get_id(codec
->bits_per_sample
);
149 codec
->bits_per_sample
= av_get_bits_per_sample(codec
->codec_id
);
152 /* Block align needs to be computed in all cases, as the definition
153 * is specific to applications -> here we use the WAVE format definition */
154 if (!codec
->block_align
)
155 codec
->block_align
= (codec
->bits_per_sample
* codec
->channels
) >> 3;
157 codec
->bit_rate
= (codec
->frame_size
? codec
->sample_rate
/codec
->frame_size
:
158 codec
->sample_rate
) * (codec
->block_align
<< 3);
162 url_fseek(pb
, size
, SEEK_CUR
);
174 static int aiff_write_header(AVFormatContext
*s
)
176 AIFFOutputContext
*aiff
= s
->priv_data
;
177 ByteIOContext
*pb
= s
->pb
;
178 AVCodecContext
*enc
= s
->streams
[0]->codec
;
179 AVExtFloat sample_rate
;
182 /* First verify if format is ok */
185 if (enc
->codec_tag
!= MKTAG('N','O','N','E'))
188 /* FORM AIFF header */
190 aiff
->form
= url_ftell(pb
);
191 put_be32(pb
, 0); /* file length */
192 put_tag(pb
, aifc
? "AIFC" : "AIFF");
194 if (aifc
) { // compressed audio
195 enc
->bits_per_sample
= 16;
196 if (!enc
->block_align
) {
197 av_log(s
, AV_LOG_ERROR
, "block align not set\n");
203 put_be32(pb
, 0xA2805140);
208 put_be32(pb
, aifc
? 24 : 18); /* size */
209 put_be16(pb
, enc
->channels
); /* Number of channels */
211 aiff
->frames
= url_ftell(pb
);
212 put_be32(pb
, 0); /* Number of frames */
214 if (!enc
->bits_per_sample
)
215 enc
->bits_per_sample
= av_get_bits_per_sample(enc
->codec_id
);
216 if (!enc
->bits_per_sample
) {
217 av_log(s
, AV_LOG_ERROR
, "could not compute bits per sample\n");
220 if (!enc
->block_align
)
221 enc
->block_align
= (enc
->bits_per_sample
* enc
->channels
) >> 3;
223 put_be16(pb
, enc
->bits_per_sample
); /* Sample size */
225 sample_rate
= av_dbl2ext((double)enc
->sample_rate
);
226 put_buffer(pb
, (uint8_t*)&sample_rate
, sizeof(sample_rate
));
229 put_le32(pb
, enc
->codec_tag
);
233 /* Sound data chunk */
235 aiff
->ssnd
= url_ftell(pb
); /* Sound chunk size */
236 put_be32(pb
, 0); /* Sound samples data size */
237 put_be32(pb
, 0); /* Data offset */
238 put_be32(pb
, 0); /* Block-size (block align) */
240 av_set_pts_info(s
->streams
[0], 64, 1, s
->streams
[0]->codec
->sample_rate
);
242 /* Data is starting here */
243 put_flush_packet(pb
);
248 static int aiff_write_packet(AVFormatContext
*s
, AVPacket
*pkt
)
250 ByteIOContext
*pb
= s
->pb
;
251 put_buffer(pb
, pkt
->data
, pkt
->size
);
255 static int aiff_write_trailer(AVFormatContext
*s
)
257 ByteIOContext
*pb
= s
->pb
;
258 AIFFOutputContext
*aiff
= s
->priv_data
;
259 AVCodecContext
*enc
= s
->streams
[0]->codec
;
261 /* Chunks sizes must be even */
262 offset_t file_size
, end_size
;
263 end_size
= file_size
= url_ftell(pb
);
269 if (!url_is_streamed(s
->pb
)) {
271 url_fseek(pb
, aiff
->form
, SEEK_SET
);
272 put_be32(pb
, file_size
- aiff
->form
- 4);
274 /* Number of sample frames */
275 url_fseek(pb
, aiff
->frames
, SEEK_SET
);
276 put_be32(pb
, (file_size
-aiff
->ssnd
-12)/enc
->block_align
);
278 /* Sound Data chunk size */
279 url_fseek(pb
, aiff
->ssnd
, SEEK_SET
);
280 put_be32(pb
, file_size
- aiff
->ssnd
- 4);
282 /* return to the end */
283 url_fseek(pb
, end_size
, SEEK_SET
);
285 put_flush_packet(pb
);
290 #endif //CONFIG_MUXERS
292 static int aiff_probe(AVProbeData
*p
)
294 /* check file header */
295 if (p
->buf
[0] == 'F' && p
->buf
[1] == 'O' &&
296 p
->buf
[2] == 'R' && p
->buf
[3] == 'M' &&
297 p
->buf
[8] == 'A' && p
->buf
[9] == 'I' &&
298 p
->buf
[10] == 'F' && (p
->buf
[11] == 'F' || p
->buf
[11] == 'C'))
299 return AVPROBE_SCORE_MAX
;
305 static int aiff_read_header(AVFormatContext
*s
,
306 AVFormatParameters
*ap
)
311 unsigned version
= AIFF_C_VERSION1
;
312 ByteIOContext
*pb
= s
->pb
;
313 AVStream
* st
= s
->streams
[0];
315 /* check FORM header */
316 filesize
= get_tag(pb
, &tag
);
317 if (filesize
< 0 || tag
!= MKTAG('F', 'O', 'R', 'M'))
318 return AVERROR_INVALIDDATA
;
322 if (tag
== MKTAG('A', 'I', 'F', 'F')) /* Got an AIFF file */
324 else if (tag
!= MKTAG('A', 'I', 'F', 'C')) /* An AIFF-C file then */
325 return AVERROR_INVALIDDATA
;
329 st
= av_new_stream(s
, 0);
331 return AVERROR(ENOMEM
);
333 while (filesize
> 0) {
334 /* parse different chunks */
335 size
= get_tag(pb
, &tag
);
339 filesize
-= size
+ 8;
342 case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */
343 /* Then for the complete header info */
344 st
->nb_frames
= get_aiff_header(pb
, st
->codec
, size
, version
);
345 if (st
->nb_frames
< 0)
346 return st
->nb_frames
;
347 if (offset
> 0) // COMM is after SSND
350 case MKTAG('F', 'V', 'E', 'R'): /* Version chunk */
351 version
= get_be32(pb
);
353 case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */
354 get_meta(pb
, s
->title
, sizeof(s
->title
), size
);
356 case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */
357 get_meta(pb
, s
->author
, sizeof(s
->author
), size
);
359 case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */
360 get_meta(pb
, s
->copyright
, sizeof(s
->copyright
), size
);
362 case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */
363 get_meta(pb
, s
->comment
, sizeof(s
->comment
), size
);
365 case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
366 offset
= get_be32(pb
); /* Offset of sound data */
367 get_be32(pb
); /* BlockSize... don't care */
368 offset
+= url_ftell(pb
); /* Compute absolute data offset */
369 if (st
->codec
->block_align
) /* Assume COMM already parsed */
371 if (url_is_streamed(pb
)) {
372 av_log(s
, AV_LOG_ERROR
, "file is not seekable\n");
375 url_fskip(pb
, size
- 8);
377 case MKTAG('w', 'a', 'v', 'e'):
378 if ((uint64_t)size
> (1<<30))
380 st
->codec
->extradata
= av_mallocz(size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
381 if (!st
->codec
->extradata
)
382 return AVERROR(ENOMEM
);
383 st
->codec
->extradata_size
= size
;
384 get_buffer(pb
, st
->codec
->extradata
, size
);
387 if (size
& 1) /* Always even aligned */
389 url_fskip (pb
, size
);
393 if (!st
->codec
->block_align
) {
394 av_log(s
, AV_LOG_ERROR
, "could not find COMM tag\n");
399 /* Now positioned, get the sound data start and end */
401 s
->file_size
= st
->nb_frames
* st
->codec
->block_align
;
403 av_set_pts_info(st
, 64, 1, st
->codec
->sample_rate
);
405 st
->duration
= st
->codec
->frame_size
?
406 st
->nb_frames
* st
->codec
->frame_size
: st
->nb_frames
;
408 /* Position the stream at the first block */
409 url_fseek(pb
, offset
, SEEK_SET
);
414 #define MAX_SIZE 4096
416 static int aiff_read_packet(AVFormatContext
*s
,
419 AVStream
*st
= s
->streams
[0];
422 /* End of stream may be reached */
426 /* Now for that packet */
427 res
= av_get_packet(s
->pb
, pkt
, (MAX_SIZE
/ st
->codec
->block_align
) * st
->codec
->block_align
);
431 /* Only one stream in an AIFF file */
432 pkt
->stream_index
= 0;
436 #ifdef CONFIG_AIFF_DEMUXER
437 AVInputFormat aiff_demuxer
= {
439 NULL_IF_CONFIG_SMALL("Audio IFF"),
446 .codec_tag
= (const AVCodecTag
*[]){codec_aiff_tags
, 0},
450 #ifdef CONFIG_AIFF_MUXER
451 AVOutputFormat aiff_muxer
= {
453 NULL_IF_CONFIG_SMALL("Audio IFF"),
456 sizeof(AIFFOutputContext
),
462 .codec_tag
= (const AVCodecTag
*[]){codec_aiff_tags
, 0},