]> git.sesse.net Git - ffmpeg/blob - libavformat/aiffdec.c
Merge remote-tracking branch 'qatar/master'
[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/mathematics.h"
23 #include "libavutil/dict.h"
24 #include "avformat.h"
25 #include "internal.h"
26 #include "pcm.h"
27 #include "aiff.h"
28 #include "isom.h"
29 #include "id3v2.h"
30
31 #define AIFF                    0
32 #define AIFF_C_VERSION1         0xA2805140
33
34 typedef struct {
35     int64_t data_end;
36     int block_duration;
37 } AIFFInputContext;
38
39 static enum CodecID aiff_codec_get_id(int bps)
40 {
41     if (bps <= 8)
42         return CODEC_ID_PCM_S8;
43     if (bps <= 16)
44         return CODEC_ID_PCM_S16BE;
45     if (bps <= 24)
46         return CODEC_ID_PCM_S24BE;
47     if (bps <= 32)
48         return CODEC_ID_PCM_S32BE;
49
50     /* bigger than 32 isn't allowed  */
51     return CODEC_ID_NONE;
52 }
53
54 /* returns the size of the found tag */
55 static int get_tag(AVIOContext *pb, uint32_t * tag)
56 {
57     int size;
58
59     if (url_feof(pb))
60         return AVERROR(EIO);
61
62     *tag = avio_rl32(pb);
63     size = avio_rb32(pb);
64
65     if (size < 0)
66         size = 0x7fffffff;
67
68     return size;
69 }
70
71 /* Metadata string read */
72 static void get_meta(AVFormatContext *s, const char *key, int size)
73 {
74     uint8_t *str = av_malloc(size+1);
75
76     if (str) {
77         int res = avio_read(s->pb, str, size);
78         if (res < 0){
79             av_free(str);
80             return;
81         }
82         size += (size&1)-res;
83         str[res] = 0;
84         av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
85     }else
86         size+= size&1;
87
88     avio_skip(s->pb, size);
89 }
90
91 /* Returns the number of sound data frames or negative on error */
92 static unsigned int get_aiff_header(AVFormatContext *s, int size,
93                                     unsigned version)
94 {
95     AVIOContext *pb        = s->pb;
96     AVCodecContext *codec  = s->streams[0]->codec;
97     AIFFInputContext *aiff = s->priv_data;
98     int exp;
99     uint64_t val;
100     double sample_rate;
101     unsigned int num_frames;
102
103     if (size & 1)
104         size++;
105     codec->codec_type = AVMEDIA_TYPE_AUDIO;
106     codec->channels = avio_rb16(pb);
107     num_frames = avio_rb32(pb);
108     codec->bits_per_coded_sample = avio_rb16(pb);
109
110     exp = avio_rb16(pb);
111     val = avio_rb64(pb);
112     sample_rate = ldexp(val, exp - 16383 - 63);
113     codec->sample_rate = sample_rate;
114     size -= 18;
115
116     /* get codec id for AIFF-C */
117     if (version == AIFF_C_VERSION1) {
118         codec->codec_tag = avio_rl32(pb);
119         codec->codec_id  = ff_codec_get_id(ff_codec_aiff_tags, codec->codec_tag);
120         size -= 4;
121     }
122
123     if (version != AIFF_C_VERSION1 || codec->codec_id == CODEC_ID_PCM_S16BE) {
124         codec->codec_id = aiff_codec_get_id(codec->bits_per_coded_sample);
125         codec->bits_per_coded_sample = av_get_bits_per_sample(codec->codec_id);
126         aiff->block_duration = 1;
127     } else {
128         switch (codec->codec_id) {
129         case CODEC_ID_PCM_F32BE:
130         case CODEC_ID_PCM_F64BE:
131         case CODEC_ID_PCM_S16LE:
132         case CODEC_ID_PCM_ALAW:
133         case CODEC_ID_PCM_MULAW:
134             aiff->block_duration = 1;
135             break;
136         case CODEC_ID_ADPCM_IMA_QT:
137             codec->block_align = 34*codec->channels;
138             break;
139         case CODEC_ID_MACE3:
140             codec->block_align = 2*codec->channels;
141             break;
142         case CODEC_ID_MACE6:
143             codec->block_align = 1*codec->channels;
144             break;
145         case CODEC_ID_GSM:
146             codec->block_align = 33;
147             break;
148         case CODEC_ID_QCELP:
149             codec->block_align = 35;
150             break;
151         default:
152             aiff->block_duration = 1;
153             break;
154         }
155         if (codec->block_align > 0)
156             aiff->block_duration = av_get_audio_frame_duration(codec,
157                                                                codec->block_align);
158     }
159
160     /* Block align needs to be computed in all cases, as the definition
161      * is specific to applications -> here we use the WAVE format definition */
162     if (!codec->block_align)
163         codec->block_align = (codec->bits_per_coded_sample * codec->channels) >> 3;
164
165     if (aiff->block_duration) {
166         codec->bit_rate = codec->sample_rate * (codec->block_align << 3) /
167                           aiff->block_duration;
168     }
169
170     /* Chunk is over */
171     if (size)
172         avio_skip(pb, size);
173
174     return num_frames;
175 }
176
177 static int aiff_probe(AVProbeData *p)
178 {
179     /* check file header */
180     if (p->buf[0] == 'F' && p->buf[1] == 'O' &&
181         p->buf[2] == 'R' && p->buf[3] == 'M' &&
182         p->buf[8] == 'A' && p->buf[9] == 'I' &&
183         p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
184         return AVPROBE_SCORE_MAX;
185     else
186         return 0;
187 }
188
189 /* aiff input */
190 static int aiff_read_header(AVFormatContext *s)
191 {
192     int size, filesize;
193     int64_t offset = 0;
194     uint32_t tag;
195     unsigned version = AIFF_C_VERSION1;
196     AVIOContext *pb = s->pb;
197     AVStream * st;
198     AIFFInputContext *aiff = s->priv_data;
199     ID3v2ExtraMeta *id3v2_extra_meta = NULL;
200
201     /* check FORM header */
202     filesize = get_tag(pb, &tag);
203     if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
204         return AVERROR_INVALIDDATA;
205
206     /* AIFF data type */
207     tag = avio_rl32(pb);
208     if (tag == MKTAG('A', 'I', 'F', 'F'))       /* Got an AIFF file */
209         version = AIFF;
210     else if (tag != MKTAG('A', 'I', 'F', 'C'))  /* An AIFF-C file then */
211         return AVERROR_INVALIDDATA;
212
213     filesize -= 4;
214
215     st = avformat_new_stream(s, NULL);
216     if (!st)
217         return AVERROR(ENOMEM);
218
219     while (filesize > 0) {
220         /* parse different chunks */
221         size = get_tag(pb, &tag);
222         if (size < 0)
223             return size;
224
225         filesize -= size + 8;
226
227         switch (tag) {
228         case MKTAG('C', 'O', 'M', 'M'):     /* Common chunk */
229             /* Then for the complete header info */
230             st->nb_frames = get_aiff_header(s, size, version);
231             if (st->nb_frames < 0)
232                 return st->nb_frames;
233             if (offset > 0) // COMM is after SSND
234                 goto got_sound;
235             break;
236         case MKTAG('I', 'D', '3', ' '):
237             ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta);
238             ff_id3v2_free_extra_meta(&id3v2_extra_meta);
239             break;
240         case MKTAG('F', 'V', 'E', 'R'):     /* Version chunk */
241             version = avio_rb32(pb);
242             break;
243         case MKTAG('N', 'A', 'M', 'E'):     /* Sample name chunk */
244             get_meta(s, "title"    , size);
245             break;
246         case MKTAG('A', 'U', 'T', 'H'):     /* Author chunk */
247             get_meta(s, "author"   , size);
248             break;
249         case MKTAG('(', 'c', ')', ' '):     /* Copyright chunk */
250             get_meta(s, "copyright", size);
251             break;
252         case MKTAG('A', 'N', 'N', 'O'):     /* Annotation chunk */
253             get_meta(s, "comment"  , size);
254             break;
255         case MKTAG('S', 'S', 'N', 'D'):     /* Sampled sound chunk */
256             aiff->data_end = avio_tell(pb) + size;
257             offset = avio_rb32(pb);      /* Offset of sound data */
258             avio_rb32(pb);               /* BlockSize... don't care */
259             offset += avio_tell(pb);    /* Compute absolute data offset */
260             if (st->codec->block_align)    /* Assume COMM already parsed */
261                 goto got_sound;
262             if (!pb->seekable) {
263                 av_log(s, AV_LOG_ERROR, "file is not seekable\n");
264                 return -1;
265             }
266             avio_skip(pb, size - 8);
267             break;
268         case MKTAG('w', 'a', 'v', 'e'):
269             if ((uint64_t)size > (1<<30))
270                 return -1;
271             st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
272             if (!st->codec->extradata)
273                 return AVERROR(ENOMEM);
274             st->codec->extradata_size = size;
275             avio_read(pb, st->codec->extradata, size);
276             break;
277         case MKTAG('C','H','A','N'):
278             if(ff_mov_read_chan(s, st, size) < 0)
279                 return AVERROR_INVALIDDATA;
280             break;
281         default: /* Jump */
282             if (size & 1)   /* Always even aligned */
283                 size++;
284             avio_skip(pb, size);
285         }
286     }
287
288 got_sound:
289     if (!st->codec->block_align) {
290         av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
291         return -1;
292     }
293
294     /* Now positioned, get the sound data start and end */
295     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
296     st->start_time = 0;
297     st->duration = st->nb_frames * aiff->block_duration;
298
299     /* Position the stream at the first block */
300     avio_seek(pb, offset, SEEK_SET);
301
302     return 0;
303 }
304
305 #define MAX_SIZE 4096
306
307 static int aiff_read_packet(AVFormatContext *s,
308                             AVPacket *pkt)
309 {
310     AVStream *st = s->streams[0];
311     AIFFInputContext *aiff = s->priv_data;
312     int64_t max_size;
313     int res, size;
314
315     /* calculate size of remaining data */
316     max_size = aiff->data_end - avio_tell(s->pb);
317     if (max_size <= 0)
318         return AVERROR_EOF;
319
320     /* Now for that packet */
321     if (st->codec->block_align >= 33) // GSM, QCLP, IMA4
322         size = st->codec->block_align;
323     else
324         size = (MAX_SIZE / st->codec->block_align) * st->codec->block_align;
325     size = FFMIN(max_size, size);
326     res = av_get_packet(s->pb, pkt, size);
327     if (res < 0)
328         return res;
329
330     if (size >= st->codec->block_align)
331         pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
332     /* Only one stream in an AIFF file */
333     pkt->stream_index = 0;
334     pkt->duration     = (res / st->codec->block_align) * aiff->block_duration;
335     return 0;
336 }
337
338 AVInputFormat ff_aiff_demuxer = {
339     .name           = "aiff",
340     .long_name      = NULL_IF_CONFIG_SMALL("Audio IFF"),
341     .priv_data_size = sizeof(AIFFInputContext),
342     .read_probe     = aiff_probe,
343     .read_header    = aiff_read_header,
344     .read_packet    = aiff_read_packet,
345     .read_seek      = ff_pcm_read_seek,
346     .codec_tag      = (const AVCodecTag* const []){ ff_codec_aiff_tags, 0 },
347 };