ape.c 17 KB
Newer Older
Kostya Shishkov's avatar
Kostya Shishkov committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Monkey's Audio APE demuxer
 * Copyright (c) 2007 Benjamin Zores <ben@geexbox.org>
 *  based upon libdemac from Dave Chapman.
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <stdio.h>

25
#include "libavutil/intreadwrite.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
26
#include "avformat.h"
27
#include "internal.h"
28
#include "apetag.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
29 30

/* The earliest and latest file formats supported by this library */
31
#define APE_MIN_VERSION 3800
Kostya Shishkov's avatar
Kostya Shishkov committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
#define APE_MAX_VERSION 3990

#define MAC_FORMAT_FLAG_8_BIT                 1 // is 8-bit [OBSOLETE]
#define MAC_FORMAT_FLAG_CRC                   2 // uses the new CRC32 error detection [OBSOLETE]
#define MAC_FORMAT_FLAG_HAS_PEAK_LEVEL        4 // uint32 nPeakLevel after the header [OBSOLETE]
#define MAC_FORMAT_FLAG_24_BIT                8 // is 24-bit [OBSOLETE]
#define MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS    16 // has the number of seek elements after the peak level
#define MAC_FORMAT_FLAG_CREATE_WAV_HEADER    32 // create the wave header on decompression (not stored)

#define APE_EXTRADATA_SIZE 6

typedef struct {
    int64_t pos;
    int nblocks;
    int size;
    int skip;
    int64_t pts;
} APEFrame;

typedef struct {
    /* Derived fields */
    uint32_t junklength;
    uint32_t firstframe;
    uint32_t totalsamples;
    int currentframe;
    APEFrame *frames;

    /* Info from Descriptor Block */
    char magic[4];
    int16_t fileversion;
    int16_t padding1;
    uint32_t descriptorlength;
    uint32_t headerlength;
    uint32_t seektablelength;
    uint32_t wavheaderlength;
    uint32_t audiodatalength;
    uint32_t audiodatalength_high;
    uint32_t wavtaillength;
    uint8_t md5[16];

    /* Info from Header Block */
    uint16_t compressiontype;
    uint16_t formatflags;
    uint32_t blocksperframe;
    uint32_t finalframeblocks;
    uint32_t totalframes;
    uint16_t bps;
    uint16_t channels;
    uint32_t samplerate;

    /* Seektable */
    uint32_t *seektable;
84
    uint8_t  *bittable;
Kostya Shishkov's avatar
Kostya Shishkov committed
85 86 87 88
} APEContext;

static int ape_probe(AVProbeData * p)
{
89 90 91
    int version = AV_RL16(p->buf+4);
    if (AV_RL32(p->buf) != MKTAG('M', 'A', 'C', ' '))
        return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
92

93 94 95 96
    if (version < APE_MIN_VERSION || version > APE_MAX_VERSION)
        return AVPROBE_SCORE_MAX/4;

    return AVPROBE_SCORE_MAX;
Kostya Shishkov's avatar
Kostya Shishkov committed
97 98
}

99
static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
100
{
101
#ifdef DEBUG
Kostya Shishkov's avatar
Kostya Shishkov committed
102 103
    int i;

104 105
    av_log(s, AV_LOG_DEBUG, "Descriptor Block:\n\n");
    av_log(s, 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]);
106 107 108 109 110 111 112 113
    av_log(s, AV_LOG_DEBUG, "fileversion          = %"PRId16"\n", ape_ctx->fileversion);
    av_log(s, AV_LOG_DEBUG, "descriptorlength     = %"PRIu32"\n", ape_ctx->descriptorlength);
    av_log(s, AV_LOG_DEBUG, "headerlength         = %"PRIu32"\n", ape_ctx->headerlength);
    av_log(s, AV_LOG_DEBUG, "seektablelength      = %"PRIu32"\n", ape_ctx->seektablelength);
    av_log(s, AV_LOG_DEBUG, "wavheaderlength      = %"PRIu32"\n", ape_ctx->wavheaderlength);
    av_log(s, AV_LOG_DEBUG, "audiodatalength      = %"PRIu32"\n", ape_ctx->audiodatalength);
    av_log(s, AV_LOG_DEBUG, "audiodatalength_high = %"PRIu32"\n", ape_ctx->audiodatalength_high);
    av_log(s, AV_LOG_DEBUG, "wavtaillength        = %"PRIu32"\n", ape_ctx->wavtaillength);
