apedec.c 49.8 KB
Newer Older
Kostya Shishkov's avatar
Kostya Shishkov committed
1 2 3 4 5
/*
 * Monkey's Audio lossless audio decoder
 * Copyright (c) 2007 Benjamin Zores <ben@geexbox.org>
 *  based upon libdemac from Dave Chapman.
 *
6
 * This file is part of Libav.
Kostya Shishkov's avatar
Kostya Shishkov committed
7
 *
8
 * Libav is free software; you can redistribute it and/or
Kostya Shishkov's avatar
Kostya Shishkov committed
9 10 11 12
 * 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.
 *
13
 * Libav is distributed in the hope that it will be useful,
Kostya Shishkov's avatar
Kostya Shishkov committed
14 15 16 17 18
 * 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
19
 * License along with Libav; if not, write to the Free Software
Kostya Shishkov's avatar
Kostya Shishkov committed
20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

23 24 25
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
26 27 28
#include "avcodec.h"
#include "dsputil.h"
#include "bytestream.h"
29
#include "internal.h"
30 31
#include "get_bits.h"
#include "unary.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
32 33

/**
34
 * @file
Kostya Shishkov's avatar
Kostya Shishkov committed
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 84
 * Monkey's Audio lossless audio decoder
 */

#define MAX_CHANNELS        2
#define MAX_BYTESPERSAMPLE  3

#define APE_FRAMECODE_MONO_SILENCE    1
#define APE_FRAMECODE_STEREO_SILENCE  3
#define APE_FRAMECODE_PSEUDO_STEREO   4

#define HISTORY_SIZE 512
#define PREDICTOR_ORDER 8
/** Total size of all predictor histories */
#define PREDICTOR_SIZE 50

#define YDELAYA (18 + PREDICTOR_ORDER*4)
#define YDELAYB (18 + PREDICTOR_ORDER*3)
#define XDELAYA (18 + PREDICTOR_ORDER*2)
#define XDELAYB (18 + PREDICTOR_ORDER)

#define YADAPTCOEFFSA 18
#define XADAPTCOEFFSA 14
#define YADAPTCOEFFSB 10
#define XADAPTCOEFFSB 5

/**
 * Possible compression levels
 * @{
 */
enum APECompressionLevel {
    COMPRESSION_LEVEL_FAST       = 1000,
    COMPRESSION_LEVEL_NORMAL     = 2000,
    COMPRESSION_LEVEL_HIGH       = 3000,
    COMPRESSION_LEVEL_EXTRA_HIGH = 4000,
    COMPRESSION_LEVEL_INSANE     = 5000
};
/** @} */

#define APE_FILTER_LEVELS 3

/** Filter orders depending on compression level */
static const uint16_t ape_filter_orders[5][APE_FILTER_LEVELS] = {
    {  0,   0,    0 },
    { 16,   0,    0 },
    { 64,   0,    0 },
    { 32, 256,    0 },
    { 16, 256, 1280 }
};

/** Filter fraction bits depending on compression level */
Michael Niedermayer's avatar
Michael Niedermayer committed
85
static const uint8_t ape_filter_fracbits[5][APE_FILTER_LEVELS] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
    {  0,  0,  0 },
    { 11,  0,  0 },
    { 11,  0,  0 },
    { 10, 13,  0 },
    { 11, 13, 15 }
};


/** Filters applied to the decoded data */
typedef struct APEFilter {
    int16_t *coeffs;        ///< actual coefficients used in filtering
    int16_t *adaptcoeffs;   ///< adaptive filter coefficients used for correcting of actual filter coefficients
    int16_t *historybuffer; ///< filter memory
    int16_t *delay;         ///< filtered values

    int avg;
} APEFilter;

typedef struct APERice {
    uint32_t k;
    uint32_t ksum;
} APERice;

typedef struct APERangecoder {
    uint32_t low;           ///< low end of interval
    uint32_t range;         ///< length of interval
    uint32_t help;          ///< bytes_to_follow resp. intermediate value
    unsigned int buffer;    ///< buffer for input/output
} APERangecoder;

/** Filter histories */
typedef struct APEPredictor {
    int32_t *buf;

    int32_t lastA[2];

    int32_t filterA[2];
    int32_t filterB[2];

    int32_t coeffsA[2][4];  ///< adaption coefficients
    int32_t coeffsB[2][5];  ///< adaption coefficients
    int32_t historybuffer[HISTORY_SIZE + PREDICTOR_SIZE];
128 129

    unsigned int sample_pos;
Kostya Shishkov's avatar
Kostya Shishkov committed
130 131 132 133
} APEPredictor;

/** Decoder context */
typedef struct APEContext {
134
    AVClass *class;                          ///< class for AVOptions
Kostya Shishkov's avatar
Kostya Shishkov committed
135 136 137 138
    AVCodecContext *avctx;
    DSPContext dsp;
    int channels;
    int samples;                             ///< samples left to decode in current frame
139
    int bps;
Kostya Shishkov's avatar
Kostya Shishkov committed
140 141 142 143 144 145 146 147 148 149

    int fileversion;                         ///< codec version, very important in decoding process
    int compression_level;                   ///< compression levels
    int fset;                                ///< which filter set to use (calculated from compression level)
    int flags;                               ///< global decoder flags

    uint32_t CRC;                            ///< frame CRC
    int frameflags;                          ///< frame flags
    APEPredictor predictor;                  ///< predictor used for final reconstruction

150 151 152
    int32_t *decoded_buffer;
    int decoded_size;
    int32_t *decoded[MAX_CHANNELS];          ///< decoded data for each channel
153
    int blocks_per_loop;                     ///< maximum number of samples to decode for each call
Kostya Shishkov's avatar
Kostya Shishkov committed
154 155 156 157 158 159 160

    int16_t* filterbuf[APE_FILTER_LEVELS];   ///< filter memory

    APERangecoder rc;                        ///< rangecoder used to decode actual values
    APERice riceX;                           ///< rice code parameters for the second channel
    APERice riceY;                           ///< rice code parameters for the first channel
    APEFilter filters[APE_FILTER_LEVELS][2]; ///< filters used for reconstruction
161
    GetBitContext gb;
Kostya Shishkov's avatar
Kostya Shishkov committed
162 163 164

    uint8_t *data;                           ///< current frame data
    uint8_t *data_end;                       ///< frame data end
165
    int data_size;                           ///< frame data allocated size
Michael Niedermayer's avatar
Michael Niedermayer committed
166
    const uint8_t *ptr;                      ///< current position in frame data
167 168

    int error;
169 170 171 172 173

    void (*entropy_decode_mono)(struct APEContext *ctx, int blockstodecode);
    void (*entropy_decode_stereo)(struct APEContext *ctx, int blockstodecode);
    void (*predictor_decode_mono)(struct APEContext *ctx, int count);
    void (*predictor_decode_stereo)(struct APEContext *ctx, int count);
Kostya Shishkov's avatar
Kostya Shishkov committed
174 175
} APEContext;

176 177 178
static void ape_apply_filters(APEContext *ctx, int32_t *decoded0,
                              int32_t *decoded1, int count);

179 180 181 182
static void entropy_decode_mono_0000(APEContext *ctx, int blockstodecode);
static void entropy_decode_stereo_0000(APEContext *ctx, int blockstodecode);
static void entropy_decode_mono_3860(APEContext *ctx, int blockstodecode);
static void entropy_decode_stereo_3860(APEContext *ctx, int blockstodecode);
183 184
static void entropy_decode_mono_3900(APEContext *ctx, int blockstodecode);
static void entropy_decode_stereo_3900(APEContext *ctx, int blockstodecode);
185
static void entropy_decode_stereo_3930(APEContext *ctx, int blockstodecode);
186 187 188
static void entropy_decode_mono_3990(APEContext *ctx, int blockstodecode);
static void entropy_decode_stereo_3990(APEContext *ctx, int blockstodecode);

189 190
static void predictor_decode_mono_3800(APEContext *ctx, int count);
static void predictor_decode_stereo_3800(APEContext *ctx, int count);
191 192
static void predictor_decode_mono_3930(APEContext *ctx, int count);
static void predictor_decode_stereo_3930(APEContext *ctx, int count);
193 194 195
static void predictor_decode_mono_3950(APEContext *ctx, int count);
static void predictor_decode_stereo_3950(APEContext *ctx, int count);

