]> 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     /* Got an 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
120         switch (codec->codec_id) {
121         case CODEC_ID_PCM_S16BE:
122             codec->codec_id = aiff_codec_get_id(codec->bits_per_coded_sample);
123             codec->bits_per_coded_sample = av_get_bits_per_sample(codec->codec_id);
124             aiff->block_duration = 1;
125             break;
126         case CODEC_ID_ADPCM_IMA_QT:
127             codec->block_align = 34*codec->channels;
128             aiff->block_duration = 64;
129             break;
130         case CODEC_ID_MACE3:
131             codec->block_align = 2*codec->channels;
132             aiff->block_duration = 6;
133             break;
134         case CODEC_ID_MACE6:
135             codec->block_align = 1*codec->channels;
136             aiff->block_duration = 6;
137             break;
138         case CODEC_ID_GSM:
139             codec->block_align = 33;
140             aiff->block_duration = 160;
141             break;
142         case CODEC_ID_QCELP:
143             codec->block_align = 35;
144             aiff->block_duration = 160;
145             break;
146         default:
147             break;
148         }
149         size -= 4;
150     } else {
151         /* Need the codec type */
152         codec->codec_id = aiff_codec_get_id(codec->bits_per_coded_sample);
153         codec->bits_per_coded_sample = av_get_bits_per_sample(codec->codec_id);
154         aiff->block_duration = 1;
155     }
156
157     /* Block align needs to be computed in all cases, as the definition
158      * is specific to applications -> here we use the WAVE format definition */
159     if (!codec->block_align)
160         codec->block_align = (codec->bits_per_coded_sample * codec->channels) >> 3;
161
162     codec->bit_rate = codec->sample_rate * (codec->block_align << 3) /
163                       aiff->block_duration;
164
165     /* Chunk is over */
166     if (size)
167         avio_skip(pb, size);
168
169     return num_frames;
170 }
171
172 static int aiff_probe(AVProbeData *p)
173 {
174     /* check file header */
175     if (p->buf[0] == 'F' && p->buf[1] == 'O' &&
176         p->buf[2] == 'R' && p->buf[3] == 'M' &&
177         p->buf[8] == 'A' && p->buf[9] == 'I' &&
178         p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
179         return AVPROBE_SCORE_MAX;
180     else
181         return 0;
182 }
183
184 /* aiff input */
185 static int aiff_read_header(AVFormatContext *s)
186 {
187     int size, filesize;
188     int64_t offset = 0;
189     uint32_t tag;
190     unsigned version = AIFF_C_VERSION1;
191     AVIOContext *pb = s->pb;
192     AVStream * st;
193     AIFFInputContext *aiff = s->priv_data;
194
195     /* check FORM header */
196     filesize = get_tag(pb, &tag);
197     if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
198         return AVERROR_INVALIDDATA;
199
200     /* AIFF data type */
201     tag = avio_rl32(pb);
202     if (tag == MKTAG('A', 'I', 'F', 'F'))       /* Got an AIFF file */
203         version = AIFF;
204     else if (tag != MKTAG('A', 'I', 'F', 'C'))  /* An AIFF-C file then */
205         return AVERROR_INVALIDDATA;
206
207     filesize -= 4;
208
209     st = avformat_new_stream(s, NULL);
210     if (!st)
211         return AVERROR(ENOMEM);
212
213     while (filesize > 0) {
214         /* parse different chunks */
215         size = get_tag(pb, &tag);
216         if (size < 0)
217             return size;
218
219         filesize -= size + 8;
220
221         switch (tag) {
222         case MKTAG('C', 'O', 'M', 'M'):     /* Common chunk */
223             /* Then for the complete header info */
224             st->nb_frames = get_aiff_header(s, size, version);
225             if (st->nb_frames < 0)
226                 return st->nb_frames;
227             if (offset > 0) // COMM is after SSND
228                 goto got_sound;
229             break;
230         case MKTAG('F', 'V', 'E', 'R'):     /* Version chunk */
231             version = avio_rb32(pb);
232             break;
233         case MKTAG('N', 'A', 'M', 'E'):     /* Sample name chunk */
234             get_meta(s, "title"    , size);
235             break;
236         case MKTAG('A', 'U', 'T', 'H'):     /* Author chunk */
237             get_meta(s, "author"   , size);
238             break;
239         case MKTAG('(', 'c', ')', ' '):     /* Copyright chunk */
240             get_meta(s, "copyright", size);
241             break;
242         case MKTAG('A', 'N', 'N', 'O'):     /* Annotation chunk */
243             get_meta(s, "comment"  , size);
244             break;
245         case MKTAG('S', 'S', 'N', 'D'):     /* Sampled sound chunk */
246             aiff->data_end = avio_tell(pb) + size;
247             offset = avio_rb32(pb);      /* Offset of sound data */
248             avio_rb32(pb);               /* BlockSize... don't care */
249             offset += avio_tell(pb);    /* Compute absolute data offset */
250             if (st->codec->block_align)    /* Assume COMM already parsed */
251                 goto got_sound;
252             if (!pb->seekable) {
253                 av_log(s, AV_LOG_ERROR, "file is not seekable\n");
254                 return -1;
255             }
256             avio_skip(pb, size - 8);
257             break;
258         case MKTAG('w', 'a', 'v', 'e'):
259             if ((uint64_t)size > (1<<30))
260                 return -1;
261             st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
262             if (!st->codec->extradata)
263                 return AVERROR(ENOMEM);
264             st->codec->extradata_size = size;
265             avio_read(pb, st->codec->extradata, size);
266             break;
267         case MKTAG('C','H','A','N'):
268             if (size < 12)
269                 return AVERROR_INVALIDDATA;
270             ff_mov_read_chan(s, size, st->codec);
271             break;
272         default: /* Jump */
273             if (size & 1)   /* Always even aligned */
274                 size++;
275             avio_skip(pb, size);
276         }
277     }
278
279 got_sound:
280     if (!st->codec->block_align) {
281         av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
282         return -1;
283     }
284
285     /* Now positioned, get the sound data start and end */
286     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
287     st->start_time = 0;
288     st->duration = st->nb_frames * aiff->block_duration;
289
290     /* Position the stream at the first block */
291     avio_seek(pb, offset, SEEK_SET);
292
293     return 0;
294 }
295
296 #define MAX_SIZE 4096
297
298 static int aiff_read_packet(AVFormatContext *s,
299                             AVPacket *pkt)
300 {
301     AVStream *st = s->streams[0];
302     AIFFInputContext *aiff = s->priv_data;
303     int64_t max_size;
304     int res, size;
305
306     /* calculate size of remaining data */
307     max_size = aiff->data_end - avio_tell(s->pb);
308     if (max_size <= 0)
309         return AVERROR_EOF;
310
311     /* Now for that packet */
312     if (st->codec->block_align >= 33) // GSM, QCLP, IMA4
313         size = st->codec->block_align;
314     else
315         size = (MAX_SIZE / st->codec->block_align) * st->codec->block_align;
316     size = FFMIN(max_size, size);
317     res = av_get_packet(s->pb, pkt, size);
318     if (res < 0)
319         return res;
320
321     /* Only one stream in an AIFF file */
322     pkt->stream_index = 0;
323     pkt->duration     = (res / st->codec->block_align) * aiff->block_duration;
324     return 0;
325 }
326
327 AVInputFormat ff_aiff_demuxer = {
328     .name           = "aiff",
329     .long_name      = NULL_IF_CONFIG_SMALL("Audio IFF"),
330     .priv_data_size = sizeof(AIFFInputContext),
331     .read_probe     = aiff_probe,
332     .read_header    = aiff_read_header,
333     .read_packet    = aiff_read_packet,
334     .read_seek      = ff_pcm_read_seek,
335     .codec_tag= (const AVCodecTag* const []){ff_codec_aiff_tags, 0},
336 };