apedec.c 50.3 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
/*
 * Monkey's Audio lossless audio decoder
 * 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
 */

23 24
#include <inttypes.h>

25 26 27
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
28
#include "lossless_audiodsp.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
29
#include "avcodec.h"
30
#include "bswapdsp.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
31
#include "bytestream.h"
32
#include "internal.h"
33 34
#include "get_bits.h"
#include "unary.h"
Kostya Shishkov's avatar
Kostya Shishkov committed
35 36

/**
37
 * @file
Kostya Shishkov's avatar
Kostya Shishkov committed
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 85 86 87
 * 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
88
static const uint8_t ape_filter_fracbits[5][APE_FILTER_LEVELS] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
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 128 129 130
    {  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];
131 132

    unsigned int sample_pos;
Kostya Shishkov's avatar
Kostya Shishkov committed
133 134 135 136
} APEPredictor;

/** Decoder context */
typedef struct APEContext {
137
    AVClass *class;                          ///< class for AVOptions
Kostya Shishkov's avatar
Kostya Shishkov committed
138
    AVCodecContext *avctx;
139
    BswapDSPContext bdsp;
140
    LLAudDSPContext adsp;
Kostya Shishkov's avatar
Kostya Shishkov committed
141 142
    int channels;
    int samples;                             ///< samples left to decode in current frame
143
    int bps;
Kostya Shishkov's avatar
Kostya Shishkov committed
144 145 146 147 148 149 150 151 152 153

    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

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

    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
165
    GetBitContext gb;
Kostya Shishkov's avatar
Kostya Shishkov committed
166 167 168

    uint8_t *data;                           ///< current frame data
    uint8_t *data_end;                       ///< frame data end
169
    int data_size;                           ///< frame data allocated size
Michael Niedermayer's avatar
Michael Niedermayer committed
170
    const uint8_t *ptr;                      ///< current position in frame data
171 172

    int error;
173 174 175 176 177

    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
178 179
} APEContext;

180 181 182
static void ape_apply_filters(APEContext *ctx, int32_t *decoded0,
                              int32_t *decoded1, int count);

183 184 185 186
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);
187 188
static void entropy_decode_mono_3900(APEContext *ctx, int blockstodecode);
static void entropy_decode_stereo_3900(APEContext *ctx, int blockstodecode);
189
static void entropy_decode_stereo_3930(APEContext *ctx, int blockstodecode);
190 191 192
static void entropy_decode_mono_3990(APEContext *ctx, int blockstodecode);
static void entropy_decode_stereo_3990(APEContext *ctx, int blockstodecode);

193 194
static void predictor_decode_mono_3800(APEContext *ctx, int count);
static void predictor_decode_stereo_3800(APEContext *ctx, int count);
195 196
static void predictor_decode_mono_3930(APEContext *ctx, int count);
static void predictor_decode_stereo_3930(APEContext *ctx, int count);
197 198 199
static void predictor_decode_mono_3950(APEContext *ctx, int count);
static void predictor_decode_stereo_3950(APEContext *ctx, int count);

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

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

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

212 213 214
    return 0;
}

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

    if (avctx->extradata_size != 6) {
        av_log(avctx, AV_LOG_ERROR, "Incorrect extradata\n");
222
        return AVERROR(EINVAL);
Kostya Shishkov's avatar
Kostya Shishkov committed
223 224 225
    }
    if (avctx->channels > 2) {
        av_log(avctx, AV_LOG_ERROR, "Only mono and stereo is supported\n");
226
        return AVERROR(EINVAL);
Kostya Shishkov's avatar
Kostya Shishkov committed
227
    }
228 229 230
    s->bps = avctx->bits_per_coded_sample;
    switch (s->bps) {
    case 8:
231
        avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
232 233
        break;
    case 16:
234
        avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
235 236
        break;
    case 24:
237
        avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
238 239
        break;
    default:
240 241
        avpriv_request_sample(avctx,
                              "%d bits per coded sample", s->bps);
242 243
        return AVERROR_PATCHWELCOME;
    }