Kostya Shishkov's avatar
Kostya Shishkov committed
196 197
// TODO: dsputilize

Justin Ruggles's avatar
Justin Ruggles committed
198
static av_cold int ape_decode_close(AVCodecContext *avctx)
199 200 201 202 203 204 205
{
    APEContext *s = avctx->priv_data;
    int i;

    for (i = 0; i < APE_FILTER_LEVELS; i++)
        av_freep(&s->filterbuf[i]);

206
    av_freep(&s->decoded_buffer);
207
    av_freep(&s->data);
208
    s->decoded_size = s->data_size = 0;
209

210 211 212
    return 0;
}

Justin Ruggles's avatar
Justin Ruggles committed
213
static av_cold int ape_decode_init(AVCodecContext *avctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
214 215 216 217 218 219
{
    APEContext *s = avctx->priv_data;
    int i;

    if (avctx->extradata_size != 6) {
        av_log(avctx, AV_LOG_ERROR, "Incorrect extradata\n");
220
        return AVERROR(EINVAL);
Kostya Shishkov's avatar
Kostya Shishkov committed
221 222 223
    }
    if (avctx->channels > 2) {
        av_log(avctx, AV_LOG_ERROR, "Only mono and stereo is supported\n");
224
        return AVERROR(EINVAL);
Kostya Shishkov's avatar
Kostya Shishkov committed
225
    }
226 227 228
    s->bps = avctx->bits_per_coded_sample;
    switch (s->bps) {
    case 8:
229
        avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
230 231
        break;
    case 16:
232
        avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
233 234
        break;
    case 24:
235
        avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
236 237
        break;
    default:
238 239
        avpriv_request_sample(avctx,
                              "%d bits per coded sample", s->bps);
240 241
        return AVERROR_PATCHWELCOME;
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
242 243 244 245 246 247
    s->avctx             = avctx;
    s->channels          = avctx->channels;
    s->fileversion       = AV_RL16(avctx->extradata);
    s->compression_level = AV_RL16(avctx->extradata + 2);
    s->flags             = AV_RL16(avctx->extradata + 4);

Justin Ruggles's avatar
Justin Ruggles committed
248 249
    av_log(avctx, AV_LOG_DEBUG, "Compression Level: %d - Flags: %d\n",
           s->compression_level, s->flags);
250 251
    if (s->compression_level % 1000 || s->compression_level > COMPRESSION_LEVEL_INSANE ||
        (s->fileversion < 3930 && s->compression_level == COMPRESSION_LEVEL_INSANE)) {
Justin Ruggles's avatar
Justin Ruggles committed
252 253
        av_log(avctx, AV_LOG_ERROR, "Incorrect compression level %d\n",
               s->compression_level);
254
        return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
255 256 257 258 259
    }
    s->fset = s->compression_level / 1000 - 1;
    for (i = 0; i < APE_FILTER_LEVELS; i++) {
        if (!ape_filter_orders[s->fset][i])
            break;
260 261 262
        FF_ALLOC_OR_GOTO(avctx, s->filterbuf[i],
                         (ape_filter_orders[s->fset][i] * 3 + HISTORY_SIZE) * 4,
                         filter_alloc_fail);
Kostya Shishkov's avatar
Kostya Shishkov committed
263 264
    }

265 266 267 268 269 270 271
    if (s->fileversion < 3860) {
        s->entropy_decode_mono   = entropy_decode_mono_0000;
        s->entropy_decode_stereo = entropy_decode_stereo_0000;
    } else if (s->fileversion < 3900) {
        s->entropy_decode_mono   = entropy_decode_mono_3860;
        s->entropy_decode_stereo = entropy_decode_stereo_3860;
    } else if (s->fileversion < 3930) {
272 273
        s->entropy_decode_mono   = entropy_decode_mono_3900;
        s->entropy_decode_stereo = entropy_decode_stereo_3900;
274 275 276
    } else if (s->fileversion < 3990) {
        s->entropy_decode_mono   = entropy_decode_mono_3900;
        s->entropy_decode_stereo = entropy_decode_stereo_3930;
277 278 279 280 281
    } else {
        s->entropy_decode_mono   = entropy_decode_mono_3990;
        s->entropy_decode_stereo = entropy_decode_stereo_3990;
    }

282 283 284 285
    if (s->fileversion < 3930) {
        s->predictor_decode_mono   = predictor_decode_mono_3800;
        s->predictor_decode_stereo = predictor_decode_stereo_3800;
    } else if (s->fileversion < 3950) {
286 287 288 289 290 291
        s->predictor_decode_mono   = predictor_decode_mono_3930;
        s->predictor_decode_stereo = predictor_decode_stereo_3930;
    } else {
        s->predictor_decode_mono   = predictor_decode_mono_3950;
        s->predictor_decode_stereo = predictor_decode_stereo_3950;
    }
292

293
    ff_dsputil_init(&s->dsp, avctx);
294
    avctx->channel_layout = (avctx->channels==2) ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO;
295

Kostya Shishkov's avatar
Kostya Shishkov committed
296
    return 0;
297 298 299
filter_alloc_fail:
    ape_decode_close(avctx);
    return AVERROR(ENOMEM);
Kostya Shishkov's avatar
Kostya Shishkov committed
300 301 302
}

/**
303
 * @name APE range decoding functions
Kostya Shishkov's avatar
Kostya Shishkov committed
304 305 306 307 308 309 310 311 312 313
 * @{
 */

#define CODE_BITS    32
#define TOP_VALUE    ((unsigned int)1 << (CODE_BITS-1))
#define SHIFT_BITS   (CODE_BITS - 9)
#define EXTRA_BITS   ((CODE_BITS-2) % 8 + 1)
#define BOTTOM_VALUE (TOP_VALUE >> 8)

/** Start the decoder */
Justin Ruggles's avatar
Justin Ruggles committed
314
static inline void range_start_decoding(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
315 316 317 318 319 320 321
{
    ctx->rc.buffer = bytestream_get_byte(&ctx->ptr);
    ctx->rc.low    = ctx->rc.buffer >> (8 - EXTRA_BITS);
    ctx->rc.range  = (uint32_t) 1 << EXTRA_BITS;
}

/** Perform normalization */
Justin Ruggles's avatar
Justin Ruggles committed
322
static inline void range_dec_normalize(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
323 324
{
    while (ctx->rc.range <= BOTTOM_VALUE) {
325
        ctx->rc.buffer <<= 8;
326
        if(ctx->ptr < ctx->data_end) {
327
            ctx->rc.buffer += *ctx->ptr;
328 329 330 331
            ctx->ptr++;
        } else {
            ctx->error = 1;
        }
Kostya Shishkov's avatar
Kostya Shishkov committed
332 333 334 335 336 337 338
        ctx->rc.low    = (ctx->rc.low << 8)    | ((ctx->rc.buffer >> 1) & 0xFF);
        ctx->rc.range  <<= 8;
    }
}

/**
 * Calculate culmulative frequency for next symbol. Does NO update!
339
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
340 341 342
 * @param tot_f is the total frequency or (code_value)1<<shift
 * @return the culmulative frequency
 */
Justin Ruggles's avatar
Justin Ruggles committed
343
static inline int range_decode_culfreq(APEContext *ctx, int tot_f)
Kostya Shishkov's avatar
Kostya Shishkov committed
344 345 346 347 348 349 350 351
{
    range_dec_normalize(ctx);
    ctx->rc.help = ctx->rc.range / tot_f;
    return ctx->rc.low / ctx->rc.help;
}

/**
 * Decode value with given size in bits
352
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
353 354
 * @param shift number of bits to decode
 */
Justin Ruggles's avatar
Justin Ruggles committed
355
static inline int range_decode_culshift(APEContext *ctx, int shift)
Kostya Shishkov's avatar
Kostya Shishkov committed
356 357 358 359 360 361 362 363 364
{
    range_dec_normalize(ctx);
    ctx->rc.help = ctx->rc.range >> shift;
    return ctx->rc.low / ctx->rc.help;
}


/**
 * Update decoding state
365
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
366 367 368
 * @param sy_f the interval length (frequency of the symbol)
 * @param lt_f the lower end (frequency sum of < symbols)
 */
Justin Ruggles's avatar
Justin Ruggles committed
369
static inline void range_decode_update(APEContext *ctx, int sy_f, int lt_f)
Kostya Shishkov's avatar
Kostya Shishkov committed
370 371 372 373 374 375
{
    ctx->rc.low  -= ctx->rc.help * lt_f;
    ctx->rc.range = ctx->rc.help * sy_f;
}

/** Decode n bits (n <= 16) without modelling */
Justin Ruggles's avatar
Justin Ruggles committed
376
static inline int range_decode_bits(APEContext *ctx, int n)
Kostya Shishkov's avatar
Kostya Shishkov committed
377 378 379 380 381 382 383 384 385 386 387 388
{
    int sym = range_decode_culshift(ctx, n);
    range_decode_update(ctx, 1, sym);
    return sym;
}


#define MODEL_ELEMENTS 64

/**
 * Fixed probabilities for symbols in Monkey Audio version 3.97
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
389
static const uint16_t counts_3970[22] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
390 391
        0, 14824, 28224, 39348, 47855, 53994, 58171, 60926,
    62682, 63786, 64463, 64878, 65126, 65276, 65365, 65419,
392
    65450, 65469, 65480, 65487, 65491, 65493,
Kostya Shishkov's avatar
Kostya Shishkov committed
393 394 395 396 397
};

/**
 * Probability ranges for symbols in Monkey Audio version 3.97
 */
398
static const uint16_t counts_diff_3970[21] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
399 400
    14824, 13400, 11124, 8507, 6139, 4177, 2755, 1756,
    1104, 677, 415, 248, 150, 89, 54, 31,
401
    19, 11, 7, 4, 2,
Kostya Shishkov's avatar
Kostya Shishkov committed
402 403 404 405 406
};

/**
 * Fixed probabilities for symbols in Monkey Audio version 3.98
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
407
static const uint16_t counts_3980[22] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
408 409
        0, 19578, 36160, 48417, 56323, 60899, 63265, 64435,
    64971, 65232, 65351, 65416, 65447, 65466, 65476, 65482,
410
    65485, 65488, 65490, 65491, 65492, 65493,
Kostya Shishkov's avatar
Kostya Shishkov committed
411 412 413 414 415
};

/**
 * Probability ranges for symbols in Monkey Audio version 3.98
 */
416
static const uint16_t counts_diff_3980[21] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
417 418
    19578, 16582, 12257, 7906, 4576, 2366, 1170, 536,
    261, 119, 65, 31, 19, 10, 6, 3,
419
    3, 2, 1, 1, 1,
Kostya Shishkov's avatar
Kostya Shishkov committed
420 421 422 423
};

/**
 * Decode symbol
424
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
425
 * @param counts probability range start position
426
 * @param counts_diff probability range widths
Kostya Shishkov's avatar
Kostya Shishkov committed
427
 */
Justin Ruggles's avatar
Justin Ruggles committed
428
static inline int range_get_symbol(APEContext *ctx,
Michael Niedermayer's avatar
Michael Niedermayer committed
429
                                   const uint16_t counts[],
Kostya Shishkov's avatar
Kostya Shishkov committed
430 431 432 433 434 435
                                   const uint16_t counts_diff[])
{
    int symbol, cf;

    cf = range_decode_culshift(ctx, 16);

436 437 438 439 440 441 442
    if(cf > 65492){
        symbol= cf - 65535 + 63;
        range_decode_update(ctx, 1, cf);
        if(cf > 65535)
            ctx->error=1;
        return symbol;
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
443 444 445 446 447 448 449 450 451
    /* figure out the symbol inefficiently; a binary search would be much better */
    for (symbol = 0; counts[symbol + 1] <= cf; symbol++);

    range_decode_update(ctx, counts_diff[symbol], counts[symbol]);

    return symbol;
}
/** @} */ // group rangecoder

452
static inline void update_rice(APERice *rice, unsigned int x)
Kostya Shishkov's avatar
Kostya Shishkov committed
453
{
454
    int lim = rice->k ? (1 << (rice->k + 4)) : 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
455 456
    rice->ksum += ((x + 1) / 2) - ((rice->ksum + 16) >> 5);

457
    if (rice->ksum < lim)
Kostya Shishkov's avatar
Kostya Shishkov committed
458 459 460 461 462
        rice->k--;
    else if (rice->ksum >= (1 << (rice->k + 5)))
        rice->k++;
}

463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
static inline int get_rice_ook(GetBitContext *gb, int k)
{
    unsigned int x;

    x = get_unary(gb, 1, get_bits_left(gb));

    if (k)
        x = (x << k) | get_bits(gb, k);

    return x;
}

static inline int ape_decode_value_3860(APEContext *ctx, GetBitContext *gb,
                                        APERice *rice)
{
    unsigned int x, overflow;

    overflow = get_unary(gb, 1, get_bits_left(gb));

    if (ctx->fileversion > 3880) {
        while (overflow >= 16) {
            overflow -= 16;
            rice->k  += 4;
        }
    }

    if (!rice->k)
        x = overflow;
    else
        x = (overflow << rice->k) + get_bits(gb, rice->k);

    rice->ksum += x - (rice->ksum + 8 >> 4);
    if (rice->ksum < (rice->k ? 1 << (rice->k + 4) : 0))
        rice->k--;
    else if (rice->ksum >= (1 << (rice->k + 5)) && rice->k < 24)
        rice->k++;

    /* Convert to signed */
    if (x & 1)
        return (x >> 1) + 1;
    else
        return -(x >> 1);
}

507
static inline int ape_decode_value_3900(APEContext *ctx, APERice *rice)
Kostya Shishkov's avatar
Kostya Shishkov committed
508
{
509
    unsigned int x, overflow;
510
    int tmpk;
Kostya Shishkov's avatar
Kostya Shishkov committed
511

512
    overflow = range_get_symbol(ctx, counts_3970, counts_diff_3970);
Kostya Shishkov's avatar
Kostya Shishkov committed
513

514 515 516 517 518
    if (overflow == (MODEL_ELEMENTS - 1)) {
        tmpk = range_decode_bits(ctx, 5);
        overflow = 0;
    } else
        tmpk = (rice->k < 1) ? 0 : rice->k - 1;
Kostya Shishkov's avatar
Kostya Shishkov committed
519

520
    if (tmpk <= 16 || ctx->fileversion < 3910)
521 522 523 524
        x = range_decode_bits(ctx, tmpk);
    else if (tmpk <= 32) {
        x = range_decode_bits(ctx, 16);
        x |= (range_decode_bits(ctx, tmpk - 16) << 16);
Kostya Shishkov's avatar
Kostya Shishkov committed
525
    } else {
526 527 528 529 530 531 532 533 534 535 536 537 538
        av_log(ctx->avctx, AV_LOG_ERROR, "Too many bits: %d\n", tmpk);
        return AVERROR_INVALIDDATA;
    }
    x += overflow << tmpk;

    update_rice(rice, x);

    /* Convert to signed */
    if (x & 1)
        return (x >> 1) + 1;
    else
        return -(x >> 1);
}
Kostya Shishkov's avatar
Kostya Shishkov committed
539

540 541 542 543
static inline int ape_decode_value_3990(APEContext *ctx, APERice *rice)
{
    unsigned int x, overflow;
    int base, pivot;
Kostya Shishkov's avatar
Kostya Shishkov committed
544

545 546 547
    pivot = rice->ksum >> 5;
    if (pivot == 0)
        pivot = 1;
Kostya Shishkov's avatar
Kostya Shishkov committed
548

549
    overflow = range_get_symbol(ctx, counts_3980, counts_diff_3980);
Kostya Shishkov's avatar
Kostya Shishkov committed
550

551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
    if (overflow == (MODEL_ELEMENTS - 1)) {
        overflow  = range_decode_bits(ctx, 16) << 16;
        overflow |= range_decode_bits(ctx, 16);
    }

    if (pivot < 0x10000) {
        base = range_decode_culfreq(ctx, pivot);
        range_decode_update(ctx, 1, base);
    } else {
        int base_hi = pivot, base_lo;
        int bbits = 0;

        while (base_hi & ~0xFFFF) {
            base_hi >>= 1;
            bbits++;
566
        }
567 568 569 570
        base_hi = range_decode_culfreq(ctx, base_hi + 1);
        range_decode_update(ctx, 1, base_hi);
        base_lo = range_decode_culfreq(ctx, 1 << bbits);
        range_decode_update(ctx, 1, base_lo);
Kostya Shishkov's avatar
Kostya Shishkov committed
571

572
        base = (base_hi << bbits) + base_lo;
Kostya Shishkov's avatar
Kostya Shishkov committed
573 574
    }

575 576
    x = base + overflow * pivot;

Kostya Shishkov's avatar
Kostya Shishkov committed
577 578 579 580 581 582 583 584 585
    update_rice(rice, x);

    /* Convert to signed */
    if (x & 1)
        return (x >> 1) + 1;
    else
        return -(x >> 1);
}

586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
static void decode_array_0000(APEContext *ctx, GetBitContext *gb,
                              int32_t *out, APERice *rice, int blockstodecode)
{
    int i;
    int ksummax, ksummin;

    rice->ksum = 0;
    for (i = 0; i < 5; i++) {
        out[i] = get_rice_ook(&ctx->gb, 10);
        rice->ksum += out[i];
    }
    rice->k = av_log2(rice->ksum / 10) + 1;
    for (; i < 64; i++) {
        out[i] = get_rice_ook(&ctx->gb, rice->k);
        rice->ksum += out[i];
        rice->k = av_log2(rice->ksum / ((i + 1) * 2)) + 1;
    }
    ksummax = 1 << rice->k + 7;
    ksummin = rice->k ? (1 << rice->k + 6) : 0;
    for (; i < blockstodecode; i++) {
        out[i] = get_rice_ook(&ctx->gb, rice->k);
        rice->ksum += out[i] - out[i - 64];
        while (rice->ksum < ksummin) {
            rice->k--;
            ksummin = rice->k ? ksummin >> 1 : 0;
            ksummax >>= 1;
        }
        while (rice->ksum >= ksummax) {
            rice->k++;
            if (rice->k > 24)
                return;
            ksummax <<= 1;
            ksummin = ksummin ? ksummin << 1 : 128;
        }
    }

    for (i = 0; i < blockstodecode; i++) {
        if (out[i] & 1)
            out[i] = (out[i] >> 1) + 1;
        else
            out[i] = -(out[i] >> 1);
    }
}

static void entropy_decode_mono_0000(APEContext *ctx, int blockstodecode)
{
    decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY,
                      blockstodecode);
}

static void entropy_decode_stereo_0000(APEContext *ctx, int blockstodecode)
{
    decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY,
                      blockstodecode);
    decode_array_0000(ctx, &ctx->gb, ctx->decoded[1], &ctx->riceX,
                      blockstodecode);
}

static void entropy_decode_mono_3860(APEContext *ctx, int blockstodecode)
{
    int32_t *decoded0 = ctx->decoded[0];

    while (blockstodecode--)
        *decoded0++ = ape_decode_value_3860(ctx, &ctx->gb, &ctx->riceY);
}

static void entropy_decode_stereo_3860(APEContext *ctx, int blockstodecode)
{
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
    int blocks = blockstodecode;

    while (blockstodecode--)
        *decoded0++ = ape_decode_value_3860(ctx, &ctx->gb, &ctx->riceY);
    while (blocks--)
        *decoded1++ = ape_decode_value_3860(ctx, &ctx->gb, &ctx->riceX);
}

664 665 666 667 668 669 670 671 672
static void entropy_decode_mono_3900(APEContext *ctx, int blockstodecode)
{
    int32_t *decoded0 = ctx->decoded[0];

    while (blockstodecode--)
        *decoded0++ = ape_decode_value_3900(ctx, &ctx->riceY);
}

static void entropy_decode_stereo_3900(APEContext *ctx, int blockstodecode)
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
{
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
    int blocks = blockstodecode;

    while (blockstodecode--)
        *decoded0++ = ape_decode_value_3900(ctx, &ctx->riceY);
    range_dec_normalize(ctx);
    // because of some implementation peculiarities we need to backpedal here
    ctx->ptr -= 1;
    range_start_decoding(ctx);
    while (blocks--)
        *decoded1++ = ape_decode_value_3900(ctx, &ctx->riceX);
}

static void entropy_decode_stereo_3930(APEContext *ctx, int blockstodecode)
Kostya Shishkov's avatar
Kostya Shishkov committed
689
{
690 691
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
Kostya Shishkov's avatar
Kostya Shishkov committed
692

693
    while (blockstodecode--) {
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
        *decoded0++ = ape_decode_value_3900(ctx, &ctx->riceY);
        *decoded1++ = ape_decode_value_3900(ctx, &ctx->riceX);
    }
}

static void entropy_decode_mono_3990(APEContext *ctx, int blockstodecode)
{
    int32_t *decoded0 = ctx->decoded[0];

    while (blockstodecode--)
        *decoded0++ = ape_decode_value_3990(ctx, &ctx->riceY);
}

static void entropy_decode_stereo_3990(APEContext *ctx, int blockstodecode)
{
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];

    while (blockstodecode--) {
        *decoded0++ = ape_decode_value_3990(ctx, &ctx->riceY);
        *decoded1++ = ape_decode_value_3990(ctx, &ctx->riceX);
Kostya Shishkov's avatar
Kostya Shishkov committed
715 716 717
    }
}

