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