Kostya Shishkov's avatar
Kostya Shishkov committed
244 245 246 247 248 249
    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
250 251
    av_log(avctx, AV_LOG_DEBUG, "Compression Level: %d - Flags: %d\n",
           s->compression_level, s->flags);
252
    if (s->compression_level % 1000 || s->compression_level > COMPRESSION_LEVEL_INSANE ||
253
        !s->compression_level ||
254
        (s->fileversion < 3930 && s->compression_level == COMPRESSION_LEVEL_INSANE)) {
Justin Ruggles's avatar
Justin Ruggles committed
255 256
        av_log(avctx, AV_LOG_ERROR, "Incorrect compression level %d\n",
               s->compression_level);
257
        return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
258 259 260 261 262
    }
    s->fset = s->compression_level / 1000 - 1;
    for (i = 0; i < APE_FILTER_LEVELS; i++) {
        if (!ape_filter_orders[s->fset][i])
            break;
263 264 265
        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
266 267
    }

268 269 270 271 272 273 274
    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) {
275 276
        s->entropy_decode_mono   = entropy_decode_mono_3900;
        s->entropy_decode_stereo = entropy_decode_stereo_3900;
277 278 279
    } else if (s->fileversion < 3990) {
        s->entropy_decode_mono   = entropy_decode_mono_3900;
        s->entropy_decode_stereo = entropy_decode_stereo_3930;
280 281 282 283 284
    } else {
        s->entropy_decode_mono   = entropy_decode_mono_3990;
        s->entropy_decode_stereo = entropy_decode_stereo_3990;
    }

285 286 287 288
    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) {
289 290 291 292 293 294
        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;
    }
295

296
    ff_bswapdsp_init(&s->bdsp);
297
    ff_llauddsp_init(&s->adsp);
298
    avctx->channel_layout = (avctx->channels==2) ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO;
299

Kostya Shishkov's avatar
Kostya Shishkov committed
300
    return 0;
301 302 303
filter_alloc_fail:
    ape_decode_close(avctx);
    return AVERROR(ENOMEM);
Kostya Shishkov's avatar
Kostya Shishkov committed
304 305 306
}

/**
307
 * @name APE range decoding functions
Kostya Shishkov's avatar
Kostya Shishkov committed
308 309 310 311 312 313 314 315 316 317
 * @{
 */