718
static int init_entropy_decoder(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
719 720
{
    /* Read the CRC */
721 722 723 724 725 726 727
    if (ctx->fileversion >= 3900) {
        if (ctx->data_end - ctx->ptr < 6)
            return AVERROR_INVALIDDATA;
        ctx->CRC = bytestream_get_be32(&ctx->ptr);
    } else {
        ctx->CRC = get_bits_long(&ctx->gb, 32);
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
728 729 730 731 732 733

    /* Read the frame flags if they exist */
    ctx->frameflags = 0;
    if ((ctx->fileversion > 3820) && (ctx->CRC & 0x80000000)) {
        ctx->CRC &= ~0x80000000;

734 735
        if (ctx->data_end - ctx->ptr < 6)
            return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
736 737 738
        ctx->frameflags = bytestream_get_be32(&ctx->ptr);
    }

Vitor Sessak's avatar
Vitor Sessak committed
739
    /* Initialize the rice structs */
Kostya Shishkov's avatar
Kostya Shishkov committed
740 741 742 743 744
    ctx->riceX.k = 10;
    ctx->riceX.ksum = (1 << ctx->riceX.k) * 16;
    ctx->riceY.k = 10;
    ctx->riceY.ksum = (1 << ctx->riceY.k) * 16;

745 746 747
    if (ctx->fileversion >= 3900) {
        /* The first 8 bits of input are ignored. */
        ctx->ptr++;
Kostya Shishkov's avatar
Kostya Shishkov committed
748

749 750
        range_start_decoding(ctx);
    }
751 752

    return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
753 754
}

755 756 757 758 759 760 761 762 763 764 765 766 767
static const int32_t initial_coeffs_fast_3320[1] = {
    375,
};

static const int32_t initial_coeffs_a_3800[3] = {
    64, 115, 64,
};

static const int32_t initial_coeffs_b_3800[2] = {
    740, 0
};

static const int32_t initial_coeffs_3930[4] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
768 769 770
    360, 317, -109, 98
};

Justin Ruggles's avatar
Justin Ruggles committed
771
static void init_predictor_decoder(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
772 773 774 775
{
    APEPredictor *p = &ctx->predictor;

    /* Zero the history buffers */
776
    memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(*p->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
777 778
    p->buf = p->historybuffer;

779
    /* Initialize and zero the coefficients */
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
    if (ctx->fileversion < 3930) {
        if (ctx->compression_level == COMPRESSION_LEVEL_FAST) {
            memcpy(p->coeffsA[0], initial_coeffs_fast_3320,
                   sizeof(initial_coeffs_fast_3320));
            memcpy(p->coeffsA[1], initial_coeffs_fast_3320,
                   sizeof(initial_coeffs_fast_3320));
        } else {
            memcpy(p->coeffsA[0], initial_coeffs_a_3800,
                   sizeof(initial_coeffs_a_3800));
            memcpy(p->coeffsA[1], initial_coeffs_a_3800,
                   sizeof(initial_coeffs_a_3800));
        }
    } else {
        memcpy(p->coeffsA[0], initial_coeffs_3930, sizeof(initial_coeffs_3930));
        memcpy(p->coeffsA[1], initial_coeffs_3930, sizeof(initial_coeffs_3930));
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
796
    memset(p->coeffsB, 0, sizeof(p->coeffsB));
797 798 799 800 801 802
    if (ctx->fileversion < 3930) {
        memcpy(p->coeffsB[0], initial_coeffs_b_3800,
               sizeof(initial_coeffs_b_3800));
        memcpy(p->coeffsB[1], initial_coeffs_b_3800,
               sizeof(initial_coeffs_b_3800));
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
803 804 805 806

    p->filterA[0] = p->filterA[1] = 0;
    p->filterB[0] = p->filterB[1] = 0;
    p->lastA[0]   = p->lastA[1]   = 0;
807 808

    p->sample_pos = 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
809 810 811 812 813 814 815
}

/** Get inverse sign of integer (-1 for positive, 1 for negative and 0 for zero) */
static inline int APESIGN(int32_t x) {
    return (x < 0) - (x > 0);
}

816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
static av_always_inline int filter_fast_3320(APEPredictor *p,
                                             const int decoded, const int filter,
                                             const int delayA)
{
    int32_t predictionA;

    p->buf[delayA] = p->lastA[filter];
    if (p->sample_pos < 3) {
        p->lastA[filter]   = decoded;
        p->filterA[filter] = decoded;
        return decoded;
    }

    predictionA = p->buf[delayA] * 2 - p->buf[delayA - 1];
    p->lastA[filter] = decoded + (predictionA  * p->coeffsA[filter][0] >> 9);

    if ((decoded ^ predictionA) > 0)
        p->coeffsA[filter][0]++;
    else
        p->coeffsA[filter][0]--;

    p->filterA[filter] += p->lastA[filter];

    return p->filterA[filter];
}

static av_always_inline int filter_3800(APEPredictor *p,
                                        const int decoded, const int filter,
                                        const int delayA,  const int delayB,
                                        const int start,   const int shift)
{
    int32_t predictionA, predictionB, sign;
    int32_t d0, d1, d2, d3, d4;

    p->buf[delayA] = p->lastA[filter];
    p->buf[delayB] = p->filterB[filter];
    if (p->sample_pos < start) {
        predictionA = decoded + p->filterA[filter];
        p->lastA[filter]   = decoded;
        p->filterB[filter] = decoded;
        p->filterA[filter] = predictionA;
        return predictionA;
    }
    d2 =  p->buf[delayA];
    d1 = (p->buf[delayA] - p->buf[delayA - 1]) << 1;
    d0 =  p->buf[delayA] + ((p->buf[delayA - 2] - p->buf[delayA - 1]) << 3);
    d3 =  p->buf[delayB] * 2 - p->buf[delayB - 1];
    d4 =  p->buf[delayB];

    predictionA = d0 * p->coeffsA[filter][0] +
                  d1 * p->coeffsA[filter][1] +
                  d2 * p->coeffsA[filter][2];

    sign = APESIGN(decoded);
    p->coeffsA[filter][0] += (((d0 >> 30) & 2) - 1) * sign;
    p->coeffsA[filter][1] += (((d1 >> 28) & 8) - 4) * sign;
    p->coeffsA[filter][2] += (((d2 >> 28) & 8) - 4) * sign;

    predictionB = d3 * p->coeffsB[filter][0] -
                  d4 * p->coeffsB[filter][1];
    p->lastA[filter] = decoded + (predictionA >> 11);
    sign = APESIGN(p->lastA[filter]);
    p->coeffsB[filter][0] += (((d3 >> 29) & 4) - 2) * sign;
    p->coeffsB[filter][1] -= (((d4 >> 30) & 2) - 1) * sign;

    p->filterB[filter] = p->lastA[filter] + (predictionB >> shift);
    p->filterA[filter] = p->filterB[filter] + ((p->filterA[filter] * 31) >> 5);

    return p->filterA[filter];
}

static void long_filter_high_3800(int32_t *buffer, int order, int shift,
                                  int32_t *coeffs, int32_t *delay, int length)
{
    int i, j;
    int32_t dotprod, sign;

    memset(coeffs, 0, order * sizeof(*coeffs));
    for (i = 0; i < order; i++)
        delay[i] = buffer[i];
    for (i = order; i < length; i++) {
        dotprod = 0;
        sign = APESIGN(buffer[i]);
        for (j = 0; j < order; j++) {
            dotprod += delay[j] * coeffs[j];
            coeffs[j] -= (((delay[j] >> 30) & 2) - 1) * sign;
        }
        buffer[i] -= dotprod >> shift;
        for (j = 0; j < order - 1; j++)
            delay[j] = delay[j + 1];
        delay[order - 1] = buffer[i];
    }
}

static void long_filter_ehigh_3830(int32_t *buffer, int length)
{
    int i, j;
    int32_t dotprod, sign;
    int32_t coeffs[8], delay[8];

    memset(coeffs, 0, sizeof(coeffs));
    memset(delay,  0, sizeof(delay));
    for (i = 0; i < length; i++) {
        dotprod = 0;
        sign = APESIGN(buffer[i]);
        for (j = 7; j >= 0; j--) {
            dotprod += delay[j] * coeffs[j];
            coeffs[j] -= (((delay[j] >> 30) & 2) - 1) * sign;
        }
        for (j = 7; j > 0; j--)
            delay[j] = delay[j - 1];
        delay[0] = buffer[i];
        buffer[i] -= dotprod >> 9;
    }
}

static void predictor_decode_stereo_3800(APEContext *ctx, int count)
{
    APEPredictor *p = &ctx->predictor;
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
    int32_t coeffs[256], delay[256];
    int start = 4, shift = 10;

    if (ctx->compression_level == COMPRESSION_LEVEL_HIGH) {
        start = 16;
        long_filter_high_3800(decoded0, 16, 9, coeffs, delay, count);
        long_filter_high_3800(decoded1, 16, 9, coeffs, delay, count);
    } else if (ctx->compression_level == COMPRESSION_LEVEL_EXTRA_HIGH) {
        int order = 128, shift2 = 11;

        if (ctx->fileversion >= 3830) {
            order <<= 1;
            shift++;
            shift2++;
            long_filter_ehigh_3830(decoded0 + order, count - order);
            long_filter_ehigh_3830(decoded1 + order, count - order);
        }
        start = order;
        long_filter_high_3800(decoded0, order, shift2, coeffs, delay, count);
        long_filter_high_3800(decoded1, order, shift2, coeffs, delay, count);
    }

    while (count--) {
        int X = *decoded0, Y = *decoded1;
        if (ctx->compression_level == COMPRESSION_LEVEL_FAST) {
            *decoded0 = filter_fast_3320(p, Y, 0, YDELAYA);
            decoded0++;
            *decoded1 = filter_fast_3320(p, X, 1, XDELAYA);
            decoded1++;
        } else {
            *decoded0 = filter_3800(p, Y, 0, YDELAYA, YDELAYB,
                                    start, shift);
            decoded0++;
            *decoded1 = filter_3800(p, X, 1, XDELAYA, XDELAYB,
                                    start, shift);
            decoded1++;
        }

        /* Combined */
        p->buf++;
        p->sample_pos++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
            p->buf = p->historybuffer;
        }
    }
}

static void predictor_decode_mono_3800(APEContext *ctx, int count)
{
    APEPredictor *p = &ctx->predictor;
    int32_t *decoded0 = ctx->decoded[0];
    int32_t coeffs[256], delay[256];
    int start = 4, shift = 10;

    if (ctx->compression_level == COMPRESSION_LEVEL_HIGH) {
        start = 16;
        long_filter_high_3800(decoded0, 16, 9, coeffs, delay, count);
    } else if (ctx->compression_level == COMPRESSION_LEVEL_EXTRA_HIGH) {
        int order = 128, shift2 = 11;

        if (ctx->fileversion >= 3830) {
            order <<= 1;
            shift++;
            shift2++;
            long_filter_ehigh_3830(decoded0 + order, count - order);
        }
        start = order;
        long_filter_high_3800(decoded0, order, shift2, coeffs, delay, count);
    }

    while (count--) {
        if (ctx->compression_level == COMPRESSION_LEVEL_FAST) {
            *decoded0 = filter_fast_3320(p, *decoded0, 0, YDELAYA);
            decoded0++;
        } else {
            *decoded0 = filter_3800(p, *decoded0, 0, YDELAYA, YDELAYB,
                                    start, shift);
            decoded0++;
        }

        /* Combined */
        p->buf++;
        p->sample_pos++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
            p->buf = p->historybuffer;
        }
    }
}

1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
static av_always_inline int predictor_update_3930(APEPredictor *p,
                                                  const int decoded, const int filter,
                                                  const int delayA)
{
    int32_t predictionA, sign;
    int32_t d0, d1, d2, d3;

    p->buf[delayA]     = p->lastA[filter];
    d0 = p->buf[delayA    ];
    d1 = p->buf[delayA    ] - p->buf[delayA - 1];
    d2 = p->buf[delayA - 1] - p->buf[delayA - 2];
    d3 = p->buf[delayA - 2] - p->buf[delayA - 3];

    predictionA = d0 * p->coeffsA[filter][0] +
                  d1 * p->coeffsA[filter][1] +
                  d2 * p->coeffsA[filter][2] +
                  d3 * p->coeffsA[filter][3];

    p->lastA[filter] = decoded + (predictionA >> 9);
    p->filterA[filter] = p->lastA[filter] + ((p->filterA[filter] * 31) >> 5);

    sign = APESIGN(decoded);
    p->coeffsA[filter][0] += ((d0 < 0) * 2 - 1) * sign;
    p->coeffsA[filter][1] += ((d1 < 0) * 2 - 1) * sign;
    p->coeffsA[filter][2] += ((d2 < 0) * 2 - 1) * sign;
    p->coeffsA[filter][3] += ((d3 < 0) * 2 - 1) * sign;

    return p->filterA[filter];
}

static void predictor_decode_stereo_3930(APEContext *ctx, int count)
{
    APEPredictor *p = &ctx->predictor;
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];

    ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count);

    while (count--) {
        /* Predictor Y */
        int Y = *decoded1, X = *decoded0;
        *decoded0 = predictor_update_3930(p, Y, 0, YDELAYA);
        decoded0++;
        *decoded1 = predictor_update_3930(p, X, 1, XDELAYA);
        decoded1++;

        /* Combined */
        p->buf++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
            p->buf = p->historybuffer;
        }
    }
}

