]> git.sesse.net Git - ffmpeg/blob - libavformat/aiffdec.c
rtsp: Initialize the media_type_mask in the rtp guessing demuxer
[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 "internal.h"
26 #include "pcm.h"
27 #include "aiff.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 (pb->eof_reached)
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     int res;
73
74     if (!str) {
75         avio_skip(s->pb, size);
76         return;
77     }
78
79     res = avio_read(s->pb, str, size);
80     if (res < 0)
81         return;
82
83     str[res] = 0;
84     av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
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 = avformat_new_stream(s, NULL);
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         default: /* Jump */
259             if (size & 1)   /* Always even aligned */
260                 size++;
261             avio_skip(pb, size);
262         }
263     }
264
265     if (!st->codec->block_align) {
266         av_log(s, AV_LOG_ERROR, "could not find COMM tag\n");
267         return -1;
268     }
269
270 got_sound:
271     /* Now positioned, get the sound data start and end */
272     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
273     st->start_time = 0;
274     st->duration = st->codec->frame_size ?
275         st->nb_frames * st->codec->frame_size : st->nb_frames;
276
277     /* Position the stream at the first block */
278     avio_seek(pb, offset, SEEK_SET);
279
280     return 0;
281 }
282
283 #define MAX_SIZE 4096
284
285 static int aiff_read_packet(AVFormatContext *s,
286                             AVPacket *pkt)
287 {
288     AVStream *st = s->streams[0];
289     AIFFInputContext *aiff = s->priv_data;
290     int64_t max_size;
291     int res, size;
292
293     /* calculate size of remaining data */
294     max_size = aiff->data_end - avio_tell(s->pb);
295     if (max_size <= 0)
296         return AVERROR_EOF;
297
298     /* Now for that packet */
299     if (st->codec->block_align >= 33) // GSM, QCLP, IMA4
300         size = st->codec->block_align;
301     else
302         size = (MAX_SIZE / st->codec->block_align) * st->codec->block_align;
303     size = FFMIN(max_size, size);
304     res = av_get_packet(s->pb, pkt, size);
305     if (res < 0)
306         return res;
307
308     /* Only one stream in an AIFF file */
309     pkt->stream_index = 0;
310     return 0;
311 }
312
313 AVInputFormat ff_aiff_demuxer = {
314     .name           = "aiff",
315     .long_name      = NULL_IF_CONFIG_SMALL("Audio IFF"),
316     .priv_data_size = sizeof(AIFFInputContext),
317     .read_probe     = aiff_probe,
318     .read_header    = aiff_read_header,
319     .read_packet    = aiff_read_packet,
320     .read_seek      = pcm_read_seek,
321     .codec_tag= (const AVCodecTag* const []){ff_codec_aiff_tags, 0},
322 };