Split the RTP muxer out of rtp.c, to simplify the RTSP demuxer's dependencies
[ffmpeg-lucabe.git] / libavformat / ape.c
blob358ad2e8b22e78c5409ecd6d14c3e647e7b06eda
1 /*
2 * Monkey's Audio APE demuxer
3 * Copyright (c) 2007 Benjamin Zores <ben@geexbox.org>
4 * based upon libdemac from Dave Chapman.
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <stdio.h>
25 #include "avformat.h"
27 #define ENABLE_DEBUG 0
29 /* The earliest and latest file formats supported by this library */
30 #define APE_MIN_VERSION 3950
31 #define APE_MAX_VERSION 3990
33 #define MAC_FORMAT_FLAG_8_BIT 1 // is 8-bit [OBSOLETE]
34 #define MAC_FORMAT_FLAG_CRC 2 // uses the new CRC32 error detection [OBSOLETE]
35 #define MAC_FORMAT_FLAG_HAS_PEAK_LEVEL 4 // uint32 nPeakLevel after the header [OBSOLETE]
36 #define MAC_FORMAT_FLAG_24_BIT 8 // is 24-bit [OBSOLETE]
37 #define MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS 16 // has the number of seek elements after the peak level
38 #define MAC_FORMAT_FLAG_CREATE_WAV_HEADER 32 // create the wave header on decompression (not stored)
40 #define MAC_SUBFRAME_SIZE 4608
42 #define APE_EXTRADATA_SIZE 6
44 /* APE tags */
45 #define APE_TAG_VERSION 2000
46 #define APE_TAG_FOOTER_BYTES 32
47 #define APE_TAG_FLAG_CONTAINS_HEADER (1 << 31)
48 #define APE_TAG_FLAG_IS_HEADER (1 << 29)
50 #define TAG(name, field) {name, offsetof(AVFormatContext, field), sizeof(((AVFormatContext *)0)->field)}
52 static const struct {
53 char *name;
54 int offset;
55 int size;
56 } tags[] = {
57 TAG("Title" , title ),
58 TAG("Artist" , author ),
59 TAG("Copyright", copyright),
60 TAG("Comment" , comment ),
61 TAG("Album" , album ),
62 TAG("Year" , year ),
63 TAG("Track" , track ),
64 TAG("Genre" , genre ),
65 { NULL }
68 typedef struct {
69 int64_t pos;
70 int nblocks;
71 int size;
72 int skip;
73 int64_t pts;
74 } APEFrame;
76 typedef struct {
77 /* Derived fields */
78 uint32_t junklength;
79 uint32_t firstframe;
80 uint32_t totalsamples;
81 int currentframe;
82 APEFrame *frames;
84 /* Info from Descriptor Block */
85 char magic[4];
86 int16_t fileversion;
87 int16_t padding1;
88 uint32_t descriptorlength;
89 uint32_t headerlength;
90 uint32_t seektablelength;
91 uint32_t wavheaderlength;
92 uint32_t audiodatalength;
93 uint32_t audiodatalength_high;
94 uint32_t wavtaillength;
95 uint8_t md5[16];
97 /* Info from Header Block */
98 uint16_t compressiontype;
99 uint16_t formatflags;
100 uint32_t blocksperframe;
101 uint32_t finalframeblocks;
102 uint32_t totalframes;
103 uint16_t bps;
104 uint16_t channels;
105 uint32_t samplerate;
107 /* Seektable */
108 uint32_t *seektable;
109 } APEContext;
111 static void ape_tag_read_field(AVFormatContext *s)
113 ByteIOContext *pb = s->pb;
114 uint8_t buf[1024];
115 uint32_t size;
116 int i;
118 memset(buf, 0, 1024);
119 size = get_le32(pb); /* field size */
120 url_fskip(pb, 4); /* skip field flags */
122 for (i=0; pb->buf_ptr[i]!='0' && pb->buf_ptr[i]>=0x20 && pb->buf_ptr[i]<=0x7E; i++);
124 get_buffer(pb, buf, FFMIN(i, 1024));
125 url_fskip(pb, 1);
127 for (i=0; tags[i].name; i++)
128 if (!strcmp (buf, tags[i].name)) {
129 if (tags[i].size == sizeof(int)) {
130 char tmp[16];
131 get_buffer(pb, tmp, FFMIN(sizeof(tmp), size));
132 *(int *)(((char *)s)+tags[i].offset) = atoi(tmp);
133 } else {
134 get_buffer(pb, ((char *)s) + tags[i].offset,
135 FFMIN(tags[i].size, size));
137 break;
140 if (!tags[i].name)
141 url_fskip(pb, size);
144 static void ape_parse_tag(AVFormatContext *s)
146 ByteIOContext *pb = s->pb;
147 int file_size = url_fsize(pb);
148 uint32_t val, fields, tag_bytes;
149 uint8_t buf[8];
150 int i;
152 if (file_size < APE_TAG_FOOTER_BYTES)
153 return;
155 url_fseek(pb, file_size - APE_TAG_FOOTER_BYTES, SEEK_SET);
157 get_buffer(pb, buf, 8); /* APETAGEX */
158 if (strncmp(buf, "APETAGEX", 8)) {
159 av_log(NULL, AV_LOG_ERROR, "Invalid APE Tags\n");
160 return;
163 val = get_le32(pb); /* APE tag version */
164 if (val > APE_TAG_VERSION) {
165 av_log(NULL, AV_LOG_ERROR, "Unsupported tag version. (>=%d)\n", APE_TAG_VERSION);
166 return;
169 tag_bytes = get_le32(pb); /* tag size */
170 if (tag_bytes - APE_TAG_FOOTER_BYTES > (1024 * 1024 * 16)) {
171 av_log(NULL, AV_LOG_ERROR, "Tag size is way too big\n");
172 return;
175 fields = get_le32(pb); /* number of fields */
176 if (fields > 65536) {
177 av_log(NULL, AV_LOG_ERROR, "Too many tag fields (%d)\n", fields);
178 return;
181 val = get_le32(pb); /* flags */
182 if (val & APE_TAG_FLAG_IS_HEADER) {
183 av_log(NULL, AV_LOG_ERROR, "APE Tag is a header\n");
184 return;
187 if (val & APE_TAG_FLAG_CONTAINS_HEADER)
188 tag_bytes += 2*APE_TAG_FOOTER_BYTES;
190 url_fseek(pb, file_size - tag_bytes, SEEK_SET);
192 for (i=0; i<fields; i++)
193 ape_tag_read_field(s);
195 #if ENABLE_DEBUG
196 av_log(NULL, AV_LOG_DEBUG, "\nAPE Tags:\n\n");
197 av_log(NULL, AV_LOG_DEBUG, "title = %s\n", s->title);
198 av_log(NULL, AV_LOG_DEBUG, "author = %s\n", s->author);
199 av_log(NULL, AV_LOG_DEBUG, "copyright = %s\n", s->copyright);
200 av_log(NULL, AV_LOG_DEBUG, "comment = %s\n", s->comment);
201 av_log(NULL, AV_LOG_DEBUG, "album = %s\n", s->album);
202 av_log(NULL, AV_LOG_DEBUG, "year = %d\n", s->year);
203 av_log(NULL, AV_LOG_DEBUG, "track = %d\n", s->track);
204 av_log(NULL, AV_LOG_DEBUG, "genre = %s\n", s->genre);
205 #endif
208 static int ape_probe(AVProbeData * p)
210 if (p->buf[0] == 'M' && p->buf[1] == 'A' && p->buf[2] == 'C' && p->buf[3] == ' ')
211 return AVPROBE_SCORE_MAX;
213 return 0;
216 static void ape_dumpinfo(APEContext * ape_ctx)
218 #if ENABLE_DEBUG
219 int i;
221 av_log(NULL, AV_LOG_DEBUG, "Descriptor Block:\n\n");
222 av_log(NULL, AV_LOG_DEBUG, "magic = \"%c%c%c%c\"\n", ape_ctx->magic[0], ape_ctx->magic[1], ape_ctx->magic[2], ape_ctx->magic[3]);
223 av_log(NULL, AV_LOG_DEBUG, "fileversion = %d\n", ape_ctx->fileversion);
224 av_log(NULL, AV_LOG_DEBUG, "descriptorlength = %d\n", ape_ctx->descriptorlength);
225 av_log(NULL, AV_LOG_DEBUG, "headerlength = %d\n", ape_ctx->headerlength);
226 av_log(NULL, AV_LOG_DEBUG, "seektablelength = %d\n", ape_ctx->seektablelength);
227 av_log(NULL, AV_LOG_DEBUG, "wavheaderlength = %d\n", ape_ctx->wavheaderlength);
228 av_log(NULL, AV_LOG_DEBUG, "audiodatalength = %d\n", ape_ctx->audiodatalength);
229 av_log(NULL, AV_LOG_DEBUG, "audiodatalength_high = %d\n", ape_ctx->audiodatalength_high);
230 av_log(NULL, AV_LOG_DEBUG, "wavtaillength = %d\n", ape_ctx->wavtaillength);
231 av_log(NULL, AV_LOG_DEBUG, "md5 = ");
232 for (i = 0; i < 16; i++)
233 av_log(NULL, AV_LOG_DEBUG, "%02x", ape_ctx->md5[i]);
234 av_log(NULL, AV_LOG_DEBUG, "\n");
236 av_log(NULL, AV_LOG_DEBUG, "\nHeader Block:\n\n");
238 av_log(NULL, AV_LOG_DEBUG, "compressiontype = %d\n", ape_ctx->compressiontype);
239 av_log(NULL, AV_LOG_DEBUG, "formatflags = %d\n", ape_ctx->formatflags);
240 av_log(NULL, AV_LOG_DEBUG, "blocksperframe = %d\n", ape_ctx->blocksperframe);
241 av_log(NULL, AV_LOG_DEBUG, "finalframeblocks = %d\n", ape_ctx->finalframeblocks);
242 av_log(NULL, AV_LOG_DEBUG, "totalframes = %d\n", ape_ctx->totalframes);
243 av_log(NULL, AV_LOG_DEBUG, "bps = %d\n", ape_ctx->bps);
244 av_log(NULL, AV_LOG_DEBUG, "channels = %d\n", ape_ctx->channels);
245 av_log(NULL, AV_LOG_DEBUG, "samplerate = %d\n", ape_ctx->samplerate);
247 av_log(NULL, AV_LOG_DEBUG, "\nSeektable\n\n");
248 if ((ape_ctx->seektablelength / sizeof(uint32_t)) != ape_ctx->totalframes) {
249 av_log(NULL, AV_LOG_DEBUG, "No seektable\n");
250 } else {
251 for (i = 0; i < ape_ctx->seektablelength / sizeof(uint32_t); i++) {
252 if (i < ape_ctx->totalframes - 1) {
253 av_log(NULL, AV_LOG_DEBUG, "%8d %d (%d bytes)\n", i, ape_ctx->seektable[i], ape_ctx->seektable[i + 1] - ape_ctx->seektable[i]);
254 } else {
255 av_log(NULL, AV_LOG_DEBUG, "%8d %d\n", i, ape_ctx->seektable[i]);
260 av_log(NULL, AV_LOG_DEBUG, "\nFrames\n\n");
261 for (i = 0; i < ape_ctx->totalframes; i++)
262 av_log(NULL, AV_LOG_DEBUG, "%8d %8lld %8d (%d samples)\n", i, ape_ctx->frames[i].pos, ape_ctx->frames[i].size, ape_ctx->frames[i].nblocks);
264 av_log(NULL, AV_LOG_DEBUG, "\nCalculated information:\n\n");
265 av_log(NULL, AV_LOG_DEBUG, "junklength = %d\n", ape_ctx->junklength);
266 av_log(NULL, AV_LOG_DEBUG, "firstframe = %d\n", ape_ctx->firstframe);
267 av_log(NULL, AV_LOG_DEBUG, "totalsamples = %d\n", ape_ctx->totalsamples);
268 #endif
271 static int ape_read_header(AVFormatContext * s, AVFormatParameters * ap)
273 ByteIOContext *pb = s->pb;
274 APEContext *ape = s->priv_data;
275 AVStream *st;
276 uint32_t tag;
277 int i;
278 int total_blocks;
279 int64_t pts;
281 /* TODO: Skip any leading junk such as id3v2 tags */
282 ape->junklength = 0;
284 tag = get_le32(pb);
285 if (tag != MKTAG('M', 'A', 'C', ' '))
286 return -1;
288 ape->fileversion = get_le16(pb);
290 if (ape->fileversion < APE_MIN_VERSION || ape->fileversion > APE_MAX_VERSION) {
291 av_log(s, AV_LOG_ERROR, "Unsupported file version - %d.%02d\n", ape->fileversion / 1000, (ape->fileversion % 1000) / 10);
292 return -1;
295 if (ape->fileversion >= 3980) {
296 ape->padding1 = get_le16(pb);
297 ape->descriptorlength = get_le32(pb);
298 ape->headerlength = get_le32(pb);
299 ape->seektablelength = get_le32(pb);
300 ape->wavheaderlength = get_le32(pb);
301 ape->audiodatalength = get_le32(pb);
302 ape->audiodatalength_high = get_le32(pb);
303 ape->wavtaillength = get_le32(pb);
304 get_buffer(pb, ape->md5, 16);
306 /* Skip any unknown bytes at the end of the descriptor.
307 This is for future compatibility */
308 if (ape->descriptorlength > 52)
309 url_fseek(pb, ape->descriptorlength - 52, SEEK_CUR);
311 /* Read header data */
312 ape->compressiontype = get_le16(pb);
313 ape->formatflags = get_le16(pb);
314 ape->blocksperframe = get_le32(pb);
315 ape->finalframeblocks = get_le32(pb);
316 ape->totalframes = get_le32(pb);
317 ape->bps = get_le16(pb);
318 ape->channels = get_le16(pb);
319 ape->samplerate = get_le32(pb);
320 } else {
321 ape->descriptorlength = 0;
322 ape->headerlength = 32;
324 ape->compressiontype = get_le16(pb);
325 ape->formatflags = get_le16(pb);
326 ape->channels = get_le16(pb);
327 ape->samplerate = get_le32(pb);
328 ape->wavheaderlength = get_le32(pb);
329 ape->wavtaillength = get_le32(pb);
330 ape->totalframes = get_le32(pb);
331 ape->finalframeblocks = get_le32(pb);
333 if (ape->formatflags & MAC_FORMAT_FLAG_HAS_PEAK_LEVEL) {
334 url_fseek(pb, 4, SEEK_CUR); /* Skip the peak level */
335 ape->headerlength += 4;
338 if (ape->formatflags & MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS) {
339 ape->seektablelength = get_le32(pb);
340 ape->headerlength += 4;
341 ape->seektablelength *= sizeof(int32_t);
342 } else
343 ape->seektablelength = ape->totalframes * sizeof(int32_t);
345 if (ape->formatflags & MAC_FORMAT_FLAG_8_BIT)
346 ape->bps = 8;
347 else if (ape->formatflags & MAC_FORMAT_FLAG_24_BIT)
348 ape->bps = 24;
349 else
350 ape->bps = 16;
352 if (ape->fileversion >= 3950)
353 ape->blocksperframe = 73728 * 4;
354 else if (ape->fileversion >= 3900 || (ape->fileversion >= 3800 && ape->compressiontype >= 4000))
355 ape->blocksperframe = 73728;
356 else
357 ape->blocksperframe = 9216;
359 /* Skip any stored wav header */
360 if (!(ape->formatflags & MAC_FORMAT_FLAG_CREATE_WAV_HEADER))
361 url_fskip(pb, ape->wavheaderlength);
364 if(ape->totalframes > UINT_MAX / sizeof(APEFrame)){
365 av_log(s, AV_LOG_ERROR, "Too many frames: %d\n", ape->totalframes);
366 return -1;
368 ape->frames = av_malloc(ape->totalframes * sizeof(APEFrame));
369 if(!ape->frames)
370 return AVERROR_NOMEM;
371 ape->firstframe = ape->junklength + ape->descriptorlength + ape->headerlength + ape->seektablelength + ape->wavheaderlength;
372 ape->currentframe = 0;
375 ape->totalsamples = ape->finalframeblocks;
376 if (ape->totalframes > 1)
377 ape->totalsamples += ape->blocksperframe * (ape->totalframes - 1);
379 if (ape->seektablelength > 0) {
380 ape->seektable = av_malloc(ape->seektablelength);
381 for (i = 0; i < ape->seektablelength / sizeof(uint32_t); i++)
382 ape->seektable[i] = get_le32(pb);
385 ape->frames[0].pos = ape->firstframe;
386 ape->frames[0].nblocks = ape->blocksperframe;
387 ape->frames[0].skip = 0;
388 for (i = 1; i < ape->totalframes; i++) {
389 ape->frames[i].pos = ape->seektable[i]; //ape->frames[i-1].pos + ape->blocksperframe;
390 ape->frames[i].nblocks = ape->blocksperframe;
391 ape->frames[i - 1].size = ape->frames[i].pos - ape->frames[i - 1].pos;
392 ape->frames[i].skip = (ape->frames[i].pos - ape->frames[0].pos) & 3;
394 ape->frames[ape->totalframes - 1].size = ape->finalframeblocks * 4;
395 ape->frames[ape->totalframes - 1].nblocks = ape->finalframeblocks;
397 for (i = 0; i < ape->totalframes; i++) {
398 if(ape->frames[i].skip){
399 ape->frames[i].pos -= ape->frames[i].skip;
400 ape->frames[i].size += ape->frames[i].skip;
402 ape->frames[i].size = (ape->frames[i].size + 3) & ~3;
406 ape_dumpinfo(ape);
408 /* try to read APE tags */
409 if (!url_is_streamed(pb)) {
410 ape_parse_tag(s);
411 url_fseek(pb, 0, SEEK_SET);
414 av_log(s, AV_LOG_DEBUG, "Decoding file - v%d.%02d, compression level %d\n", ape->fileversion / 1000, (ape->fileversion % 1000) / 10, ape->compressiontype);
416 /* now we are ready: build format streams */
417 st = av_new_stream(s, 0);
418 if (!st)
419 return -1;
421 total_blocks = (ape->totalframes == 0) ? 0 : ((ape->totalframes - 1) * ape->blocksperframe) + ape->finalframeblocks;
423 st->codec->codec_type = CODEC_TYPE_AUDIO;
424 st->codec->codec_id = CODEC_ID_APE;
425 st->codec->codec_tag = MKTAG('A', 'P', 'E', ' ');
426 st->codec->channels = ape->channels;
427 st->codec->sample_rate = ape->samplerate;
428 st->codec->bits_per_sample = ape->bps;
429 st->codec->frame_size = MAC_SUBFRAME_SIZE;
431 st->nb_frames = ape->totalframes;
432 s->start_time = 0;
433 s->duration = (int64_t) total_blocks * AV_TIME_BASE / ape->samplerate;
434 av_set_pts_info(st, 64, MAC_SUBFRAME_SIZE, ape->samplerate);
436 st->codec->extradata = av_malloc(APE_EXTRADATA_SIZE);
437 st->codec->extradata_size = APE_EXTRADATA_SIZE;
438 AV_WL16(st->codec->extradata + 0, ape->fileversion);
439 AV_WL16(st->codec->extradata + 2, ape->compressiontype);
440 AV_WL16(st->codec->extradata + 4, ape->formatflags);
442 pts = 0;
443 for (i = 0; i < ape->totalframes; i++) {
444 ape->frames[i].pts = pts;
445 av_add_index_entry(st, ape->frames[i].pos, ape->frames[i].pts, 0, 0, AVINDEX_KEYFRAME);
446 pts += ape->blocksperframe / MAC_SUBFRAME_SIZE;
449 return 0;
452 static int ape_read_packet(AVFormatContext * s, AVPacket * pkt)
454 int ret;
455 int nblocks;
456 APEContext *ape = s->priv_data;
457 uint32_t extra_size = 8;
459 if (url_feof(s->pb))
460 return AVERROR_IO;
461 if (ape->currentframe > ape->totalframes)
462 return AVERROR_IO;
464 url_fseek (s->pb, ape->frames[ape->currentframe].pos, SEEK_SET);
466 /* Calculate how many blocks there are in this frame */
467 if (ape->currentframe == (ape->totalframes - 1))
468 nblocks = ape->finalframeblocks;
469 else
470 nblocks = ape->blocksperframe;
472 if (av_new_packet(pkt, ape->frames[ape->currentframe].size + extra_size) < 0)
473 return AVERROR_NOMEM;
475 AV_WL32(pkt->data , nblocks);
476 AV_WL32(pkt->data + 4, ape->frames[ape->currentframe].skip);
477 ret = get_buffer(s->pb, pkt->data + extra_size, ape->frames[ape->currentframe].size);
479 pkt->pts = ape->frames[ape->currentframe].pts;
480 pkt->stream_index = 0;
482 /* note: we need to modify the packet size here to handle the last
483 packet */
484 pkt->size = ret + extra_size;
486 ape->currentframe++;
488 return 0;
491 static int ape_read_close(AVFormatContext * s)
493 APEContext *ape = s->priv_data;
495 av_freep(&ape->frames);
496 av_freep(&ape->seektable);
497 return 0;
500 static int ape_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
502 AVStream *st = s->streams[stream_index];
503 APEContext *ape = s->priv_data;
504 int index = av_index_search_timestamp(st, timestamp, flags);
506 if (index < 0)
507 return -1;
509 ape->currentframe = index;
510 return 0;
513 AVInputFormat ape_demuxer = {
514 "ape",
515 "Monkey's Audio",
516 sizeof(APEContext),
517 ape_probe,
518 ape_read_header,
519 ape_read_packet,
520 ape_read_close,
521 ape_read_seek,
522 .extensions = "ape,apl,mac"