static void predictor_decode_mono_3930(APEContext *ctx, int count)
{
    APEPredictor *p = &ctx->predictor;
    int32_t *decoded0 = ctx->decoded[0];

    ape_apply_filters(ctx, ctx->decoded[0], NULL, count);

    while (count--) {
        *decoded0 = predictor_update_3930(p, *decoded0, 0, YDELAYA);
        decoded0++;

        p->buf++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
            p->buf = p->historybuffer;
        }
    }
}

Justin Ruggles's avatar
Justin Ruggles committed
1114 1115 1116 1117
static av_always_inline int predictor_update_filter(APEPredictor *p,
                                                    const int decoded, const int filter,
                                                    const int delayA,  const int delayB,
                                                    const int adaptA,  const int adaptB)
Kostya Shishkov's avatar
Kostya Shishkov committed
1118
{
1119
    int32_t predictionA, predictionB, sign;
Kostya Shishkov's avatar
Kostya Shishkov committed
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146

    p->buf[delayA]     = p->lastA[filter];
    p->buf[adaptA]     = APESIGN(p->buf[delayA]);
    p->buf[delayA - 1] = p->buf[delayA] - p->buf[delayA - 1];
    p->buf[adaptA - 1] = APESIGN(p->buf[delayA - 1]);

    predictionA = p->buf[delayA    ] * p->coeffsA[filter][0] +
                  p->buf[delayA - 1] * p->coeffsA[filter][1] +
                  p->buf[delayA - 2] * p->coeffsA[filter][2] +
                  p->buf[delayA - 3] * p->coeffsA[filter][3];

    /*  Apply a scaled first-order filter compression */
    p->buf[delayB]     = p->filterA[filter ^ 1] - ((p->filterB[filter] * 31) >> 5);
    p->buf[adaptB]     = APESIGN(p->buf[delayB]);
    p->buf[delayB - 1] = p->buf[delayB] - p->buf[delayB - 1];
    p->buf[adaptB - 1] = APESIGN(p->buf[delayB - 1]);
    p->filterB[filter] = p->filterA[filter ^ 1];

    predictionB = p->buf[delayB    ] * p->coeffsB[filter][0] +
                  p->buf[delayB - 1] * p->coeffsB[filter][1] +
                  p->buf[delayB - 2] * p->coeffsB[filter][2] +
                  p->buf[delayB - 3] * p->coeffsB[filter][3] +
                  p->buf[delayB - 4] * p->coeffsB[filter][4];

    p->lastA[filter] = decoded + ((predictionA + (predictionB >> 1)) >> 10);
    p->filterA[filter] = p->lastA[filter] + ((p->filterA[filter] * 31) >> 5);

1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
    sign = APESIGN(decoded);
    p->coeffsA[filter][0] += p->buf[adaptA    ] * sign;
    p->coeffsA[filter][1] += p->buf[adaptA - 1] * sign;
    p->coeffsA[filter][2] += p->buf[adaptA - 2] * sign;
    p->coeffsA[filter][3] += p->buf[adaptA - 3] * sign;
    p->coeffsB[filter][0] += p->buf[adaptB    ] * sign;
    p->coeffsB[filter][1] += p->buf[adaptB - 1] * sign;
    p->coeffsB[filter][2] += p->buf[adaptB - 2] * sign;
    p->coeffsB[filter][3] += p->buf[adaptB - 3] * sign;
    p->coeffsB[filter][4] += p->buf[adaptB - 4] * sign;
Kostya Shishkov's avatar
Kostya Shishkov committed
1157 1158 1159 1160

    return p->filterA[filter];
}

