]> git.sesse.net Git - ffmpeg/blob - libavformat/aiffdec.c
avformat: Constify all muxer/demuxers
[ffmpeg] / libavformat / aiffdec.c
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/dict.h"
24 #include "avformat.h"
25 #include "internal.h"
26 #include "pcm.h"
27 #include "aiff.h"
28 #include "id3v2.h"
29 #include "mov_chan.h"
30 #include "replaygain.h"
31
32 #define AIFF                    0
33 #define AIFF_C_VERSION1         0xA2805140
34
35 typedef struct AIFFInputContext {
36     int64_t data_end;
37     int block_duration;
38 } AIFFInputContext;
39
40 static enum AVCodecID aiff_codec_get_id(int bps)
41 {
42     if (bps <= 8)
43         return AV_CODEC_ID_PCM_S8;
44     if (bps <= 16)
45         return AV_CODEC_ID_PCM_S16BE;
46     if (bps <= 24)
47         return AV_CODEC_ID_PCM_S24BE;
48     if (bps <= 32)
49         return AV_CODEC_ID_PCM_S32BE;
50
51     /* bigger than 32 isn't allowed  */
52     return AV_CODEC_ID_NONE;
53 }
54
55 /* returns the size of the found tag */
56 static int get_tag(AVIOContext *pb, uint32_t * tag)
57 {
58     int size;
59
60     if (avio_feof(pb))
61         return AVERROR(EIO);
62
63     *tag = avio_rl32(pb);
64     size = avio_rb32(pb);
65
66     if (size < 0)
67         size = 0x7fffffff;
68
69     return size;
70 }
71
72 /* Metadata string read */
73 static void get_meta(AVFormatContext *s, const char *key, int size)
74 {
75     uint8_t *str = av_malloc(size+1);
76
77     if (str) {
78         int res = avio_read(s->pb, str, size);
79         if (res < 0){
80             av_free(str);
81             return;
82         }
83         size -= res;
84         str[res] = 0;
85         av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
86     }
87
88     avio_skip(s->pb, size);
89 }
90
91 /* Returns the number of sound data frames or negative on error */
92 static int get_aiff_header(AVFormatContext *s, int size,
93                                     unsigned version)
94 {
95     AVIOContext *pb        = s->pb;
96     AVCodecParameters *par = s->streams[0]->codecpar;
97     AIFFInputContext *aiff = s->priv_data;
98     int exp;
99     uint64_t val;
100     int sample_rate;
101     unsigned int num_frames;
102
103     if (size & 1)
104         size++;
105     par->codec_type = AVMEDIA_TYPE_AUDIO;
106     par->channels = avio_rb16(pb);
107     num_frames = avio_rb32(pb);
108     par->bits_per_coded_sample = avio_rb16(pb);
109
110     exp = avio_rb16(pb) - 16383 - 63;
111     val = avio_rb64(pb);
112     if (exp <-63 || exp >63) {
113         av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
114         return AVERROR_INVALIDDATA;
115     }
116     if (exp >= 0)
117         sample_rate = val << exp;
118     else
119         sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
120     par->sample_rate = sample_rate;
121     if (size < 18)
122         return AVERROR_INVALIDDATA;
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);
130         par->codec_id  = ff_codec_get_id(ff_codec_aiff_tags, par->codec_tag);
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) {
138         par->codec_id = aiff_codec_get_id(par->bits_per_coded_sample);
139         par->bits_per_coded_sample = av_get_bits_per_sample(par->codec_id);
140         aiff->block_duration = 1;
141     } else {
142         switch (par->codec_id) {
143         case AV_CODEC_ID_PCM_F32BE:
144         case AV_CODEC_ID_PCM_F64BE:
145         case AV_CODEC_ID_PCM_S16LE:
146         case AV_CODEC_ID_PCM_ALAW:
147         case AV_CODEC_ID_PCM_MULAW:
148             aiff->block_duration = 1;
149             break;
150         case AV_CODEC_ID_ADPCM_IMA_QT:
151             par->block_align = 34 * par->channels;
152             break;
153         case AV_CODEC_ID_MACE3:
154             par->block_align = 2 * par->channels;
155             break;
156         case AV_CODEC_ID_ADPCM_G726LE:
157             par->bits_per_coded_sample = 5;
158         case AV_CODEC_ID_ADPCM_IMA_WS:
159         case AV_CODEC_ID_ADPCM_G722:
160         case AV_CODEC_ID_MACE6:
161         case AV_CODEC_ID_SDX2_DPCM:
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)
172             aiff->block_duration = av_get_audio_frame_duration2(par,
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(const 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 */
206 static int aiff_read_header(AVFormatContext *s)
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;
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         if (size >= 0x7fffffff - 8)
247             filesize = 0;
248         else
249             filesize -= size + 8;
250
251         switch (tag) {
252         case MKTAG('C', 'O', 'M', 'M'):     /* Common chunk */
253             /* Then for the complete header info */
254             st->nb_frames = get_aiff_header(s, size, version);
255             if (st->nb_frames < 0)
256                 return st->nb_frames;
257             if (offset > 0) // COMM is after SSND
258                 goto got_sound;
259             break;
260         case MKTAG('I', 'D', '3', ' '):
261             position = avio_tell(pb);
262             ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
263             if (id3v2_extra_meta)
264                 if ((ret = ff_id3v2_parse_apic(s, id3v2_extra_meta)) < 0 ||
265                     (ret = ff_id3v2_parse_chapters(s, id3v2_extra_meta)) < 0) {
266                     ff_id3v2_free_extra_meta(&id3v2_extra_meta);
267                     return ret;
268                 }
269             ff_id3v2_free_extra_meta(&id3v2_extra_meta);
270             if (position + size > avio_tell(pb))
271                 avio_skip(pb, position + size - avio_tell(pb));
272             break;
273         case MKTAG('F', 'V', 'E', 'R'):     /* Version chunk */
274             version = avio_rb32(pb);
275             break;
276         case MKTAG('N', 'A', 'M', 'E'):     /* Sample name chunk */
277             get_meta(s, "title"    , size);
278             break;
279         case MKTAG('A', 'U', 'T', 'H'):     /* Author chunk */
280             get_meta(s, "author"   , size);
281             break;
282         case MKTAG('(', 'c', ')', ' '):     /* Copyright chunk */
283             get_meta(s, "copyright", size);
284             break;
285         case MKTAG('A', 'N', 'N', 'O'):     /* Annotation chunk */
286             get_meta(s, "comment"  , size);
287             break;
288         case MKTAG('S', 'S', 'N', 'D'):     /* Sampled sound chunk */
289             if (size < 8)
290                 return AVERROR_INVALIDDATA;
291             aiff->data_end = avio_tell(pb) + size;
292             offset = avio_rb32(pb);      /* Offset of sound data */
293             avio_rb32(pb);               /* BlockSize... don't care */
294             offset += avio_tell(pb);    /* Compute absolute data offset */
295             if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL))    /* Assume COMM already parsed */
296                 goto got_sound;
297             if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
298                 av_log(s, AV_LOG_ERROR, "file is not seekable\n");
299                 return -1;
300             }
301             avio_skip(pb, size - 8);
302             break;
303         case MKTAG('w', 'a', 'v', 'e'):
304             if ((uint64_t)size > (1<<30))
305                 return -1;
306             if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
307                 return ret;
308             if (   (st->codecpar->codec_id == AV_CODEC_ID_QDMC || st->codecpar->codec_id == AV_CODEC_ID_QDM2)
309                 && size>=12*4 && !st->codecpar->block_align) {
310                 st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
311                 aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
312             } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
313                 char rate = 0;
314                 if (size >= 25)
315                     rate = st->codecpar->extradata[24];
316                 switch (rate) {
317                 case 'H': // RATE_HALF
318                     st->codecpar->block_align = 17;
319                     break;
320                 case 'F': // RATE_FULL
321                 default:
322                     st->codecpar->block_align = 35;
323                 }
324                 aiff->block_duration = 160;
325                 st->codecpar->bit_rate = (int64_t)st->codecpar->sample_rate * (st->codecpar->block_align << 3) /
326                                          aiff->block_duration;
327             }
328             break;
329         case MKTAG('C','H','A','N'):
330             if ((ret = ff_mov_read_chan(s, pb, st, size)) < 0)
331                 return ret;
332             break;
333         case MKTAG('A','P','C','M'): /* XA ADPCM compressed sound chunk */
334             st->codecpar->codec_id = AV_CODEC_ID_ADPCM_XA;
335             aiff->data_end = avio_tell(pb) + size;
336             offset = avio_tell(pb) + 8;
337             /* This field is unknown and its data seems to be irrelevant */
338             avio_rb32(pb);
339             st->codecpar->block_align = avio_rb32(pb);
340
341             goto got_sound;
342             break;
343         case 0:
344             if (offset > 0 && st->codecpar->block_align) // COMM && SSND
345                 goto got_sound;
346         default: /* Jump */
347             avio_skip(pb, size);
348         }
349
350         /* Skip required padding byte for odd-sized chunks. */
351         if (size & 1) {
352             filesize--;
353             avio_skip(pb, 1);
354         }
355     }
356
357     ret = ff_replaygain_export(st, s->metadata);
358     if (ret < 0)
359         return ret;
360
361 got_sound:
362     if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
363         av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
364         st->codecpar->block_align = 35;
365     } else if (!st->codecpar->block_align) {
366         av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
367         return -1;
368     }
369
370     /* Now positioned, get the sound data start and end */
371     avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
372     st->start_time = 0;
373     st->duration = st->nb_frames * aiff->block_duration;
374
375     /* Position the stream at the first block */
376     avio_seek(pb, offset, SEEK_SET);
377
378     return 0;
379 }
380
381 #define MAX_SIZE 4096
382
383 static int aiff_read_packet(AVFormatContext *s,
384                             AVPacket *pkt)
385 {
386     AVStream *st = s->streams[0];
387     AIFFInputContext *aiff = s->priv_data;
388     int64_t max_size;
389     int res, size;
390
391     /* calculate size of remaining data */
392     max_size = aiff->data_end - avio_tell(s->pb);
393     if (max_size <= 0)
394         return AVERROR_EOF;
395
396     if (!st->codecpar->block_align) {
397         av_log(s, AV_LOG_ERROR, "block_align not set\n");
398         return AVERROR_INVALIDDATA;
399     }
400
401     /* Now for that packet */
402     switch (st->codecpar->codec_id) {
403     case AV_CODEC_ID_ADPCM_IMA_QT:
404     case AV_CODEC_ID_GSM:
405     case AV_CODEC_ID_QDM2:
406     case AV_CODEC_ID_QCELP:
407         size = st->codecpar->block_align;
408         break;
409     default:
410         size = st->codecpar->block_align ? (MAX_SIZE / st->codecpar->block_align) * st->codecpar->block_align : MAX_SIZE;
411         if (!size)
412             return AVERROR_INVALIDDATA;
413     }
414     size = FFMIN(max_size, size);
415     res = av_get_packet(s->pb, pkt, size);
416     if (res < 0)
417         return res;
418
419     if (size >= st->codecpar->block_align)
420         pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
421     /* Only one stream in an AIFF file */
422     pkt->stream_index = 0;
423     pkt->duration     = (res / st->codecpar->block_align) * aiff->block_duration;
424     return 0;
425 }
426
427 const AVInputFormat ff_aiff_demuxer = {
428     .name           = "aiff",
429     .long_name      = NULL_IF_CONFIG_SMALL("Audio IFF"),
430     .priv_data_size = sizeof(AIFFInputContext),
431     .read_probe     = aiff_probe,
432     .read_header    = aiff_read_header,
433     .read_packet    = aiff_read_packet,
434     .read_seek      = ff_pcm_read_seek,
435     .codec_tag      = ff_aiff_codec_tags_list,
436 };