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