1161
static void predictor_decode_stereo_3950(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1162 1163
{
    APEPredictor *p = &ctx->predictor;
1164 1165
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
Kostya Shishkov's avatar
Kostya Shishkov committed
1166

1167 1168
    ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count);

Kostya Shishkov's avatar
Kostya Shishkov committed
1169 1170
    while (count--) {
        /* Predictor Y */
Justin Ruggles's avatar
Justin Ruggles committed
1171 1172
        *decoded0 = predictor_update_filter(p, *decoded0, 0, YDELAYA, YDELAYB,
                                            YADAPTCOEFFSA, YADAPTCOEFFSB);
1173
        decoded0++;
Justin Ruggles's avatar
Justin Ruggles committed
1174 1175
        *decoded1 = predictor_update_filter(p, *decoded1, 1, XDELAYA, XDELAYB,
                                            XADAPTCOEFFSA, XADAPTCOEFFSB);
1176
        decoded1++;
Kostya Shishkov's avatar
Kostya Shishkov committed
1177 1178 1179 1180 1181 1182

        /* Combined */
        p->buf++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
1183 1184
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
1185 1186 1187 1188 1189
            p->buf = p->historybuffer;
        }
    }
}

1190
static void predictor_decode_mono_3950(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1191 1192
{
    APEPredictor *p = &ctx->predictor;
1193
    int32_t *decoded0 = ctx->decoded[0];
1194
    int32_t predictionA, currentA, A, sign;
Kostya Shishkov's avatar
Kostya Shishkov committed
1195

1196 1197
    ape_apply_filters(ctx, ctx->decoded[0], NULL, count);

Kostya Shishkov's avatar
Kostya Shishkov committed
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215
    currentA = p->lastA[0];

    while (count--) {
        A = *decoded0;

        p->buf[YDELAYA] = currentA;
        p->buf[YDELAYA - 1] = p->buf[YDELAYA] - p->buf[YDELAYA - 1];

        predictionA = p->buf[YDELAYA    ] * p->coeffsA[0][0] +
                      p->buf[YDELAYA - 1] * p->coeffsA[0][1] +
                      p->buf[YDELAYA - 2] * p->coeffsA[0][2] +
                      p->buf[YDELAYA - 3] * p->coeffsA[0][3];

        currentA = A + (predictionA >> 10);

        p->buf[YADAPTCOEFFSA]     = APESIGN(p->buf[YDELAYA    ]);
        p->buf[YADAPTCOEFFSA - 1] = APESIGN(p->buf[YDELAYA - 1]);

1216 1217 1218 1219 1220
        sign = APESIGN(A);
        p->coeffsA[0][0] += p->buf[YADAPTCOEFFSA    ] * sign;
        p->coeffsA[0][1] += p->buf[YADAPTCOEFFSA - 1] * sign;
        p->coeffsA[0][2] += p->buf[YADAPTCOEFFSA - 2] * sign;
        p->coeffsA[0][3] += p->buf[YADAPTCOEFFSA - 3] * sign;
Kostya Shishkov's avatar
Kostya Shishkov committed
1221 1222 1223 1224 1225

        p->buf++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
1226 1227
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
            p->buf = p->historybuffer;
        }

        p->filterA[0] = currentA + ((p->filterA[0] * 31) >> 5);
        *(decoded0++) = p->filterA[0];
    }

    p->lastA[0] = currentA;
}