114
    av_log(s, AV_LOG_DEBUG, "md5                  = ");
Kostya Shishkov's avatar
Kostya Shishkov committed
115
    for (i = 0; i < 16; i++)
116 117
         av_log(s, AV_LOG_DEBUG, "%02x", ape_ctx->md5[i]);
    av_log(s, AV_LOG_DEBUG, "\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
118

119
    av_log(s, AV_LOG_DEBUG, "\nHeader Block:\n\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
120

121 122 123 124 125 126 127 128
    av_log(s, AV_LOG_DEBUG, "compressiontype      = %"PRIu16"\n", ape_ctx->compressiontype);
    av_log(s, AV_LOG_DEBUG, "formatflags          = %"PRIu16"\n", ape_ctx->formatflags);
    av_log(s, AV_LOG_DEBUG, "blocksperframe       = %"PRIu32"\n", ape_ctx->blocksperframe);
    av_log(s, AV_LOG_DEBUG, "finalframeblocks     = %"PRIu32"\n", ape_ctx->finalframeblocks);
    av_log(s, AV_LOG_DEBUG, "totalframes          = %"PRIu32"\n", ape_ctx->totalframes);
    av_log(s, AV_LOG_DEBUG, "bps                  = %"PRIu16"\n", ape_ctx->bps);
    av_log(s, AV_LOG_DEBUG, "channels             = %"PRIu16"\n", ape_ctx->channels);
    av_log(s, AV_LOG_DEBUG, "samplerate           = %"PRIu32"\n", ape_ctx->samplerate);
Kostya Shishkov's avatar
Kostya Shishkov committed
129

130
    av_log(s, AV_LOG_DEBUG, "\nSeektable\n\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
131
    if ((ape_ctx->seektablelength / sizeof(uint32_t)) != ape_ctx->totalframes) {
132
        av_log(s, AV_LOG_DEBUG, "No seektable\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
133 134 135
    } else {
        for (i = 0; i < ape_ctx->seektablelength / sizeof(uint32_t); i++) {
            if (i < ape_ctx->totalframes - 1) {
136
                av_log(s, AV_LOG_DEBUG, "%8d   %"PRIu32" (%"PRIu32" bytes)",
137 138
                       i, ape_ctx->seektable[i],
                       ape_ctx->seektable[i + 1] - ape_ctx->seektable[i]);
139
                if (ape_ctx->bittable)
140 141 142
                    av_log(s, AV_LOG_DEBUG, " + %2d bits\n",
                           ape_ctx->bittable[i]);
                av_log(s, AV_LOG_DEBUG, "\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
143
            } else {
144
                av_log(s, AV_LOG_DEBUG, "%8d   %"PRIu32"\n", i, ape_ctx->seektable[i]);
Kostya Shishkov's avatar
Kostya Shishkov committed
145 146 147 148
            }
        }
    }

149
    av_log(s, AV_LOG_DEBUG, "\nFrames\n\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
150
    for (i = 0; i < ape_ctx->totalframes; i++)
151 152 153
        av_log(s, AV_LOG_DEBUG, "%8d   %8"PRId64" %8d (%d samples)\n", i,
               ape_ctx->frames[i].pos, ape_ctx->frames[i].size,
               ape_ctx->frames[i].nblocks);
Kostya Shishkov's avatar
Kostya Shishkov committed
154

155
    av_log(s, AV_LOG_DEBUG, "\nCalculated information:\n\n");
156 157 158
    av_log(s, AV_LOG_DEBUG, "junklength           = %"PRIu32"\n", ape_ctx->junklength);
    av_log(s, AV_LOG_DEBUG, "firstframe           = %"PRIu32"\n", ape_ctx->firstframe);
    av_log(s, AV_LOG_DEBUG, "totalsamples         = %"PRIu32"\n", ape_ctx->totalsamples);
159
#endif
Kostya Shishkov's avatar
Kostya Shishkov committed
160 161
}

162
static int ape_read_header(AVFormatContext * s)
Kostya Shishkov's avatar
Kostya Shishkov committed
163
{
164
    AVIOContext *pb = s->pb;
Kostya Shishkov's avatar
Kostya Shishkov committed
165 166 167 168
    APEContext *ape = s->priv_data;
    AVStream *st;
    uint32_t tag;
    int i;
169 170
    int total_blocks, final_size = 0;
    int64_t pts, file_size;
Kostya Shishkov's avatar
Kostya Shishkov committed
171

172 173
    /* Skip any leading junk such as id3v2 tags */
    ape->junklength = avio_tell(pb);
Kostya Shishkov's avatar
Kostya Shishkov committed
174

175
    tag = avio_rl32(pb);
Kostya Shishkov's avatar
Kostya Shishkov committed
176
    if (tag != MKTAG('M', 'A', 'C', ' '))
177
        return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
178

179
    ape->fileversion = avio_rl16(pb);
Kostya Shishkov's avatar
Kostya Shishkov committed
180 181

    if (ape->fileversion < APE_MIN_VERSION || ape->fileversion > APE_MAX_VERSION) {
182
        av_log(s, AV_LOG_ERROR, "Unsupported file version - %d.%02d\n",
183
               ape->fileversion / 1000, (ape->fileversion % 1000) / 10);
184
        return AVERROR_PATCHWELCOME;
Kostya Shishkov's avatar
Kostya Shishkov committed
185 186 187
    }

    if (ape->fileversion >= 3980) {
188 189 190 191 192 193 194 195 196
        ape->padding1             = avio_rl16(pb);
        ape->descriptorlength     = avio_rl32(pb);
        ape->headerlength         = avio_rl32(pb);
        ape->seektablelength      = avio_rl32(pb);
        ape->wavheaderlength      = avio_rl32(pb);
        ape->audiodatalength      = avio_rl32(pb);
        ape->audiodatalength_high = avio_rl32(pb);
        ape->wavtaillength        = avio_rl32(pb);
        avio_read(pb, ape->md5, 16);
Kostya Shishkov's avatar
Kostya Shishkov committed
197 198 199 200

        /* Skip any unknown bytes at the end of the descriptor.
           This is for future compatibility */
        if (ape->descriptorlength > 52)
201
            avio_skip(pb, ape->descriptorlength - 52);
Kostya Shishkov's avatar
Kostya Shishkov committed
202 203

        /* Read header data */
204 205 206 207 208 209 210 211
        ape->compressiontype      = avio_rl16(pb);
        ape->formatflags          = avio_rl16(pb);
        ape->blocksperframe       = avio_rl32(pb);
        ape->finalframeblocks     = avio_rl32(pb);
        ape->totalframes          = avio_rl32(pb);
        ape->bps                  = avio_rl16(pb);
        ape->channels             = avio_rl16(pb);
        ape->samplerate           = avio_rl32(pb);
Kostya Shishkov's avatar
Kostya Shishkov committed
212 213 214 215
    } else {
        ape->descriptorlength = 0;
        ape->headerlength = 32;

216 217 218 219 220 221 222 223
        ape->compressiontype      = avio_rl16(pb);
        ape->formatflags          = avio_rl16(pb);
        ape->channels             = avio_rl16(pb);
        ape->samplerate           = avio_rl32(pb);
        ape->wavheaderlength      = avio_rl32(pb);
        ape->wavtaillength        = avio_rl32(pb);
        ape->totalframes          = avio_rl32(pb);
        ape->finalframeblocks     = avio_rl32(pb);
Kostya Shishkov's avatar
Kostya Shishkov committed
224 225

        if (ape->formatflags & MAC_FORMAT_FLAG_HAS_PEAK_LEVEL) {
226
            avio_skip(pb, 4); /* Skip the peak level */
Kostya Shishkov's avatar
Kostya Shishkov committed
227 228 229 230
            ape->headerlength += 4;
        }

        if (ape->formatflags & MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS) {
231
            ape->seektablelength = avio_rl32(pb);
Kostya Shishkov's avatar
Kostya Shishkov committed
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
            ape->headerlength += 4;
            ape->seektablelength *= sizeof(int32_t);
        } else
            ape->seektablelength = ape->totalframes * sizeof(int32_t);

        if (ape->formatflags & MAC_FORMAT_FLAG_8_BIT)
            ape->bps = 8;
        else if (ape->formatflags & MAC_FORMAT_FLAG_24_BIT)
            ape->bps = 24;
        else
            ape->bps = 16;

        if (ape->fileversion >= 3950)
            ape->blocksperframe = 73728 * 4;
        else if (ape->fileversion >= 3900 || (ape->fileversion >= 3800  && ape->compressiontype >= 4000))
            ape->blocksperframe = 73728;
        else
            ape->blocksperframe = 9216;

        /* Skip any stored wav header */
        if (!(ape->formatflags & MAC_FORMAT_FLAG_CREATE_WAV_HEADER))
253
            avio_skip(pb, ape->wavheaderlength);
Kostya Shishkov's avatar
Kostya Shishkov committed
254 255
    }

256 257 258 259
    if(!ape->totalframes){
        av_log(s, AV_LOG_ERROR, "No frames in the file!\n");
        return AVERROR(EINVAL);
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
260
    if(ape->totalframes > UINT_MAX / sizeof(APEFrame)){
261 262
        av_log(s, AV_LOG_ERROR, "Too many frames: %"PRIu32"\n",
               ape->totalframes);
263
        return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
264
    }
265
    if (ape->seektablelength / sizeof(*ape->seektable) < ape->totalframes) {
266
        av_log(s, AV_LOG_ERROR,
267
               "Number of seek entries is less than number of frames: %"SIZE_SPECIFIER" vs. %"PRIu32"\n",
268 269 270
               ape->seektablelength / sizeof(*ape->seektable), ape->totalframes);
        return AVERROR_INVALIDDATA;
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
271 272
    ape->frames       = av_malloc(ape->totalframes * sizeof(APEFrame));
    if(!ape->frames)
273
        return AVERROR(ENOMEM);
Kostya Shishkov's avatar
Kostya Shishkov committed
274
    ape->firstframe   = ape->junklength + ape->descriptorlength + ape->headerlength + ape->seektablelength + ape->wavheaderlength;
275 276
    if (ape->fileversion < 3810)
        ape->firstframe += ape->totalframes;
Kostya Shishkov's avatar
Kostya Shishkov committed
277 278 279 280 281 282 283 284
    ape->currentframe = 0;


    ape->totalsamples = ape->finalframeblocks;
    if (ape->totalframes > 1)
        ape->totalsamples += ape->blocksperframe * (ape->totalframes - 1);

    if (ape->seektablelength > 0) {
285
        ape->seektable = av_mallocz(ape->seektablelength);
286 287
        if (!ape->seektable)
            return AVERROR(ENOMEM);
288
        for (i = 0; i < ape->seektablelength / sizeof(uint32_t) && !pb->eof_reached; i++)
289
            ape->seektable[i] = avio_rl32(pb);
290
        if (ape->fileversion < 3810) {
291
            ape->bittable = av_mallocz(ape->totalframes);
292 293
            if (!ape->bittable)
                return AVERROR(ENOMEM);
294
            for (i = 0; i < ape->totalframes && !pb->eof_reached; i++)
295 296
                ape->bittable[i] = avio_r8(pb);
        }
297 298
        if (pb->eof_reached)
            av_log(s, AV_LOG_WARNING, "File truncated\n");
Kostya Shishkov's avatar
Kostya Shishkov committed
299 300 301 302 303 304
    }

    ape->frames[0].pos     = ape->firstframe;
    ape->frames[0].nblocks = ape->blocksperframe;
    ape->frames[0].skip    = 0;
    for (i = 1; i < ape->totalframes; i++) {
305
        ape->frames[i].pos      = ape->seektable[i] + ape->junklength;
Kostya Shishkov's avatar
Kostya Shishkov committed
306 307 308 309 310
        ape->frames[i].nblocks  = ape->blocksperframe;
        ape->frames[i - 1].size = ape->frames[i].pos - ape->frames[i - 1].pos;
        ape->frames[i].skip     = (ape->frames[i].pos - ape->frames[0].pos) & 3;
    }
    ape->frames[ape->totalframes - 1].nblocks = ape->finalframeblocks;
311 312 313 314 315 316 317 318 319 320
    /* calculate final packet size from total file size, if available */
    file_size = avio_size(pb);
    if (file_size > 0) {
        final_size = file_size - ape->frames[ape->totalframes - 1].pos -
                     ape->wavtaillength;
        final_size -= final_size & 3;
    }
    if (file_size <= 0 || final_size <= 0)
        final_size = ape->finalframeblocks * 8;
    ape->frames[ape->totalframes - 1].size = final_size;
Kostya Shishkov's avatar
Kostya Shishkov committed
321 322 323 324 325 326 327 328

    for (i = 0; i < ape->totalframes; i++) {
        if(ape->frames[i].skip){
            ape->frames[i].pos  -= ape->frames[i].skip;
            ape->frames[i].size += ape->frames[i].skip;
        }
        ape->frames[i].size = (ape->frames[i].size + 3) & ~3;
    }
329 330 331 332 333 334 335 336
    if (ape->fileversion < 3810) {
        for (i = 0; i < ape->totalframes; i++) {
            if (i < ape->totalframes - 1 && ape->bittable[i + 1])
                ape->frames[i].size += 4;
            ape->frames[i].skip <<= 3;
            ape->frames[i].skip  += ape->bittable[i];
        }
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
337

338
    ape_dumpinfo(s, ape);
Kostya Shishkov's avatar
Kostya Shishkov committed
339

340 341 342
    av_log(s, AV_LOG_DEBUG, "Decoding file - v%d.%02d, compression level %"PRIu16"\n",
           ape->fileversion / 1000, (ape->fileversion % 1000) / 10,
           ape->compressiontype);
Kostya Shishkov's avatar
Kostya Shishkov committed
343 344

    /* now we are ready: build format streams */
345
    st = avformat_new_stream(s, NULL);
Kostya Shishkov's avatar
Kostya Shishkov committed
346
    if (!st)
347
        return AVERROR(ENOMEM);
Kostya Shishkov's avatar
Kostya Shishkov committed
348 349 350

    total_blocks = (ape->totalframes == 0) ? 0 : ((ape->totalframes - 1) * ape->blocksperframe) + ape->finalframeblocks;

351
    st->codec->codec_type      = AVMEDIA_TYPE_AUDIO;
352
    st->codec->codec_id        = AV_CODEC_ID_APE;
Kostya Shishkov's avatar
Kostya Shishkov committed
353 354 355
    st->codec->codec_tag       = MKTAG('A', 'P', 'E', ' ');
    st->codec->channels        = ape->channels;
    st->codec->sample_rate     = ape->samplerate;
356
    st->codec->bits_per_coded_sample = ape->bps;
Kostya Shishkov's avatar
Kostya Shishkov committed
357 358

    st->nb_frames = ape->totalframes;
359
    st->start_time = 0;
360 361
    st->duration  = total_blocks;
    avpriv_set_pts_info(st, 64, 1, ape->samplerate);
Kostya Shishkov's avatar
Kostya Shishkov committed
362

363 364
    if (ff_alloc_extradata(st->codec, APE_EXTRADATA_SIZE))
        return AVERROR(ENOMEM);
Kostya Shishkov's avatar
Kostya Shishkov committed
365 366 367 368 369 370 371 372
    AV_WL16(st->codec->extradata + 0, ape->fileversion);
    AV_WL16(st->codec->extradata + 2, ape->compressiontype);
    AV_WL16(st->codec->extradata + 4, ape->formatflags);

    pts = 0;
    for (i = 0; i < ape->totalframes; i++) {
        ape->frames[i].pts = pts;
        av_add_index_entry(st, ape->frames[i].pos, ape->frames[i].pts, 0, 0, AVINDEX_KEYFRAME);
373
        pts += ape->blocksperframe;
Kostya Shishkov's avatar
Kostya Shishkov committed
374 375
    }

376 377 378 379 380 381
    /* try to read APE tags */
    if (pb->seekable) {
        ff_ape_parse_tag(s);
        avio_seek(pb, 0, SEEK_SET);
    }

Kostya Shishkov's avatar
Kostya Shishkov committed
382 383 384 385 386 387 388 389 390 391
    return 0;
}

static int ape_read_packet(AVFormatContext * s, AVPacket * pkt)
{
    int ret;
    int nblocks;
    APEContext *ape = s->priv_data;
    uint32_t extra_size = 8;

392
    if (avio_feof(s->pb))
393
        return AVERROR_EOF;
394
    if (ape->currentframe >= ape->totalframes)
395
        return AVERROR_EOF;
Kostya Shishkov's avatar
Kostya Shishkov committed
396

397 398
    if (avio_seek(s->pb, ape->frames[ape->currentframe].pos, SEEK_SET) < 0)
        return AVERROR(EIO);
Kostya Shishkov's avatar
Kostya Shishkov committed
399 400 401 402 403 404 405

    /* Calculate how many blocks there are in this frame */
    if (ape->currentframe == (ape->totalframes - 1))
        nblocks = ape->finalframeblocks;
    else
        nblocks = ape->blocksperframe;

406 407 408 409 410 411 412 413
    if (ape->frames[ape->currentframe].size <= 0 ||
        ape->frames[ape->currentframe].size > INT_MAX - extra_size) {
        av_log(s, AV_LOG_ERROR, "invalid packet size: %d\n",
               ape->frames[ape->currentframe].size);
        ape->currentframe++;
        return AVERROR(EIO);
    }

Kostya Shishkov's avatar
Kostya Shishkov committed
414
    if (av_new_packet(pkt,  ape->frames[ape->currentframe].size + extra_size) < 0)
415
        return AVERROR(ENOMEM);
Kostya Shishkov's avatar
Kostya Shishkov committed
416 417 418

    AV_WL32(pkt->data    , nblocks);
    AV_WL32(pkt->data + 4, ape->frames[ape->currentframe].skip);
419
    ret = avio_read(s->pb, pkt->data + extra_size, ape->frames[ape->currentframe].size);
420 421
    if (ret < 0) {
        av_free_packet(pkt);
422
        return ret;
423
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442

    pkt->pts = ape->frames[ape->currentframe].pts;
    pkt->stream_index = 0;

    /* note: we need to modify the packet size here to handle the last
       packet */
    pkt->size = ret + extra_size;

    ape->currentframe++;

    return 0;
}

static int ape_read_close(AVFormatContext * s)
{
    APEContext *ape = s->priv_data;

    av_freep(&ape->frames);
    av_freep(&ape->seektable);
443
    av_freep(&ape->bittable);
Kostya Shishkov's avatar
Kostya Shishkov committed
444 445 446 447 448 449 450 451 452 453 454 455
    return 0;
}

static int ape_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
{
    AVStream *st = s->streams[stream_index];
    APEContext *ape = s->priv_data;
    int index = av_index_search_timestamp(st, timestamp, flags);

    if (index < 0)
        return -1;

Paul B Mahol's avatar
Paul B Mahol committed
456 457
    if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
        return -1;
Kostya Shishkov's avatar
Kostya Shishkov committed
458 459 460 461
    ape->currentframe = index;
    return 0;
}

462
AVInputFormat ff_ape_demuxer = {
463 464 465 466 467 468 469 470
    .name           = "ape",
    .long_name      = NULL_IF_CONFIG_SMALL("Monkey's Audio"),
    .priv_data_size = sizeof(APEContext),
    .read_probe     = ape_probe,
    .read_header    = ape_read_header,
    .read_packet    = ape_read_packet,
    .read_close     = ape_read_close,
    .read_seek      = ape_read_seek,
471
    .extensions     = "ape,apl,mac",
Kostya Shishkov's avatar
Kostya Shishkov committed
472
};