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