Justin Ruggles's avatar
Justin Ruggles committed
1238
static void do_init_filter(APEFilter *f, int16_t *buf, int order)
Kostya Shishkov's avatar
Kostya Shishkov committed
1239 1240 1241 1242 1243 1244
{
    f->coeffs = buf;
    f->historybuffer = buf + order;
    f->delay       = f->historybuffer + order * 2;
    f->adaptcoeffs = f->historybuffer + order;

1245 1246
    memset(f->historybuffer, 0, (order * 2) * sizeof(*f->historybuffer));
    memset(f->coeffs, 0, order * sizeof(*f->coeffs));
Kostya Shishkov's avatar
Kostya Shishkov committed
1247 1248 1249
    f->avg = 0;
}

Justin Ruggles's avatar
Justin Ruggles committed
1250
static void init_filter(APEContext *ctx, APEFilter *f, int16_t *buf, int order)
Kostya Shishkov's avatar
Kostya Shishkov committed
1251 1252 1253 1254 1255
{
    do_init_filter(&f[0], buf, order);
    do_init_filter(&f[1], buf + order * 3 + HISTORY_SIZE, order);
}

Justin Ruggles's avatar
Justin Ruggles committed
1256 1257
static void do_apply_filter(APEContext *ctx, int version, APEFilter *f,
                            int32_t *data, int count, int order, int fracbits)
