OSDN Git Service

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