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
27 /* The earliest and latest file formats supported by this library */
28 #define APE_MIN_VERSION 3970
29 #define APE_MAX_VERSION 3990
31 #define MAC_FORMAT_FLAG_8_BIT 1 // is 8-bit [OBSOLETE]
32 #define MAC_FORMAT_FLAG_CRC 2 // uses the new CRC32 error detection [OBSOLETE]
33 #define MAC_FORMAT_FLAG_HAS_PEAK_LEVEL 4 // uint32 nPeakLevel after the header [OBSOLETE]
34 #define MAC_FORMAT_FLAG_24_BIT 8 // is 24-bit [OBSOLETE]
35 #define MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS 16 // has the number of seek elements after the peak level
36 #define MAC_FORMAT_FLAG_CREATE_WAV_HEADER 32 // create the wave header on decompression (not stored)
38 #define MAC_SUBFRAME_SIZE 4608
40 #define APE_EXTRADATA_SIZE 6
54 uint32_t totalsamples
;
58 /* Info from Descriptor Block */
62 uint32_t descriptorlength
;
63 uint32_t headerlength
;
64 uint32_t seektablelength
;
65 uint32_t wavheaderlength
;
66 uint32_t audiodatalength
;
67 uint32_t audiodatalength_high
;
68 uint32_t wavtaillength
;
71 /* Info from Header Block */
72 uint16_t compressiontype
;
74 uint32_t blocksperframe
;
75 uint32_t finalframeblocks
;
85 static int ape_probe(AVProbeData
* p
)
87 if (p
->buf
[0] == 'M' && p
->buf
[1] == 'A' && p
->buf
[2] == 'C' && p
->buf
[3] == ' ')
88 return AVPROBE_SCORE_MAX
;
93 static void ape_dumpinfo(APEContext
* ape_ctx
)
97 av_log(NULL
, AV_LOG_DEBUG
, "Descriptor Block:\n\n");
98 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]);
99 av_log(NULL
, AV_LOG_DEBUG
, "fileversion = %d\n", ape_ctx
->fileversion
);
100 av_log(NULL
, AV_LOG_DEBUG
, "descriptorlength = %d\n", ape_ctx
->descriptorlength
);
101 av_log(NULL
, AV_LOG_DEBUG
, "headerlength = %d\n", ape_ctx
->headerlength
);
102 av_log(NULL
, AV_LOG_DEBUG
, "seektablelength = %d\n", ape_ctx
->seektablelength
);
103 av_log(NULL
, AV_LOG_DEBUG
, "wavheaderlength = %d\n", ape_ctx
->wavheaderlength
);
104 av_log(NULL
, AV_LOG_DEBUG
, "audiodatalength = %d\n", ape_ctx
->audiodatalength
);
105 av_log(NULL
, AV_LOG_DEBUG
, "audiodatalength_high = %d\n", ape_ctx
->audiodatalength_high
);
106 av_log(NULL
, AV_LOG_DEBUG
, "wavtaillength = %d\n", ape_ctx
->wavtaillength
);
107 av_log(NULL
, AV_LOG_DEBUG
, "md5 = ");
108 for (i
= 0; i
< 16; i
++)
109 av_log(NULL
, AV_LOG_DEBUG
, "%02x", ape_ctx
->md5
[i
]);
110 av_log(NULL
, AV_LOG_DEBUG
, "\n");
112 av_log(NULL
, AV_LOG_DEBUG
, "\nHeader Block:\n\n");
114 av_log(NULL
, AV_LOG_DEBUG
, "compressiontype = %d\n", ape_ctx
->compressiontype
);
115 av_log(NULL
, AV_LOG_DEBUG
, "formatflags = %d\n", ape_ctx
->formatflags
);
116 av_log(NULL
, AV_LOG_DEBUG
, "blocksperframe = %d\n", ape_ctx
->blocksperframe
);
117 av_log(NULL
, AV_LOG_DEBUG
, "finalframeblocks = %d\n", ape_ctx
->finalframeblocks
);
118 av_log(NULL
, AV_LOG_DEBUG
, "totalframes = %d\n", ape_ctx
->totalframes
);
119 av_log(NULL
, AV_LOG_DEBUG
, "bps = %d\n", ape_ctx
->bps
);
120 av_log(NULL
, AV_LOG_DEBUG
, "channels = %d\n", ape_ctx
->channels
);
121 av_log(NULL
, AV_LOG_DEBUG
, "samplerate = %d\n", ape_ctx
->samplerate
);
123 av_log(NULL
, AV_LOG_DEBUG
, "\nSeektable\n\n");
124 if ((ape_ctx
->seektablelength
/ sizeof(uint32_t)) != ape_ctx
->totalframes
) {
125 av_log(NULL
, AV_LOG_DEBUG
, "No seektable\n");
127 for (i
= 0; i
< ape_ctx
->seektablelength
/ sizeof(uint32_t); i
++) {
128 if (i
< ape_ctx
->totalframes
- 1) {
129 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
]);
131 av_log(NULL
, AV_LOG_DEBUG
, "%8d %d\n", i
, ape_ctx
->seektable
[i
]);
136 av_log(NULL
, AV_LOG_DEBUG
, "\nFrames\n\n");
137 for (i
= 0; i
< ape_ctx
->totalframes
; i
++)
138 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
);
140 av_log(NULL
, AV_LOG_DEBUG
, "\nCalculated information:\n\n");
141 av_log(NULL
, AV_LOG_DEBUG
, "junklength = %d\n", ape_ctx
->junklength
);
142 av_log(NULL
, AV_LOG_DEBUG
, "firstframe = %d\n", ape_ctx
->firstframe
);
143 av_log(NULL
, AV_LOG_DEBUG
, "totalsamples = %d\n", ape_ctx
->totalsamples
);
146 static int ape_read_header(AVFormatContext
* s
, AVFormatParameters
* ap
)
148 ByteIOContext
*pb
= &s
->pb
;
149 APEContext
*ape
= s
->priv_data
;
156 /* TODO: Skip any leading junk such as id3v2 tags */
160 if (tag
!= MKTAG('M', 'A', 'C', ' '))
163 ape
->fileversion
= get_le16(pb
);
165 if (ape
->fileversion
< APE_MIN_VERSION
|| ape
->fileversion
> APE_MAX_VERSION
) {
166 av_log(s
, AV_LOG_ERROR
, "Unsupported file version - %d.%02d\n", ape
->fileversion
/ 1000, (ape
->fileversion
% 1000) / 10);
170 if (ape
->fileversion
>= 3980) {
171 ape
->padding1
= get_le16(pb
);
172 ape
->descriptorlength
= get_le32(pb
);
173 ape
->headerlength
= get_le32(pb
);
174 ape
->seektablelength
= get_le32(pb
);
175 ape
->wavheaderlength
= get_le32(pb
);
176 ape
->audiodatalength
= get_le32(pb
);
177 ape
->audiodatalength_high
= get_le32(pb
);
178 ape
->wavtaillength
= get_le32(pb
);
179 get_buffer(pb
, ape
->md5
, 16);
181 /* Skip any unknown bytes at the end of the descriptor.
182 This is for future compatibility */
183 if (ape
->descriptorlength
> 52)
184 url_fseek(pb
, ape
->descriptorlength
- 52, SEEK_CUR
);
186 /* Read header data */
187 ape
->compressiontype
= get_le16(pb
);
188 ape
->formatflags
= get_le16(pb
);
189 ape
->blocksperframe
= get_le32(pb
);
190 ape
->finalframeblocks
= get_le32(pb
);
191 ape
->totalframes
= get_le32(pb
);
192 ape
->bps
= get_le16(pb
);
193 ape
->channels
= get_le16(pb
);
194 ape
->samplerate
= get_le32(pb
);
196 ape
->descriptorlength
= 0;
197 ape
->headerlength
= 32;
199 ape
->compressiontype
= get_le16(pb
);
200 ape
->formatflags
= get_le16(pb
);
201 ape
->channels
= get_le16(pb
);
202 ape
->samplerate
= get_le32(pb
);
203 ape
->wavheaderlength
= get_le32(pb
);
204 ape
->wavtaillength
= get_le32(pb
);
205 ape
->totalframes
= get_le32(pb
);
206 ape
->finalframeblocks
= get_le32(pb
);
208 if (ape
->formatflags
& MAC_FORMAT_FLAG_HAS_PEAK_LEVEL
) {
209 url_fseek(pb
, 4, SEEK_CUR
); /* Skip the peak level */
210 ape
->headerlength
+= 4;
213 if (ape
->formatflags
& MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS
) {
214 ape
->seektablelength
= get_le32(pb
);
215 ape
->headerlength
+= 4;
216 ape
->seektablelength
*= sizeof(int32_t);
218 ape
->seektablelength
= ape
->totalframes
* sizeof(int32_t);
220 if (ape
->formatflags
& MAC_FORMAT_FLAG_8_BIT
)
222 else if (ape
->formatflags
& MAC_FORMAT_FLAG_24_BIT
)
227 if (ape
->fileversion
>= 3950)
228 ape
->blocksperframe
= 73728 * 4;
229 else if (ape
->fileversion
>= 3900 || (ape
->fileversion
>= 3800 && ape
->compressiontype
>= 4000))
230 ape
->blocksperframe
= 73728;
232 ape
->blocksperframe
= 9216;
234 /* Skip any stored wav header */
235 if (!(ape
->formatflags
& MAC_FORMAT_FLAG_CREATE_WAV_HEADER
))
236 url_fskip(pb
, ape
->wavheaderlength
);
239 if(ape
->totalframes
> UINT_MAX
/ sizeof(APEFrame
)){
240 av_log(s
, AV_LOG_ERROR
, "Too many frames: %d\n", ape
->totalframes
);
243 ape
->frames
= av_malloc(ape
->totalframes
* sizeof(APEFrame
));
245 return AVERROR_NOMEM
;
246 ape
->firstframe
= ape
->junklength
+ ape
->descriptorlength
+ ape
->headerlength
+ ape
->seektablelength
+ ape
->wavheaderlength
;
247 ape
->currentframe
= 0;
250 ape
->totalsamples
= ape
->finalframeblocks
;
251 if (ape
->totalframes
> 1)
252 ape
->totalsamples
+= ape
->blocksperframe
* (ape
->totalframes
- 1);
254 if (ape
->seektablelength
> 0) {
255 ape
->seektable
= av_malloc(ape
->seektablelength
);
256 for (i
= 0; i
< ape
->seektablelength
/ sizeof(uint32_t); i
++)
257 ape
->seektable
[i
] = get_le32(pb
);
260 ape
->frames
[0].pos
= ape
->firstframe
;
261 ape
->frames
[0].nblocks
= ape
->blocksperframe
;
262 ape
->frames
[0].skip
= 0;
263 for (i
= 1; i
< ape
->totalframes
; i
++) {
264 ape
->frames
[i
].pos
= ape
->seektable
[i
]; //ape->frames[i-1].pos + ape->blocksperframe;
265 ape
->frames
[i
].nblocks
= ape
->blocksperframe
;
266 ape
->frames
[i
- 1].size
= ape
->frames
[i
].pos
- ape
->frames
[i
- 1].pos
;
267 ape
->frames
[i
].skip
= (ape
->frames
[i
].pos
- ape
->frames
[0].pos
) & 3;
269 ape
->frames
[ape
->totalframes
- 1].size
= ape
->finalframeblocks
* 4;
270 ape
->frames
[ape
->totalframes
- 1].nblocks
= ape
->finalframeblocks
;
272 for (i
= 0; i
< ape
->totalframes
; i
++) {
273 if(ape
->frames
[i
].skip
){
274 ape
->frames
[i
].pos
-= ape
->frames
[i
].skip
;
275 ape
->frames
[i
].size
+= ape
->frames
[i
].skip
;
277 ape
->frames
[i
].size
= (ape
->frames
[i
].size
+ 3) & ~3;
283 av_log(s
, AV_LOG_DEBUG
, "Decoding file - v%d.%02d, compression level %d\n", ape
->fileversion
/ 1000, (ape
->fileversion
% 1000) / 10, ape
->compressiontype
);
285 /* now we are ready: build format streams */
286 st
= av_new_stream(s
, 0);
290 total_blocks
= (ape
->totalframes
== 0) ?
0 : ((ape
->totalframes
- 1) * ape
->blocksperframe
) + ape
->finalframeblocks
;
292 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
293 st
->codec
->codec_id
= CODEC_ID_APE
;
294 st
->codec
->codec_tag
= MKTAG('A', 'P', 'E', ' ');
295 st
->codec
->channels
= ape
->channels
;
296 st
->codec
->sample_rate
= ape
->samplerate
;
297 st
->codec
->bits_per_sample
= ape
->bps
;
298 st
->codec
->frame_size
= MAC_SUBFRAME_SIZE
;
300 st
->nb_frames
= ape
->totalframes
;
302 s
->duration
= (int64_t) total_blocks
* AV_TIME_BASE
/ ape
->samplerate
;
303 av_set_pts_info(st
, 64, MAC_SUBFRAME_SIZE
, ape
->samplerate
);
305 st
->codec
->extradata
= av_malloc(APE_EXTRADATA_SIZE
);
306 st
->codec
->extradata_size
= APE_EXTRADATA_SIZE
;
307 AV_WL16(st
->codec
->extradata
+ 0, ape
->fileversion
);
308 AV_WL16(st
->codec
->extradata
+ 2, ape
->compressiontype
);
309 AV_WL16(st
->codec
->extradata
+ 4, ape
->formatflags
);
312 for (i
= 0; i
< ape
->totalframes
; i
++) {
313 ape
->frames
[i
].pts
= pts
;
314 av_add_index_entry(st
, ape
->frames
[i
].pos
, ape
->frames
[i
].pts
, 0, 0, AVINDEX_KEYFRAME
);
315 pts
+= ape
->blocksperframe
/ MAC_SUBFRAME_SIZE
;
321 static int ape_read_packet(AVFormatContext
* s
, AVPacket
* pkt
)
325 APEContext
*ape
= s
->priv_data
;
326 uint32_t extra_size
= 8;
328 if (url_feof(&s
->pb
))
330 if (ape
->currentframe
> ape
->totalframes
)
333 url_fseek (&s
->pb
, ape
->frames
[ape
->currentframe
].pos
, SEEK_SET
);
335 /* Calculate how many blocks there are in this frame */
336 if (ape
->currentframe
== (ape
->totalframes
- 1))
337 nblocks
= ape
->finalframeblocks
;
339 nblocks
= ape
->blocksperframe
;
341 if (av_new_packet(pkt
, ape
->frames
[ape
->currentframe
].size
+ extra_size
) < 0)
342 return AVERROR_NOMEM
;
344 AV_WL32(pkt
->data
, nblocks
);
345 AV_WL32(pkt
->data
+ 4, ape
->frames
[ape
->currentframe
].skip
);
346 ret
= get_buffer(&s
->pb
, pkt
->data
+ extra_size
, ape
->frames
[ape
->currentframe
].size
);
348 pkt
->pts
= ape
->frames
[ape
->currentframe
].pts
;
349 pkt
->stream_index
= 0;
351 /* note: we need to modify the packet size here to handle the last
353 pkt
->size
= ret
+ extra_size
;
360 static int ape_read_close(AVFormatContext
* s
)
362 APEContext
*ape
= s
->priv_data
;
364 av_freep(&ape
->frames
);
365 av_freep(&ape
->seektable
);
369 static int ape_read_seek(AVFormatContext
*s
, int stream_index
, int64_t timestamp
, int flags
)
371 AVStream
*st
= s
->streams
[stream_index
];
372 APEContext
*ape
= s
->priv_data
;
373 int index
= av_index_search_timestamp(st
, timestamp
, flags
);
378 ape
->currentframe
= index
;
382 AVInputFormat ape_demuxer
= {
391 .extensions
= "ape,apl,mac"