#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
318
static inline void range_start_decoding(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
319 320 321 322 323 324 325
{
    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
326
static inline void range_dec_normalize(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
327 328
{
    while (ctx->rc.range <= BOTTOM_VALUE) {
329
        ctx->rc.buffer <<= 8;
330
        if(ctx->ptr < ctx->data_end) {
331
            ctx->rc.buffer += *ctx->ptr;
332 333 334 335
            ctx->ptr++;
        } else {
            ctx->error = 1;
        }
Kostya Shishkov's avatar
Kostya Shishkov committed
336 337 338 339 340 341 342
        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!
343
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
344 345 346
 * @param tot_f is the total frequency or (code_value)1<<shift
 * @return the culmulative frequency
 */
Justin Ruggles's avatar
Justin Ruggles committed
347
static inline int range_decode_culfreq(APEContext *ctx, int tot_f)
Kostya Shishkov's avatar
Kostya Shishkov committed
348 349 350 351 352 353 354 355
{
    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
356
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
357 358
 * @param shift number of bits to decode
 */
Justin Ruggles's avatar
Justin Ruggles committed
359
static inline int range_decode_culshift(APEContext *ctx, int shift)
Kostya Shishkov's avatar
Kostya Shishkov committed
360 361 362 363 364 365 366 367 368
{
    range_dec_normalize(ctx);
    ctx->rc.help = ctx->rc.range >> shift;
    return ctx->rc.low / ctx->rc.help;
}


/**
 * Update decoding state
369
 * @param ctx decoder context
Kostya Shishkov's avatar
Kostya Shishkov committed
370 371 372
 * @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
373
static inline void range_decode_update(APEContext *ctx, int sy_f, int lt_f)
Kostya Shishkov's avatar
Kostya Shishkov committed
374 375 376 377 378 379
{
    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
380
static inline int range_decode_bits(APEContext *ctx, int n)
Kostya Shishkov's avatar
Kostya Shishkov committed
381 382 383 384 385 386 387 388 389 390 391 392
{
    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
393
static const uint16_t counts_3970[22] = {
Kostya Shishkov's avatar
Kostya Shishkov committed
394 395
        0, 14824, 28224, 39348, 47855, 53994, 58171, 60926,
    62682, 63786, 64463, 64878, 65126, 65276, 65365, 65419,
396
    65450, 65469, 65480, 65487, 65491, 65493,
Kostya Shishkov's avatar
Kostya Shishkov committed
397 398 399 400 401
};

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

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

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

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

    cf = range_decode_culshift(ctx, 16);

440 441 442 443 444 445 446
    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
447 448 449 450 451 452 453 454 455
    /* 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

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

461
    if (rice->ksum < lim)
Kostya Shishkov's avatar
Kostya Shishkov committed
462 463 464 465 466
        rice->k--;
    else if (rice->ksum >= (1 << (rice->k + 5)))
        rice->k++;
}

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
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;
495
    else if(rice->k <= MIN_CACHE_BITS) {
496
        x = (overflow << rice->k) + get_bits(gb, rice->k);
497 498 499 500
    } else {
        av_log(ctx->avctx, AV_LOG_ERROR, "Too many bits: %d\n", rice->k);
        return AVERROR_INVALIDDATA;
    }
501 502 503 504 505 506 507 508 509 510 511 512 513
    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);
}

514
static inline int ape_decode_value_3900(APEContext *ctx, APERice *rice)
Kostya Shishkov's avatar
Kostya Shishkov committed
515
{
516
    unsigned int x, overflow;
517
    int tmpk;
Kostya Shishkov's avatar
Kostya Shishkov committed
518

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

521 522 523 524 525
    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
526

527 528 529 530 531
    if (tmpk <= 16 || ctx->fileversion < 3910) {
        if (tmpk > 23) {
            av_log(ctx->avctx, AV_LOG_ERROR, "Too many bits: %d\n", tmpk);
            return AVERROR_INVALIDDATA;
        }
532
        x = range_decode_bits(ctx, tmpk);
533
    } else if (tmpk <= 31) {
534 535
        x = range_decode_bits(ctx, 16);
        x |= (range_decode_bits(ctx, tmpk - 16) << 16);
Kostya Shishkov's avatar
Kostya Shishkov committed
536
    } else {
537 538 539 540 541 542 543 544 545 546 547 548 549
        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
550

551 552 553 554
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
555

556 557 558
    pivot = rice->ksum >> 5;
    if (pivot == 0)
        pivot = 1;
Kostya Shishkov's avatar
Kostya Shishkov committed
559

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

562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
    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++;
577
        }
578 579 580 581
        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
582

583
        base = (base_hi << bbits) + base_lo;
Kostya Shishkov's avatar
Kostya Shishkov committed
584 585
    }

586 587
    x = base + overflow * pivot;

Kostya Shishkov's avatar
Kostya Shishkov committed
588 589 590 591 592 593 594 595 596
    update_rice(rice, x);

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

597 598 599 600 601 602 603 604 605 606 607 608
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;
609 610
    if (rice->k >= 24)
        return;
611 612 613 614
    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;
615 616
        if (rice->k >= 24)
            return;
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 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
    }
    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);
}

679 680 681 682 683 684 685 686 687
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)
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
{
    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
704
{
705 706
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
Kostya Shishkov's avatar
Kostya Shishkov committed
707

708
    while (blockstodecode--) {
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
        *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
730 731 732
    }
}

733
static int init_entropy_decoder(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
734 735
{
    /* Read the CRC */
736 737 738 739 740 741 742
    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
743 744 745 746 747 748

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

749 750
        if (ctx->data_end - ctx->ptr < 6)
            return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
751 752 753
        ctx->frameflags = bytestream_get_be32(&ctx->ptr);
    }

Vitor Sessak's avatar
Vitor Sessak committed
754
    /* Initialize the rice structs */
Kostya Shishkov's avatar
Kostya Shishkov committed
755 756 757 758 759
    ctx->riceX.k = 10;
    ctx->riceX.ksum = (1 << ctx->riceX.k) * 16;
    ctx->riceY.k = 10;
    ctx->riceY.ksum = (1 << ctx->riceY.k) * 16;

760 761 762
    if (ctx->fileversion >= 3900) {
        /* The first 8 bits of input are ignored. */
        ctx->ptr++;
Kostya Shishkov's avatar
Kostya Shishkov committed
763

764 765
        range_start_decoding(ctx);
    }
766 767

    return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
768 769
}

770 771 772 773 774 775 776 777 778 779 780 781 782
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
783 784 785
    360, 317, -109, 98
};

Justin Ruggles's avatar
Justin Ruggles committed
786
static void init_predictor_decoder(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
787 788 789 790
{
    APEPredictor *p = &ctx->predictor;

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

794
    /* Initialize and zero the coefficients */
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
    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
811
    memset(p->coeffsB, 0, sizeof(p->coeffsB));
812 813 814 815 816 817
    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
818 819 820 821

    p->filterA[0] = p->filterA[1] = 0;
    p->filterB[0] = p->filterB[1] = 0;
    p->lastA[0]   = p->lastA[1]   = 0;
822 823

    p->sample_pos = 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
824 825 826 827 828 829 830
}

/** 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);
}

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
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];
916
            coeffs[j] += ((delay[j] >> 31) | 1) * sign;
917 918 919 920 921 922 923 924 925 926 927 928
        }
        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;
929
    int32_t coeffs[8] = { 0 }, delay[8] = { 0 };
930 931 932 933 934 935

    for (i = 0; i < length; i++) {
        dotprod = 0;
        sign = APESIGN(buffer[i]);
        for (j = 7; j >= 0; j--) {
            dotprod += delay[j] * coeffs[j];
936
            coeffs[j] += ((delay[j] >> 31) | 1) * sign;
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 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
        }
        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;
        }
    }
}

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 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
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
1127 1128 1129 1130
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
1131
{
1132
    int32_t predictionA, predictionB, sign;
Kostya Shishkov's avatar
Kostya Shishkov committed
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159

    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);

1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
    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
1170 1171 1172 1173

    return p->filterA[filter];
}

1174
static void predictor_decode_stereo_3950(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1175 1176
{
    APEPredictor *p = &ctx->predictor;
1177 1178
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
Kostya Shishkov's avatar
Kostya Shishkov committed
1179

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

Kostya Shishkov's avatar
Kostya Shishkov committed
1182 1183
    while (count--) {
        /* Predictor Y */
Justin Ruggles's avatar
Justin Ruggles committed
1184 1185
        *decoded0 = predictor_update_filter(p, *decoded0, 0, YDELAYA, YDELAYB,
                                            YADAPTCOEFFSA, YADAPTCOEFFSB);
1186
        decoded0++;
Justin Ruggles's avatar
Justin Ruggles committed
1187 1188
        *decoded1 = predictor_update_filter(p, *decoded1, 1, XDELAYA, XDELAYB,
                                            XADAPTCOEFFSA, XADAPTCOEFFSB);
1189
        decoded1++;
Kostya Shishkov's avatar
Kostya Shishkov committed
1190 1191 1192 1193 1194 1195

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

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
1196 1197
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
1198 1199 1200 1201 1202
            p->buf = p->historybuffer;
        }
    }
}

1203
static void predictor_decode_mono_3950(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1204 1205
{
    APEPredictor *p = &ctx->predictor;
1206
    int32_t *decoded0 = ctx->decoded[0];
1207
    int32_t predictionA, currentA, A, sign;
Kostya Shishkov's avatar
Kostya Shishkov committed
1208

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

Kostya Shishkov's avatar
Kostya Shishkov committed
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
    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]);

1229 1230 1231 1232 1233
        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
1234 1235 1236 1237 1238

        p->buf++;

        /* Have we filled the history buffer? */
        if (p->buf == p->historybuffer + HISTORY_SIZE) {
1239 1240
            memmove(p->historybuffer, p->buf,
                    PREDICTOR_SIZE * sizeof(*p->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
            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
1251
static void do_init_filter(APEFilter *f, int16_t *buf, int order)
Kostya Shishkov's avatar
Kostya Shishkov committed
1252 1253 1254 1255 1256 1257
{
    f->coeffs = buf;
    f->historybuffer = buf + order;
    f->delay       = f->historybuffer + order * 2;
    f->adaptcoeffs = f->historybuffer + order;

1258 1259
    memset(f->historybuffer, 0, (order * 2) * sizeof(*f->historybuffer));
    memset(f->coeffs, 0, order * sizeof(*f->coeffs));
Kostya Shishkov's avatar
Kostya Shishkov committed
1260 1261 1262
    f->avg = 0;
}

Justin Ruggles's avatar
Justin Ruggles committed
1263
static void init_filter(APEContext *ctx, APEFilter *f, int16_t *buf, int order)
Kostya Shishkov's avatar
Kostya Shishkov committed
1264 1265 1266 1267 1268
{
    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
1269 1270
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
1271 1272 1273 1274 1275 1276
{
    int res;
    int absres;

    while (count--) {
        /* round fixedpoint scalar product */
1277 1278 1279 1280
        res = ctx->adsp.scalarproduct_and_madd_int16(f->coeffs,
                                                     f->delay - order,
                                                     f->adaptcoeffs - order,
                                                     order, APESIGN(*data));
1281
        res = (res + (1 << (fracbits - 1))) >> fracbits;
Kostya Shishkov's avatar
Kostya Shishkov committed
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
        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 */
1297 1298
            absres = FFABS(res);
            if (absres)
1299
                *f->adaptcoeffs = ((res & (-1<<31)) ^ (-1<<30)) >>
Justin Ruggles's avatar
Justin Ruggles committed
1300
                                  (25 + (absres <= f->avg*3) + (absres <= f->avg*4/3));
Kostya Shishkov's avatar
Kostya Shishkov committed
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
            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),
1316
                    (order * 2) * sizeof(*f->historybuffer));
Kostya Shishkov's avatar
Kostya Shishkov committed
1317 1318 1319 1320 1321 1322
            f->delay = f->historybuffer + order * 2;
            f->adaptcoeffs = f->historybuffer + order;
        }
    }
}

Justin Ruggles's avatar
Justin Ruggles committed
1323 1324
static void apply_filter(APEContext *ctx, APEFilter *f,
                         int32_t *data0, int32_t *data1,
Kostya Shishkov's avatar
Kostya Shishkov committed
1325 1326
                         int count, int order, int fracbits)
{
1327
    do_apply_filter(ctx, ctx->fileversion, &f[0], data0, count, order, fracbits);
Kostya Shishkov's avatar
Kostya Shishkov committed
1328
    if (data1)
1329
        do_apply_filter(ctx, ctx->fileversion, &f[1], data1, count, order, fracbits);
Kostya Shishkov's avatar
Kostya Shishkov committed
1330 1331
}

Justin Ruggles's avatar
Justin Ruggles committed
1332 1333
static void ape_apply_filters(APEContext *ctx, int32_t *decoded0,
                              int32_t *decoded1, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1334 1335 1336 1337 1338 1339
{
    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
1340 1341 1342
        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
1343 1344 1345
    }
}

1346
static int init_frame_decoder(APEContext *ctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
1347
{
1348 1349 1350
    int i, ret;
    if ((ret = init_entropy_decoder(ctx)) < 0)
        return ret;
Kostya Shishkov's avatar
Kostya Shishkov committed
1351 1352 1353 1354 1355
    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
1356 1357
        init_filter(ctx, ctx->filters[i], ctx->filterbuf[i],
                    ape_filter_orders[ctx->fset][i]);
Kostya Shishkov's avatar
Kostya Shishkov committed
1358
    }
1359
    return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
1360 1361
}

Justin Ruggles's avatar
Justin Ruggles committed
1362
static void ape_unpack_mono(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1363 1364 1365 1366 1367 1368 1369
{
    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;
    }

1370
    ctx->entropy_decode_mono(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1371 1372

    /* Now apply the predictor decoding */
1373
    ctx->predictor_decode_mono(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1374 1375 1376

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

Justin Ruggles's avatar
Justin Ruggles committed
1381
static void ape_unpack_stereo(APEContext *ctx, int count)
Kostya Shishkov's avatar
Kostya Shishkov committed
1382 1383
{
    int32_t left, right;
1384 1385
    int32_t *decoded0 = ctx->decoded[0];
    int32_t *decoded1 = ctx->decoded[1];
Kostya Shishkov's avatar
Kostya Shishkov committed
1386 1387 1388 1389 1390 1391 1392

    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;
    }

1393
    ctx->entropy_decode_stereo(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1394 1395

    /* Now apply the predictor decoding */
1396
    ctx->predictor_decode_stereo(ctx, count);
Kostya Shishkov's avatar
Kostya Shishkov committed
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407

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

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

1408 1409
static int ape_decode_frame(AVCodecContext *avctx, void *data,
                            int *got_frame_ptr, AVPacket *avpkt)
Kostya Shishkov's avatar
Kostya Shishkov committed
1410
{
1411
    AVFrame *frame     = data;
1412
    const uint8_t *buf = avpkt->data;
Kostya Shishkov's avatar
Kostya Shishkov committed
1413
    APEContext *s = avctx->priv_data;
1414 1415 1416
    uint8_t *sample8;
    int16_t *sample16;
    int32_t *sample24;
1417
    int i, ch, ret;
1418
    int blockstodecode;
Kostya Shishkov's avatar
Kostya Shishkov committed
1419

1420 1421 1422 1423
    /* 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
1424
    if(!s->samples){
1425
        uint32_t nblocks, offset;
1426
        int buf_size;
1427

1428
        if (!avpkt->size) {
1429
            *got_frame_ptr = 0;
1430 1431
            return 0;
        }
1432
        if (avpkt->size < 8) {
1433 1434 1435
            av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
            return AVERROR_INVALIDDATA;
        }
1436 1437 1438 1439 1440
        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");
        }
1441 1442
        if (s->fileversion < 3950) // previous versions overread two bytes
            buf_size += 2;
1443
        av_fast_padded_malloc(&s->data, &s->data_size, buf_size);
1444
        if (!s->data)
1445
            return AVERROR(ENOMEM);
1446 1447
        s->bdsp.bswap_buf((uint32_t *) s->data, (const uint32_t *) buf,
                          buf_size >> 2);
1448
        memset(s->data + (buf_size & ~3), 0, buf_size & 3);
1449
        s->ptr = s->data;
Kostya Shishkov's avatar
Kostya Shishkov committed
1450 1451
        s->data_end = s->data + buf_size;

1452
        nblocks = bytestream_get_be32(&s->ptr);
1453
        offset  = bytestream_get_be32(&s->ptr);
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
        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 {
1466 1467
            if ((ret = init_get_bits8(&s->gb, s->ptr, s->data_end - s->ptr)) < 0)
                return ret;
1468 1469 1470 1471
            if (s->fileversion > 3800)
                skip_bits_long(&s->gb, offset * 8);
            else
                skip_bits_long(&s->gb, offset);
1472
        }
Kostya Shishkov's avatar
Kostya Shishkov committed
1473

1474
        if (!nblocks || nblocks > INT_MAX) {
1475 1476
            av_log(avctx, AV_LOG_ERROR, "Invalid sample count: %"PRIu32".\n",
                   nblocks);
1477
            return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
1478
        }
1479
        s->samples = nblocks;
Kostya Shishkov's avatar
Kostya Shishkov committed
1480 1481

        /* Initialize the frame decoder */
1482 1483 1484 1485
        if (init_frame_decoder(s) < 0) {
            av_log(avctx, AV_LOG_ERROR, "Error reading frame header\n");
            return AVERROR_INVALIDDATA;
        }
Kostya Shishkov's avatar
Kostya Shishkov committed
1486 1487 1488
    }

    if (!s->data) {
1489
        *got_frame_ptr = 0;
1490
        return avpkt->size;
Kostya Shishkov's avatar
Kostya Shishkov committed
1491 1492
    }

1493
    blockstodecode = FFMIN(s->blocks_per_loop, s->samples);
1494 1495 1496 1497
    // 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
1498

1499 1500 1501 1502 1503 1504 1505 1506
    /* 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);
Kostya Shishkov's avatar
Kostya Shishkov committed
1507

1508
    /* get output buffer */
1509
    frame->nb_samples = blockstodecode;
1510
    if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
1511
        return ret;
Kostya Shishkov's avatar
Kostya Shishkov committed
1512

1513 1514
    s->error=0;

Kostya Shishkov's avatar
Kostya Shishkov committed
1515 1516 1517 1518
    if ((s->channels == 1) || (s->frameflags & APE_FRAMECODE_PSEUDO_STEREO))
        ape_unpack_mono(s, blockstodecode);
    else
        ape_unpack_stereo(s, blockstodecode);
1519
    emms_c();
Kostya Shishkov's avatar
Kostya Shishkov committed
1520

1521
    if (s->error) {
1522 1523
        s->samples=0;
        av_log(avctx, AV_LOG_ERROR, "Error decoding frame\n");
1524
        return AVERROR_INVALIDDATA;
1525 1526
    }

1527 1528
    switch (s->bps) {
    case 8:
1529
        for (ch = 0; ch < s->channels; ch++) {
1530
            sample8 = (uint8_t *)frame->data[ch];
1531 1532
            for (i = 0; i < blockstodecode; i++)
                *sample8++ = (s->decoded[ch][i] + 0x80) & 0xff;
1533 1534 1535
        }
        break;
    case 16:
1536
        for (ch = 0; ch < s->channels; ch++) {
1537
            sample16 = (int16_t *)frame->data[ch];
1538 1539
            for (i = 0; i < blockstodecode; i++)
                *sample16++ = s->decoded[ch][i];
1540 1541 1542
        }
        break;
    case 24:
1543
        for (ch = 0; ch < s->channels; ch++) {
1544
            sample24 = (int32_t *)frame->data[ch];
1545 1546
            for (i = 0; i < blockstodecode; i++)
                *sample24++ = s->decoded[ch][i] << 8;
1547 1548
        }
        break;
Kostya Shishkov's avatar
Kostya Shishkov committed
1549 1550 1551 1552
    }

    s->samples -= blockstodecode;

1553
    *got_frame_ptr = 1;
1554

1555
    return !s->samples ? avpkt->size : 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
1556 1557
}

1558 1559 1560 1561 1562 1563
static void ape_flush(AVCodecContext *avctx)
{
    APEContext *s = avctx->priv_data;
    s->samples= 0;
}

1564 1565 1566
#define OFFSET(x) offsetof(APEContext, x)
#define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
static const AVOption options[] = {
1567
    { "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" },
1568
    { "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" },
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
    { NULL},
};

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

1579
AVCodec ff_ape_decoder = {
1580
    .name           = "ape",
1581
    .long_name      = NULL_IF_CONFIG_SMALL("Monkey's Audio"),
1582
    .type           = AVMEDIA_TYPE_AUDIO,
1583
    .id             = AV_CODEC_ID_APE,
1584 1585 1586 1587
    .priv_data_size = sizeof(APEContext),
    .init           = ape_decode_init,
    .close          = ape_decode_close,
    .decode         = ape_decode_frame,
1588
    .capabilities   = CODEC_CAP_SUBFRAMES | CODEC_CAP_DELAY | CODEC_CAP_DR1,
1589
    .flush          = ape_flush,
1590 1591 1592 1593
    .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
                                                      AV_SAMPLE_FMT_S16P,
                                                      AV_SAMPLE_FMT_S32P,
                                                      AV_SAMPLE_FMT_NONE },
1594
    .priv_class     = &ape_decoder_class,
Kostya Shishkov's avatar
Kostya Shishkov committed
1595
};