]> git.sesse.net Git - ffmpeg/blob - libavformat/aiff.c
split rm muxer and demuxer in their own files
[ffmpeg] / libavformat / aiff.c
1 /*
2  * AIFF/AIFF-C muxer and 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 #include "avformat.h"
22 #include "allformats.h"
23 #include "riff.h"
24 #include "intfloat_readwrite.h"
25
26 static const AVCodecTag codec_aiff_tags[] = {
27     { CODEC_ID_PCM_S16BE, MKTAG('N','O','N','E') },
28     { CODEC_ID_PCM_S8, MKTAG('N','O','N','E') },
29     { CODEC_ID_PCM_S24BE, MKTAG('N','O','N','E') },
30     { CODEC_ID_PCM_S32BE, MKTAG('N','O','N','E') },
31     { CODEC_ID_PCM_ALAW, MKTAG('a','l','a','w') },
32     { CODEC_ID_PCM_ALAW, MKTAG('A','L','A','W') },
33     { CODEC_ID_PCM_MULAW, MKTAG('u','l','a','w') },
34     { CODEC_ID_PCM_MULAW, MKTAG('U','L','A','W') },
35     { CODEC_ID_MACE3, MKTAG('M','A','C','3') },
36     { CODEC_ID_MACE6, MKTAG('M','A','C','6') },
37     { CODEC_ID_GSM, MKTAG('G','S','M',' ') },
38     { CODEC_ID_ADPCM_G726, MKTAG('G','7','2','6') },
39     { CODEC_ID_PCM_S16LE, MKTAG('s','o','w','t') },
40     { 0, 0 },
41 };
42
43 #define AIFF                    0
44 #define AIFF_C_VERSION1         0xA2805140
45
46 static int aiff_codec_get_id (int bps)
47 {
48     if (bps <= 8)
49         return CODEC_ID_PCM_S8;
50     if (bps <= 16)
51         return CODEC_ID_PCM_S16BE;
52     if (bps <= 24)
53         return CODEC_ID_PCM_S24BE;
54     if (bps <= 32)
55         return CODEC_ID_PCM_S32BE;
56
57     /* bigger than 32 isn't allowed  */
58     return 0;
59 }
60
61 /* returns the size of the found tag */
62 static int get_tag(ByteIOContext *pb, uint32_t * tag)
63 {
64     int size;
65
66     if (url_feof(pb))
67         return AVERROR_IO;
68
69     *tag = get_le32(pb);
70     size = get_be32(pb);
71
72     if (size < 0)
73         size = 0x7fffffff;
74
75     return size;
76 }
77
78 /* Metadata string read */
79 static void get_meta(ByteIOContext *pb, char * str, int strsize, int size)
80 {
81     int res;
82
83     if (size > strsize-1)
84         res = get_buffer(pb, (uint8_t*)str, strsize-1);
85     else
86         res = get_buffer(pb, (uint8_t*)str, size);
87
88     if (res < 0)
89         return;
90
91     str[res] = 0;
92     if (size & 1)
93         size++;
94     size -= res;
95     if (size)
96         url_fskip(pb, size);
97 }
98
99 /* Returns the number of sound data frames or negative on error */
100 static unsigned int get_aiff_header(ByteIOContext *pb, AVCodecContext *codec,
101                              int size, unsigned version)
102 {
103     AVExtFloat ext;
104     double sample_rate;
105     unsigned int num_frames;
106
107
108     if (size & 1)
109         size++;
110
111     codec->codec_type = CODEC_TYPE_AUDIO;
112     codec->channels = get_be16(pb);
113     num_frames = get_be32(pb);
114     codec->bits_per_sample = get_be16(pb);
115
116     get_buffer(pb, (uint8_t*)&ext, sizeof(ext));/* Sample rate is in */
117     sample_rate = av_ext2dbl(ext);          /* 80 bits BE IEEE extended float */
118     codec->sample_rate = sample_rate;
119     size -= 18;
120
121     /* Got an AIFF-C? */
122     if (version == AIFF_C_VERSION1) {
123         codec->codec_tag = get_le32(pb);
124         codec->codec_id  = codec_get_id (codec_aiff_tags, codec->codec_tag);
125
126         if (codec->codec_id == 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);
129         }
130
131         size -= 4;
132     } else {
133         /* Need the codec type */
134         codec->codec_id = aiff_codec_get_id (codec->bits_per_sample);
135         codec->bits_per_sample = av_get_bits_per_sample(codec->codec_id);
136     }
137
138     if (!codec->codec_id)
139         return AVERROR_INVALIDDATA;
140
141     /* Block align needs to be computed in all cases, as the definition
142      * is specific to applications -> here we use the WAVE format definition */
143     codec->block_align = (codec->bits_per_sample * codec->channels) >> 3;
144
145     codec->bit_rate = codec->sample_rate * (codec->block_align << 3);
146
147     /* Chunk is over */
148     if (size)
149         url_fseek(pb, size, SEEK_CUR);
150
151     return num_frames;
152 }
153
154 #ifdef CONFIG_MUXERS
155 typedef struct {
156     offset_t form;
157     offset_t frames;
158     offset_t ssnd;
159 } AIFFOutputContext;
160
161 static int aiff_write_header(AVFormatContext *s)
162 {
163     AIFFOutputContext *aiff = s->priv_data;
164     ByteIOContext *pb = &s->pb;
165     AVCodecContext *enc = s->streams[0]->codec;
166     AVExtFloat sample_rate;
167     int aifc = 0;
168
169     /* First verify if format is ok */
170     if (!enc->codec_tag) {
171         return -1;
172     }
173
174     if (enc->codec_tag != MKTAG('N','O','N','E'))
175         aifc = 1;
176
177     /* FORM AIFF header */
178     put_tag(pb, "FORM");
179     aiff->form = url_ftell(pb);
180     put_be32(pb, 0);                    /* file length */
181     put_tag(pb, aifc ? "AIFC" : "AIFF");
182
183     if (aifc) {
184         /* Version chunk */
185         put_tag(pb, "FVER");
186         put_be32(pb, 4);
187         put_be32(pb, 0xA2805140);
188     }
189
190     /* Common chunk */
191     put_tag(pb, "COMM");
192     put_be32(pb, aifc ? 24 : 18); /* size */
193     put_be16(pb, enc->channels);        /* Number of channels */
194
195     aiff->frames = url_ftell(pb);
196     put_be32(pb, 0);                    /* Number of frames */
197
198     if (!enc->bits_per_sample)
199         enc->bits_per_sample = av_get_bits_per_sample(enc->codec_id);
200     if (!enc->bits_per_sample) {
201         av_log(s, AV_LOG_ERROR, "could not compute bits per sample\n");
202         return -1;
203     }
204     if (!enc->block_align)
205         enc->block_align = (enc->bits_per_sample * enc->channels) >> 3;
206
207     put_be16(pb, enc->bits_per_sample); /* Sample size */
208
209     sample_rate = av_dbl2ext((double)enc->sample_rate);
210     put_buffer(pb, (uint8_t*)&sample_rate, sizeof(sample_rate));
211
212     if (aifc) {
213         put_le32(pb, enc->codec_tag);
214         put_be16(pb, 0);
215     }
216
217     /* Sound data chunk */
218     put_tag(pb, "SSND");
219     aiff->ssnd = url_ftell(pb);         /* Sound chunk size */
220     put_be32(pb, 0);                    /* Sound samples data size */
221     put_be32(pb, 0);                    /* Data offset */
222     put_be32(pb, 0);                    /* Block-size (block align) */
223
224     av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
225
226     /* Data is starting here */
227     put_flush_packet(pb);
228
229     return 0;
230 }
231
232 static int aiff_write_packet(AVFormatContext *s, AVPacket *pkt)
233 {
234     ByteIOContext *pb = &s->pb;
235     put_buffer(pb, pkt->data, pkt->size);
236     return 0;
237 }
238
239 static int aiff_write_trailer(AVFormatContext *s)
240 {
241     ByteIOContext *pb = &s->pb;
242     AIFFOutputContext *aiff = s->priv_data;
243     AVCodecContext *enc = s->streams[0]->codec;
244
245     /* Chunks sizes must be even */
246     offset_t file_size, end_size;
247     end_size = file_size = url_ftell(pb);
248     if (file_size & 1) {
249         put_byte(pb, 0);
250         end_size++;
251     }
252
253     if (!url_is_streamed(&s->pb)) {
254         /* File length */
255         url_fseek(pb, aiff->form, SEEK_SET);
256         put_be32(pb, (uint32_t)(file_size - aiff->form - 4));
257
258         /* Number of sample frames */
259         url_fseek(pb, aiff->frames, SEEK_SET);
260         put_be32(pb, ((uint32_t)(file_size-aiff->ssnd-12))/enc->block_align);
261
262         /* Sound Data chunk size */
263         url_fseek(pb, aiff->ssnd, SEEK_SET);
264         put_be32(pb, (uint32_t)(file_size - aiff->ssnd - 4));
265
266         /* return to the end */
267         url_fseek(pb, end_size, SEEK_SET);
268
269         put_flush_packet(pb);
270     }
271
272     return 0;
273 }
274 #endif //CONFIG_MUXERS
275
276 static int aiff_probe(AVProbeData *p)
277 {
278     /* check file header */
279     if (p->buf[0] == 'F' && p->buf[1] == 'O' &&
280         p->buf[2] == 'R' && p->buf[3] == 'M' &&
281         p->buf[8] == 'A' && p->buf[9] == 'I' &&
282         p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
283         return AVPROBE_SCORE_MAX;
284     else
285         return 0;
286 }
287
288 /* aiff input */
289 static int aiff_read_header(AVFormatContext *s,
290                             AVFormatParameters *ap)
291 {
292     int size, filesize, offset;
293     uint32_t tag;
294     unsigned version = AIFF_C_VERSION1;
295     ByteIOContext *pb = &s->pb;
296     AVStream * st = s->streams[0];
297
298     /* check FORM header */
299     filesize = get_tag(pb, &tag);
300     if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
301         return AVERROR_INVALIDDATA;
302
303     /* AIFF data type */
304     tag = get_le32(pb);
305     if (tag == MKTAG('A', 'I', 'F', 'F'))       /* Got an AIFF file */
306         version = AIFF;
307     else if (tag != MKTAG('A', 'I', 'F', 'C'))  /* An AIFF-C file then */
308         return AVERROR_INVALIDDATA;
309
310     filesize -= 4;
311
312     st = av_new_stream(s, 0);
313     if (!st)
314         return AVERROR_NOMEM;
315
316     while (filesize > 0) {
317         /* parse different chunks */
318         size = get_tag(pb, &tag);
319         if (size < 0)
320             return size;
321
322         filesize -= size + 8;
323
324         switch (tag) {
325             case MKTAG('C', 'O', 'M', 'M'):     /* Common chunk */
326                 /* Then for the complete header info */
327                 st->nb_frames = get_aiff_header (pb, st->codec, size, version);
328                 if (st->nb_frames < 0)
329                         return st->nb_frames;
330                 break;
331
332             case MKTAG('F', 'V', 'E', 'R'):     /* Version chunk */
333                 version = get_be32(pb);
334                 break;
335
336             case MKTAG('N', 'A', 'M', 'E'):     /* Sample name chunk */
337                 get_meta (pb, s->title, sizeof(s->title), size);
338                 break;
339
340             case MKTAG('A', 'U', 'T', 'H'):     /* Author chunk */
341                 get_meta (pb, s->author, sizeof(s->author), size);
342                 break;
343
344             case MKTAG('(', 'c', ')', ' '):     /* Copyright chunk */
345                 get_meta (pb, s->copyright, sizeof(s->copyright), size);
346                 break;
347
348             case MKTAG('A', 'N', 'N', 'O'):     /* Annotation chunk */
349                 get_meta (pb, s->comment, sizeof(s->comment), size);
350                 break;
351
352             case MKTAG('S', 'S', 'N', 'D'):     /* Sampled sound chunk */
353                 get_be32(pb);               /* Block align... don't care */
354                 offset = get_be32(pb);      /* Offset of sound data */
355                 goto got_sound;
356
357             default: /* Jump */
358                 if (size & 1)   /* Always even aligned */
359                     size++;
360                 url_fskip (pb, size);
361         }
362     }
363
364     /* End of loop and didn't get sound */
365     return AVERROR_INVALIDDATA;
366
367 got_sound:
368     /* Now positioned, get the sound data start and end */
369     if (st->nb_frames)
370         s->file_size = st->nb_frames * st->codec->block_align;
371
372     av_set_pts_info(st, 64, 1, st->codec->sample_rate);
373     st->start_time = 0;
374     st->duration = st->nb_frames;
375
376     /* Position the stream at the first block */
377     url_fskip(pb, offset);
378
379     return 0;
380 }
381
382 #define MAX_SIZE 4096
383
384 static int aiff_read_packet(AVFormatContext *s,
385                             AVPacket *pkt)
386 {
387     AVStream *st = s->streams[0];
388     int res;
389
390     /* End of stream may be reached */
391     if (url_feof(&s->pb))
392         return AVERROR_IO;
393
394     /* Now for that packet */
395     res = av_get_packet(&s->pb, pkt, (MAX_SIZE / st->codec->block_align) * st->codec->block_align);
396     if (res < 0)
397         return res;
398
399     /* Only one stream in an AIFF file */
400     pkt->stream_index = 0;
401     return 0;
402 }
403
404 static int aiff_read_close(AVFormatContext *s)
405 {
406     return 0;
407 }
408
409 static int aiff_read_seek(AVFormatContext *s,
410                           int stream_index, int64_t timestamp, int flags)
411 {
412     return pcm_read_seek(s, stream_index, timestamp, flags);
413 }
414
415 #ifdef CONFIG_AIFF_DEMUXER
416 AVInputFormat aiff_demuxer = {
417     "aiff",
418     "Audio IFF",
419     0,
420     aiff_probe,
421     aiff_read_header,
422     aiff_read_packet,
423     aiff_read_close,
424     aiff_read_seek,
425     .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
426 };
427 #endif
428
429 #ifdef CONFIG_AIFF_MUXER
430 AVOutputFormat aiff_muxer = {
431     "aiff",
432     "Audio IFF",
433     "audio/aiff",
434     "aif,aiff,afc,aifc",
435     sizeof(AIFFOutputContext),
436     CODEC_ID_PCM_S16BE,
437     CODEC_ID_NONE,
438     aiff_write_header,
439     aiff_write_packet,
440     aiff_write_trailer,
441     .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
442 };
443 #endif