Kostya Shishkov's avatar
Kostya Shishkov committed
1258 1259 1260 1261 1262 1263
{
    int res;
    int absres;

    while (count--) {
        /* round fixedpoint scalar product */
Justin Ruggles's avatar
Justin Ruggles committed
1264 1265 1266
        res = ctx->dsp.scalarproduct_and_madd_int16(f->coeffs, f->delay - order,
                                                    f->adaptcoeffs - order,
                                                    order, APESIGN(*data));
1267
        res = (res + (1 << (fracbits - 1))) >> fracbits;
Kostya Shishkov's avatar
Kostya Shishkov committed
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
        res += *data;
        *data++ = res;

        /* Update the output history */
        *f->delay++ = av_clip_int16(res);

        if (version < 3980) {
            /* Version ??? to < 3.98 files (untested) */
            f->adaptcoeffs[0]  = (res == 0) ? 0 : ((res >> 28) & 8) - 4;
            f->adaptcoeffs[-4] >>= 1;
            f->adaptcoeffs[-8] >>= 1;
        } else {
            /* Version 3.98 and later files */

            /* Update the adaption coefficients */
1283 1284
            absres = FFABS(res);
            if (absres)
1285
                *f->adaptcoeffs = ((res & (-1<<31)) ^ (-1<<30)) >>
Justin Ruggles's avatar
Justin Ruggles committed
1286
                                  (25 + (absres <= f->avg*3) + (absres <= f->avg*4/3));
Kostya Shishkov's avatar
Kostya Shishkov committed
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
            else
                *f->adaptcoeffs = 0;

            f->avg += (absres - f->avg) / 16;

            f->adaptcoeffs[-1] >>= 1;
            f->adaptcoeffs[-2] >>= 1;
            f->adaptcoeffs[-8] >>= 1;
        }

        f->adaptcoeffs++;

        /* Have we filled the history buffer? */
        if (f->delay == f->historybuffer + HISTORY_SIZE + (order * 2)) {
            memmove(f->historybuffer, f->delay - (order * 2),
1302
                    (order * 2) * sizeof(*f->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
1303 1304 1305 1306 1307 1308
            f->delay = f->historybuffer + order * 2;
            f->adaptcoeffs = f->historybuffer + order;
        }
    }
}

Justin Ruggles's avatar
Justin Ruggles committed
1309 1310
static void apply_filter(APEContext *ctx, APEFilter *f,
                         int32_t *data0, int32_t *data1,
Kostya Shishkov's avatar
Kostya Shishkov committed
1311 1312
                         int count, int order, int fracbits)
{
1313
    do_apply_filter(ctx, ctx->fileversion, &f[0], data0, count, order, fracbits);
Kostya Shishkov's avatar
Kostya Shishkov committed
1314
    if (data1)
1315
        do_apply_filter(ctx, ctx->fileversion, &f[1], data1, count, order, fracbits);
Kostya Shishkov's avatar
Kostya Shishkov committed
1316 1317
}

Justin Ruggles's avatar
Justin Ruggles committed
1318 1319
static void ape_apply_filters(APEContext *ctx, int32_t *decoded0,
                              int32_t *decoded1, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1320 1321 1322 1323 1324 1325
{
    int i;

    for (i = 0; i < APE_FILTER_LEVELS; i++) {
        if (!ape_filter_orders[ctx->fset][i])
            break;
Justin Ruggles's avatar
Justin Ruggles committed
1326 1327 1328
        apply_filter(ctx, ctx->filters[i], decoded0, decoded1, count,
                     ape_filter_orders[ctx->fset][i],
                     ape_filter_fracbits[ctx->fset][i]);
Kostya Shishkov's avatar
Kostya Shishkov committed
1329 1330 1331
    }
}

1332
static int init_frame_decoder(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
1333
{
1334 1335 1336
    int i, ret;
    if ((ret = init_entropy_decoder(ctx)) < 0)
        return ret;
Kostya Shishkov's avatar
Kostya Shishkov committed
1337 1338 1339 1340 1341
    init_predictor_decoder(ctx);

    for (i = 0; i < APE_FILTER_LEVELS; i++) {
        if (!ape_filter_orders[ctx->fset][i])
            break;
Justin Ruggles's avatar
Justin Ruggles committed
1342 1343
        init_filter(ctx, ctx->filters[i], ctx->filterbuf[i],
                    ape_filter_orders[ctx->fset][i]);
Kostya Shishkov's avatar
Kostya Shishkov committed
1344
    }
1345
    return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
1346 1347
}

Justin Ruggles's avatar
Justin Ruggles committed
1348
static void ape_unpack_mono(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1349 1350 1351 1352 1353 1354 1355
{
    if (ctx->frameflags & APE_FRAMECODE_STEREO_SILENCE) {
        /* We are pure silence, so we're done. */
        av_log(ctx->avctx, AV_LOG_DEBUG, "pure silence mono\n");
        return;
    }

1356
    ctx->entropy_decode_mono(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1357 1358

    /* Now apply the predictor decoding */
1359
    ctx->predictor_decode_mono(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1360 1361 1362

    /* Pseudo-stereo - just copy left channel to right channel */
    if (ctx->channels == 2) {
1363
        memcpy(ctx->decoded[1], ctx->decoded[0], count * sizeof(*ctx->decoded[1]));
Kostya Shishkov's avatar
Kostya Shishkov committed
1364 1365 1366
    }
}

Justin Ruggles's avatar
Justin Ruggles committed
1367
static void ape_unpack_stereo(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1368 1369
{
    int32_t left, right;
1370 1371
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
Kostya Shishkov's avatar
Kostya Shishkov committed
1372 1373 1374 1375 1376 1377 1378

    if (ctx->frameflags & APE_FRAMECODE_STEREO_SILENCE) {
        /* We are pure silence, so we're done. */
        av_log(ctx->avctx, AV_LOG_DEBUG, "pure silence stereo\n");
        return;
    }

1379
    ctx->entropy_decode_stereo(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1380 1381

    /* Now apply the predictor decoding */
1382
    ctx->predictor_decode_stereo(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393

    /* Decorrelate and scale to output depth */
    while (count--) {
        left = *decoded1 - (*decoded0 / 2);
        right = left + *decoded0;

        *(decoded0++) = left;
        *(decoded1++) = right;
    }
}

1394 1395
static int ape_decode_frame(AVCodecContext *avctx, void *data,
                            int *got_frame_ptr, AVPacket *avpkt)
Kostya Shishkov's avatar
Kostya Shishkov committed
1396
{
1397
    AVFrame *frame     = data;
1398
    const uint8_t *buf = avpkt->data;
Kostya Shishkov's avatar
Kostya Shishkov committed
1399
    APEContext *s = avctx->priv_data;
1400 1401 1402
    uint8_t *sample8;
    int16_t *sample16;
    int32_t *sample24;
1403
    int i, ch, ret;
1404
    int blockstodecode;
1405
    int bytes_used = 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
1406

1407 1408 1409 1410
    /* this should never be negative, but bad things will happen if it is, so
       check it just to make sure. */
    av_assert0(s->samples >= 0);

Kostya Shishkov's avatar
Kostya Shishkov committed
1411
    if(!s->samples){
1412
        uint32_t nblocks, offset;
1413
        int buf_size;
1414

1415
        if (!avpkt->size) {
1416
            *got_frame_ptr = 0;
1417 1418
            return 0;
        }
1419
        if (avpkt->size < 8) {
1420 1421 1422
            av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
            return AVERROR_INVALIDDATA;
        }
1423 1424 1425 1426 1427
        buf_size = avpkt->size & ~3;
        if (buf_size != avpkt->size) {
            av_log(avctx, AV_LOG_WARNING, "packet size is not a multiple of 4. "
                   "extra bytes at the end will be skipped.\n");
        }
1428 1429
        if (s->fileversion < 3950) // previous versions overread two bytes
            buf_size += 2;
1430 1431
        av_fast_malloc(&s->data, &s->data_size, buf_size);
        if (!s->data)
1432
            return AVERROR(ENOMEM);
Michael Niedermayer's avatar
Michael Niedermayer committed
1433
        s->dsp.bswap_buf((uint32_t*)s->data, (const uint32_t*)buf, buf_size >> 2);
1434
        memset(s->data + (buf_size & ~3), 0, buf_size & 3);
1435
        s->ptr = s->data;
Kostya Shishkov's avatar
Kostya Shishkov committed
1436 1437
        s->data_end = s->data + buf_size;

1438
        nblocks = bytestream_get_be32(&s->ptr);
1439
        offset  = bytestream_get_be32(&s->ptr);
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
        if (s->fileversion >= 3900) {
            if (offset > 3) {
                av_log(avctx, AV_LOG_ERROR, "Incorrect offset passed\n");
                s->data = NULL;
                return AVERROR_INVALIDDATA;
            }
            if (s->data_end - s->ptr < offset) {
                av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
                return AVERROR_INVALIDDATA;
            }
            s->ptr += offset;
        } else {
            init_get_bits(&s->gb, s->ptr, (s->data_end - s->ptr) * 8);
            if (s->fileversion > 3800)
                skip_bits_long(&s->gb, offset * 8);
            else
                skip_bits_long(&s->gb, offset);
1457
        }
Kostya Shishkov's avatar
Kostya Shishkov committed
1458

1459 1460 1461
        if (!nblocks || nblocks > INT_MAX) {
            av_log(avctx, AV_LOG_ERROR, "Invalid sample count: %u.\n", nblocks);
            return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
1462
        }
1463
        s->samples = nblocks;
Kostya Shishkov's avatar
Kostya Shishkov committed
1464 1465

        /* Initialize the frame decoder */
1466 1467 1468 1469
        if (init_frame_decoder(s) < 0) {
            av_log(avctx, AV_LOG_ERROR, "Error reading frame header\n");
            return AVERROR_INVALIDDATA;
        }
1470

1471
        bytes_used = avpkt->size;
Kostya Shishkov's avatar
Kostya Shishkov committed
1472 1473 1474
    }

    if (!s->data) {
1475
        *got_frame_ptr = 0;
1476
        return avpkt->size;
Kostya Shishkov's avatar
Kostya Shishkov committed
1477 1478
    }

1479
    blockstodecode = FFMIN(s->blocks_per_loop, s->samples);
1480 1481 1482 1483
    // for old files coefficients were not interleaved,
    // so we need to decode all of them at once
    if (s->fileversion < 3930)
        blockstodecode = s->samples;
Kostya Shishkov's avatar
Kostya Shishkov committed
1484

1485 1486 1487 1488 1489 1490 1491 1492 1493
    /* reallocate decoded sample buffer if needed */
    av_fast_malloc(&s->decoded_buffer, &s->decoded_size,
                   2 * FFALIGN(blockstodecode, 8) * sizeof(*s->decoded_buffer));
    if (!s->decoded_buffer)
        return AVERROR(ENOMEM);
    memset(s->decoded_buffer, 0, s->decoded_size);
    s->decoded[0] = s->decoded_buffer;
    s->decoded[1] = s->decoded_buffer + FFALIGN(blockstodecode, 8);

1494
    /* get output buffer */
1495
    frame->nb_samples = blockstodecode;
1496
    if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
1497 1498
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
        return ret;
1499 1500
    }

1501 1502
    s->error=0;

Kostya Shishkov's avatar
Kostya Shishkov committed
1503 1504 1505 1506
    if ((s->channels == 1) || (s->frameflags & APE_FRAMECODE_PSEUDO_STEREO))
        ape_unpack_mono(s, blockstodecode);
    else
        ape_unpack_stereo(s, blockstodecode);
1507
    emms_c();
Kostya Shishkov's avatar
Kostya Shishkov committed
1508

1509
    if (s->error) {
1510 1511
        s->samples=0;
        av_log(avctx, AV_LOG_ERROR, "Error decoding frame\n");
1512
        return AVERROR_INVALIDDATA;
1513 1514
    }

1515 1516
    switch (s->bps) {
    case 8:
1517
        for (ch = 0; ch < s->channels; ch++) {
1518
            sample8 = (uint8_t *)frame->data[ch];
1519 1520
            for (i = 0; i < blockstodecode; i++)
                *sample8++ = (s->decoded[ch][i] + 0x80) & 0xff;
1521 1522 1523
        }
        break;
    case 16:
1524
        for (ch = 0; ch < s->channels; ch++) {
1525
            sample16 = (int16_t *)frame->data[ch];
1526 1527
            for (i = 0; i < blockstodecode; i++)
                *sample16++ = s->decoded[ch][i];
1528 1529 1530
        }
        break;
    case 24:
1531
        for (ch = 0; ch < s->channels; ch++) {
1532
            sample24 = (int32_t *)frame->data[ch];
1533 1534
            for (i = 0; i < blockstodecode; i++)
                *sample24++ = s->decoded[ch][i] << 8;
1535 1536
        }
        break;
Kostya Shishkov's avatar
Kostya Shishkov committed
1537 1538 1539 1540
    }

    s->samples -= blockstodecode;

1541
    *got_frame_ptr = 1;
1542

Kostya Shishkov's avatar
Kostya Shishkov committed
1543 1544 1545
    return bytes_used;
}

1546 1547 1548 1549 1550 1551
static void ape_flush(AVCodecContext *avctx)
{
    APEContext *s = avctx->priv_data;
    s->samples= 0;
}

1552 1553 1554
#define OFFSET(x) offsetof(APEContext, x)
#define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
static const AVOption options[] = {
1555
    { "max_samples", "maximum number of samples decoded per call",             OFFSET(blocks_per_loop), AV_OPT_TYPE_INT,   { .i64 = 4608 },    1,       INT_MAX, PAR, "max_samples" },
1556
    { "all",         "no maximum. decode all samples for each packet at once", 0,                       AV_OPT_TYPE_CONST, { .i64 = INT_MAX }, INT_MIN, INT_MAX, PAR, "max_samples" },
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
    { NULL},
};

static const AVClass ape_decoder_class = {
    .class_name = "APE decoder",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};

1567
AVCodec ff_ape_decoder = {
1568 1569
    .name           = "ape",
    .type           = AVMEDIA_TYPE_AUDIO,
1570
    .id             = AV_CODEC_ID_APE,
1571 1572 1573 1574
    .priv_data_size = sizeof(APEContext),
    .init           = ape_decode_init,
    .close          = ape_decode_close,
    .decode         = ape_decode_frame,
1575
    .capabilities   = CODEC_CAP_SUBFRAMES | CODEC_CAP_DELAY | CODEC_CAP_DR1,
1576 1577
    .flush          = ape_flush,
    .long_name      = NULL_IF_CONFIG_SMALL("Monkey's Audio"),
1578 1579 1580 1581
    .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
                                                      AV_SAMPLE_FMT_S16P,
                                                      AV_SAMPLE_FMT_S32P,
                                                      AV_SAMPLE_FMT_NONE },
1582
    .priv_class     = &ape_decoder_class,
Kostya Shishkov's avatar
Kostya Shishkov committed
1583
};