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