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