libavcodec/apedec.c
bf4a1f17
 /*
  * 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
  */
 
cc8163e1
 #include <inttypes.h>
 
a903f8f0
 #include "libavutil/avassert.h"
 #include "libavutil/channel_layout.h"
 #include "libavutil/opt.h"
ccff45a0
 #include "lossless_audiodsp.h"
bf4a1f17
 #include "avcodec.h"
c67b449b
 #include "bswapdsp.h"
bf4a1f17
 #include "bytestream.h"
594d4d5d
 #include "internal.h"
613a37ec
 #include "get_bits.h"
 #include "unary.h"
bf4a1f17
 
 /**
ba87f080
  * @file
bf4a1f17
  * 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 */
1637930f
 static const uint8_t ape_filter_fracbits[5][APE_FILTER_LEVELS] = {
bf4a1f17
     {  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];
613a37ec
 
     unsigned int sample_pos;
bf4a1f17
 } APEPredictor;
 
 /** Decoder context */
 typedef struct APEContext {
37390d5c
     AVClass *class;                          ///< class for AVOptions
bf4a1f17
     AVCodecContext *avctx;
c67b449b
     BswapDSPContext bdsp;
ccff45a0
     LLAudDSPContext adsp;
bf4a1f17
     int channels;
     int samples;                             ///< samples left to decode in current frame
b60620bf
     int bps;
bf4a1f17
 
     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
 
1d3c672d
     int32_t *decoded_buffer;
     int decoded_size;
     int32_t *decoded[MAX_CHANNELS];          ///< decoded data for each channel
37390d5c
     int blocks_per_loop;                     ///< maximum number of samples to decode for each call
bf4a1f17
 
     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
613a37ec
     GetBitContext gb;
bf4a1f17
 
     uint8_t *data;                           ///< current frame data
     uint8_t *data_end;                       ///< frame data end
e4169612
     int data_size;                           ///< frame data allocated size
f84a02c0
     const uint8_t *ptr;                      ///< current position in frame data
6a287b73
 
     int error;
b164d66e
 
     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);
bf4a1f17
 } APEContext;
 
b164d66e
 static void ape_apply_filters(APEContext *ctx, int32_t *decoded0,
                               int32_t *decoded1, int count);
 
613a37ec
 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);
b164d66e
 static void entropy_decode_mono_3900(APEContext *ctx, int blockstodecode);
 static void entropy_decode_stereo_3900(APEContext *ctx, int blockstodecode);
613a37ec
 static void entropy_decode_stereo_3930(APEContext *ctx, int blockstodecode);
b164d66e
 static void entropy_decode_mono_3990(APEContext *ctx, int blockstodecode);
 static void entropy_decode_stereo_3990(APEContext *ctx, int blockstodecode);
 
613a37ec
 static void predictor_decode_mono_3800(APEContext *ctx, int count);
 static void predictor_decode_stereo_3800(APEContext *ctx, int count);
c42e2625
 static void predictor_decode_mono_3930(APEContext *ctx, int count);
 static void predictor_decode_stereo_3930(APEContext *ctx, int count);
b164d66e
 static void predictor_decode_mono_3950(APEContext *ctx, int count);
 static void predictor_decode_stereo_3950(APEContext *ctx, int count);
 
da55e098
 static av_cold int ape_decode_close(AVCodecContext *avctx)
75007813
 {
     APEContext *s = avctx->priv_data;
     int i;
 
     for (i = 0; i < APE_FILTER_LEVELS; i++)
         av_freep(&s->filterbuf[i]);
 
1d3c672d
     av_freep(&s->decoded_buffer);
75007813
     av_freep(&s->data);
1d3c672d
     s->decoded_size = s->data_size = 0;
e4169612
 
75007813
     return 0;
 }
 
da55e098
 static av_cold int ape_decode_init(AVCodecContext *avctx)
bf4a1f17
 {
     APEContext *s = avctx->priv_data;
     int i;
 
     if (avctx->extradata_size != 6) {
         av_log(avctx, AV_LOG_ERROR, "Incorrect extradata\n");
f64e0a2f
         return AVERROR(EINVAL);
bf4a1f17
     }
     if (avctx->channels > 2) {
         av_log(avctx, AV_LOG_ERROR, "Only mono and stereo is supported\n");
f64e0a2f
         return AVERROR(EINVAL);
bf4a1f17
     }
b60620bf
     s->bps = avctx->bits_per_coded_sample;
     switch (s->bps) {
     case 8:
461ba7e9
         avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
b60620bf
         break;
     case 16:
461ba7e9
         avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
b60620bf
         break;
     case 24:
461ba7e9
         avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
b60620bf
         break;
     default:
6d97484d
         avpriv_request_sample(avctx,
                               "%d bits per coded sample", s->bps);
b60620bf
         return AVERROR_PATCHWELCOME;
     }
bf4a1f17
     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);
 
9cf8c3e6
     av_log(avctx, AV_LOG_VERBOSE, "Compression Level: %d - Flags: %d\n",
da55e098
            s->compression_level, s->flags);
613a37ec
     if (s->compression_level % 1000 || s->compression_level > COMPRESSION_LEVEL_INSANE ||
795b911b
         !s->compression_level ||
613a37ec
         (s->fileversion < 3930 && s->compression_level == COMPRESSION_LEVEL_INSANE)) {
da55e098
         av_log(avctx, AV_LOG_ERROR, "Incorrect compression level %d\n",
                s->compression_level);
f64e0a2f
         return AVERROR_INVALIDDATA;
bf4a1f17
     }
     s->fset = s->compression_level / 1000 - 1;
     for (i = 0; i < APE_FILTER_LEVELS; i++) {
         if (!ape_filter_orders[s->fset][i])
             break;
75007813
         FF_ALLOC_OR_GOTO(avctx, s->filterbuf[i],
                          (ape_filter_orders[s->fset][i] * 3 + HISTORY_SIZE) * 4,
                          filter_alloc_fail);
bf4a1f17
     }
 
613a37ec
     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) {
b164d66e
         s->entropy_decode_mono   = entropy_decode_mono_3900;
         s->entropy_decode_stereo = entropy_decode_stereo_3900;
613a37ec
     } else if (s->fileversion < 3990) {
         s->entropy_decode_mono   = entropy_decode_mono_3900;
         s->entropy_decode_stereo = entropy_decode_stereo_3930;
b164d66e
     } else {
         s->entropy_decode_mono   = entropy_decode_mono_3990;
         s->entropy_decode_stereo = entropy_decode_stereo_3990;
     }
 
613a37ec
     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) {
c42e2625
         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;
     }
b164d66e
 
c67b449b
     ff_bswapdsp_init(&s->bdsp);
ccff45a0
     ff_llauddsp_init(&s->adsp);
fbdcdaee
     avctx->channel_layout = (avctx->channels==2) ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO;
0eea2129
 
bf4a1f17
     return 0;
75007813
 filter_alloc_fail:
     ape_decode_close(avctx);
     return AVERROR(ENOMEM);
bf4a1f17
 }
 
 /**
21a19b79
  * @name APE range decoding functions
bf4a1f17
  * @{
  */
 
 #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 */
da55e098
 static inline void range_start_decoding(APEContext *ctx)
bf4a1f17
 {
     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 */
da55e098
 static inline void range_dec_normalize(APEContext *ctx)
bf4a1f17
 {
     while (ctx->rc.range <= BOTTOM_VALUE) {
1a2a1d90
         ctx->rc.buffer <<= 8;
5b8009f4
         if(ctx->ptr < ctx->data_end) {
1a2a1d90
             ctx->rc.buffer += *ctx->ptr;
5b8009f4
             ctx->ptr++;
         } else {
             ctx->error = 1;
         }
bf4a1f17
         ctx->rc.low    = (ctx->rc.low << 8)    | ((ctx->rc.buffer >> 1) & 0xFF);
         ctx->rc.range  <<= 8;
     }
 }
 
 /**
41ed7ab4
  * Calculate cumulative frequency for next symbol. Does NO update!
20642e28
  * @param ctx decoder context
bf4a1f17
  * @param tot_f is the total frequency or (code_value)1<<shift
41ed7ab4
  * @return the cumulative frequency
bf4a1f17
  */
da55e098
 static inline int range_decode_culfreq(APEContext *ctx, int tot_f)
bf4a1f17
 {
     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
20642e28
  * @param ctx decoder context
bf4a1f17
  * @param shift number of bits to decode
  */
da55e098
 static inline int range_decode_culshift(APEContext *ctx, int shift)
bf4a1f17
 {
     range_dec_normalize(ctx);
     ctx->rc.help = ctx->rc.range >> shift;
     return ctx->rc.low / ctx->rc.help;
 }
 
 
 /**
  * Update decoding state
20642e28
  * @param ctx decoder context
bf4a1f17
  * @param sy_f the interval length (frequency of the symbol)
  * @param lt_f the lower end (frequency sum of < symbols)
  */
da55e098
 static inline void range_decode_update(APEContext *ctx, int sy_f, int lt_f)
bf4a1f17
 {
     ctx->rc.low  -= ctx->rc.help * lt_f;
     ctx->rc.range = ctx->rc.help * sy_f;
 }
 
 /** Decode n bits (n <= 16) without modelling */
da55e098
 static inline int range_decode_bits(APEContext *ctx, int n)
bf4a1f17
 {
     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
  */
1637930f
 static const uint16_t counts_3970[22] = {
bf4a1f17
         0, 14824, 28224, 39348, 47855, 53994, 58171, 60926,
     62682, 63786, 64463, 64878, 65126, 65276, 65365, 65419,
8d4bef64
     65450, 65469, 65480, 65487, 65491, 65493,
bf4a1f17
 };
 
 /**
  * Probability ranges for symbols in Monkey Audio version 3.97
  */
8d4bef64
 static const uint16_t counts_diff_3970[21] = {
bf4a1f17
     14824, 13400, 11124, 8507, 6139, 4177, 2755, 1756,
     1104, 677, 415, 248, 150, 89, 54, 31,
8d4bef64
     19, 11, 7, 4, 2,
bf4a1f17
 };
 
 /**
  * Fixed probabilities for symbols in Monkey Audio version 3.98
  */
1637930f
 static const uint16_t counts_3980[22] = {
bf4a1f17
         0, 19578, 36160, 48417, 56323, 60899, 63265, 64435,
     64971, 65232, 65351, 65416, 65447, 65466, 65476, 65482,
8d4bef64
     65485, 65488, 65490, 65491, 65492, 65493,
bf4a1f17
 };
 
 /**
  * Probability ranges for symbols in Monkey Audio version 3.98
  */
8d4bef64
 static const uint16_t counts_diff_3980[21] = {
bf4a1f17
     19578, 16582, 12257, 7906, 4576, 2366, 1170, 536,
     261, 119, 65, 31, 19, 10, 6, 3,
8d4bef64
     3, 2, 1, 1, 1,
bf4a1f17
 };
 
 /**
  * Decode symbol
20642e28
  * @param ctx decoder context
bf4a1f17
  * @param counts probability range start position
20642e28
  * @param counts_diff probability range widths
bf4a1f17
  */
da55e098
 static inline int range_get_symbol(APEContext *ctx,
1637930f
                                    const uint16_t counts[],
bf4a1f17
                                    const uint16_t counts_diff[])
 {
     int symbol, cf;
 
     cf = range_decode_culshift(ctx, 16);
 
6a287b73
     if(cf > 65492){
         symbol= cf - 65535 + 63;
         range_decode_update(ctx, 1, cf);
         if(cf > 65535)
             ctx->error=1;
         return symbol;
     }
bf4a1f17
     /* 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
 
706b998c
 static inline void update_rice(APERice *rice, unsigned int x)
bf4a1f17
 {
e774c41c
     int lim = rice->k ? (1 << (rice->k + 4)) : 0;
bf4a1f17
     rice->ksum += ((x + 1) / 2) - ((rice->ksum + 16) >> 5);
 
e774c41c
     if (rice->ksum < lim)
bf4a1f17
         rice->k--;
d0d93ef0
     else if (rice->ksum >= (1 << (rice->k + 5)) && rice->k < 24)
bf4a1f17
         rice->k++;
 }
 
613a37ec
 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;
60ab4480
     else if(rice->k <= MIN_CACHE_BITS) {
613a37ec
         x = (overflow << rice->k) + get_bits(gb, rice->k);
60ab4480
     } else {
54904525
         av_log(ctx->avctx, AV_LOG_ERROR, "Too many bits: %"PRIu32"\n", rice->k);
60ab4480
         return AVERROR_INVALIDDATA;
     }
613a37ec
     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 */
ac7fc444
     return ((x >> 1) ^ ((x & 1) - 1)) + 1;
613a37ec
 }
 
b164d66e
 static inline int ape_decode_value_3900(APEContext *ctx, APERice *rice)
bf4a1f17
 {
706b998c
     unsigned int x, overflow;
b164d66e
     int tmpk;
bf4a1f17
 
b164d66e
     overflow = range_get_symbol(ctx, counts_3970, counts_diff_3970);
bf4a1f17
 
b164d66e
     if (overflow == (MODEL_ELEMENTS - 1)) {
         tmpk = range_decode_bits(ctx, 5);
         overflow = 0;
     } else
         tmpk = (rice->k < 1) ? 0 : rice->k - 1;
bf4a1f17
 
89372307
     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;
         }
b164d66e
         x = range_decode_bits(ctx, tmpk);
ebfe154b
     } else if (tmpk <= 31) {
b164d66e
         x = range_decode_bits(ctx, 16);
         x |= (range_decode_bits(ctx, tmpk - 16) << 16);
bf4a1f17
     } else {
b164d66e
         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 */
ac7fc444
     return ((x >> 1) ^ ((x & 1) - 1)) + 1;
b164d66e
 }
bf4a1f17
 
b164d66e
 static inline int ape_decode_value_3990(APEContext *ctx, APERice *rice)
 {
     unsigned int x, overflow;
     int base, pivot;
bf4a1f17
 
b164d66e
     pivot = rice->ksum >> 5;
     if (pivot == 0)
         pivot = 1;
bf4a1f17
 
b164d66e
     overflow = range_get_symbol(ctx, counts_3980, counts_diff_3980);
bf4a1f17
 
b164d66e
     if (overflow == (MODEL_ELEMENTS - 1)) {
5be942f3
         overflow  = (unsigned)range_decode_bits(ctx, 16) << 16;
b164d66e
         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++;
76267e4e
         }
b164d66e
         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);
bf4a1f17
 
b164d66e
         base = (base_hi << bbits) + base_lo;
bf4a1f17
     }
 
b164d66e
     x = base + overflow * pivot;
 
bf4a1f17
     update_rice(rice, x);
 
     /* Convert to signed */
ac7fc444
     return ((x >> 1) ^ ((x & 1) - 1)) + 1;
bf4a1f17
 }
 
613a37ec
 static void decode_array_0000(APEContext *ctx, GetBitContext *gb,
                               int32_t *out, APERice *rice, int blockstodecode)
 {
     int i;
1bfaa228
     unsigned ksummax, ksummin;
613a37ec
 
     rice->ksum = 0;
699341d6
     for (i = 0; i < FFMIN(blockstodecode, 5); i++) {
613a37ec
         out[i] = get_rice_ook(&ctx->gb, 10);
         rice->ksum += out[i];
     }
     rice->k = av_log2(rice->ksum / 10) + 1;
d5128fce
     if (rice->k >= 24)
         return;
699341d6
     for (; i < FFMIN(blockstodecode, 64); i++) {
613a37ec
         out[i] = get_rice_ook(&ctx->gb, rice->k);
         rice->ksum += out[i];
         rice->k = av_log2(rice->ksum / ((i + 1) * 2)) + 1;
d5128fce
         if (rice->k >= 24)
             return;
613a37ec
     }
     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;
         }
     }
 
ac7fc444
     for (i = 0; i < blockstodecode; i++)
         out[i] = ((out[i] >> 1) ^ ((out[i] & 1) - 1)) + 1;
613a37ec
 }
 
 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);
 }
 
b164d66e
 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)
bf4a1f17
 {
1d3c672d
     int32_t *decoded0 = ctx->decoded[0];
     int32_t *decoded1 = ctx->decoded[1];
613a37ec
     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)
 {
     int32_t *decoded0 = ctx->decoded[0];
     int32_t *decoded1 = ctx->decoded[1];
bf4a1f17
 
39575eea
     while (blockstodecode--) {
b164d66e
         *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);
bf4a1f17
     }
 }
 
a4c32c9a
 static int init_entropy_decoder(APEContext *ctx)
bf4a1f17
 {
     /* Read the CRC */
613a37ec
     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);
     }
bf4a1f17
 
     /* Read the frame flags if they exist */
     ctx->frameflags = 0;
     if ((ctx->fileversion > 3820) && (ctx->CRC & 0x80000000)) {
         ctx->CRC &= ~0x80000000;
 
a4c32c9a
         if (ctx->data_end - ctx->ptr < 6)
             return AVERROR_INVALIDDATA;
bf4a1f17
         ctx->frameflags = bytestream_get_be32(&ctx->ptr);
     }
 
52b541ad
     /* Initialize the rice structs */
bf4a1f17
     ctx->riceX.k = 10;
     ctx->riceX.ksum = (1 << ctx->riceX.k) * 16;
     ctx->riceY.k = 10;
     ctx->riceY.ksum = (1 << ctx->riceY.k) * 16;
 
613a37ec
     if (ctx->fileversion >= 3900) {
         /* The first 8 bits of input are ignored. */
         ctx->ptr++;
bf4a1f17
 
613a37ec
         range_start_decoding(ctx);
     }
a4c32c9a
 
     return 0;
bf4a1f17
 }
 
613a37ec
 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] = {
bf4a1f17
     360, 317, -109, 98
 };
 
da55e098
 static void init_predictor_decoder(APEContext *ctx)
bf4a1f17
 {
     APEPredictor *p = &ctx->predictor;
 
     /* Zero the history buffers */
32c61400
     memset(p->historybuffer, 0, PREDICTOR_SIZE * sizeof(*p->historybuffer));
bf4a1f17
     p->buf = p->historybuffer;
 
d0b53d05
     /* Initialize and zero the coefficients */
613a37ec
     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));
     }
bf4a1f17
     memset(p->coeffsB, 0, sizeof(p->coeffsB));
613a37ec
     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));
     }
bf4a1f17
 
     p->filterA[0] = p->filterA[1] = 0;
     p->filterB[0] = p->filterB[1] = 0;
     p->lastA[0]   = p->lastA[1]   = 0;
613a37ec
 
     p->sample_pos = 0;
bf4a1f17
 }
 
 /** 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);
 }
 
613a37ec
 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]--;
 
1bfaa228
     p->filterA[filter] += (unsigned)p->lastA[filter];
613a37ec
 
     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];
ceafee40
     d1 = (p->buf[delayA] - p->buf[delayA - 1]) * 2U;
     d0 =  p->buf[delayA] + ((p->buf[delayA - 2] - p->buf[delayA - 1]) * 8U);
     d3 =  p->buf[delayB] * 2U - p->buf[delayB - 1];
613a37ec
     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);
2071c043
     p->filterA[filter] = p->filterB[filter] + (unsigned)((int)(p->filterA[filter] * 31U) >> 5);
613a37ec
 
     return p->filterA[filter];
 }
 
0073c8e3
 static void long_filter_high_3800(int32_t *buffer, int order, int shift, int length)
613a37ec
 {
     int i, j;
     int32_t dotprod, sign;
0073c8e3
     int32_t coeffs[256], delay[256];
613a37ec
 
cd7524fd
     if (order >= length)
         return;
 
613a37ec
     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++) {
ceafee40
             dotprod += delay[j] * (unsigned)coeffs[j];
42e6fc14
             coeffs[j] += ((delay[j] >> 31) | 1) * sign;
613a37ec
         }
         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;
e80488d2
     int32_t delay[8] = { 0 };
     uint32_t coeffs[8] = { 0 };
613a37ec
 
     for (i = 0; i < length; i++) {
         dotprod = 0;
         sign = APESIGN(buffer[i]);
         for (j = 7; j >= 0; j--) {
             dotprod += delay[j] * coeffs[j];
42e6fc14
             coeffs[j] += ((delay[j] >> 31) | 1) * sign;
613a37ec
         }
         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];
     int start = 4, shift = 10;
 
     if (ctx->compression_level == COMPRESSION_LEVEL_HIGH) {
         start = 16;
0073c8e3
         long_filter_high_3800(decoded0, 16, 9, count);
         long_filter_high_3800(decoded1, 16, 9, count);
613a37ec
     } 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;
0073c8e3
         long_filter_high_3800(decoded0, order, shift2, count);
         long_filter_high_3800(decoded1, order, shift2, count);
613a37ec
     }
 
     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];
     int start = 4, shift = 10;
 
     if (ctx->compression_level == COMPRESSION_LEVEL_HIGH) {
         start = 16;
0073c8e3
         long_filter_high_3800(decoded0, 16, 9, count);
613a37ec
     } 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;
0073c8e3
         long_filter_high_3800(decoded0, order, shift2, count);
613a37ec
     }
 
     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;
         }
     }
 }
 
c42e2625
 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);
29840843
     p->filterA[filter] = p->lastA[filter] + ((int)(p->filterA[filter] * 31U) >> 5);
c42e2625
 
     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;
         }
     }
 }
 
da55e098
 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)
bf4a1f17
 {
2ae87a6d
     int32_t predictionA, predictionB, sign;
bf4a1f17
 
     p->buf[delayA]     = p->lastA[filter];
     p->buf[adaptA]     = APESIGN(p->buf[delayA]);
98c4cec8
     p->buf[delayA - 1] = p->buf[delayA] - (unsigned)p->buf[delayA - 1];
bf4a1f17
     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 */
5be942f3
     p->buf[delayB]     = p->filterA[filter ^ 1] - ((int)(p->filterB[filter] * 31U) >> 5);
bf4a1f17
     p->buf[adaptB]     = APESIGN(p->buf[delayB]);
98c4cec8
     p->buf[delayB - 1] = p->buf[delayB] - (unsigned)p->buf[delayB - 1];
bf4a1f17
     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];
 
fbb1fa70
     p->lastA[filter] = decoded + ((int)((unsigned)predictionA + (predictionB >> 1)) >> 10);
5be942f3
     p->filterA[filter] = p->lastA[filter] + ((int)(p->filterA[filter] * 31U) >> 5);
bf4a1f17
 
2ae87a6d
     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;
bf4a1f17
 
     return p->filterA[filter];
 }
 
b164d66e
 static void predictor_decode_stereo_3950(APEContext *ctx, int count)
bf4a1f17
 {
     APEPredictor *p = &ctx->predictor;
1d3c672d
     int32_t *decoded0 = ctx->decoded[0];
     int32_t *decoded1 = ctx->decoded[1];
bf4a1f17
 
b164d66e
     ape_apply_filters(ctx, ctx->decoded[0], ctx->decoded[1], count);
 
bf4a1f17
     while (count--) {
         /* Predictor Y */
da55e098
         *decoded0 = predictor_update_filter(p, *decoded0, 0, YDELAYA, YDELAYB,
                                             YADAPTCOEFFSA, YADAPTCOEFFSB);
36373cde
         decoded0++;
da55e098
         *decoded1 = predictor_update_filter(p, *decoded1, 1, XDELAYA, XDELAYB,
                                             XADAPTCOEFFSA, XADAPTCOEFFSB);
36373cde
         decoded1++;
bf4a1f17
 
         /* Combined */
         p->buf++;
 
         /* Have we filled the history buffer? */
         if (p->buf == p->historybuffer + HISTORY_SIZE) {
32c61400
             memmove(p->historybuffer, p->buf,
                     PREDICTOR_SIZE * sizeof(*p->historybuffer));
bf4a1f17
             p->buf = p->historybuffer;
         }
     }
 }
 
b164d66e
 static void predictor_decode_mono_3950(APEContext *ctx, int count)
bf4a1f17
 {
     APEPredictor *p = &ctx->predictor;
1d3c672d
     int32_t *decoded0 = ctx->decoded[0];
2ae87a6d
     int32_t predictionA, currentA, A, sign;
bf4a1f17
 
b164d66e
     ape_apply_filters(ctx, ctx->decoded[0], NULL, count);
 
bf4a1f17
     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]);
 
2ae87a6d
         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;
bf4a1f17
 
         p->buf++;
 
         /* Have we filled the history buffer? */
         if (p->buf == p->historybuffer + HISTORY_SIZE) {
32c61400
             memmove(p->historybuffer, p->buf,
                     PREDICTOR_SIZE * sizeof(*p->historybuffer));
bf4a1f17
             p->buf = p->historybuffer;
         }
 
5be942f3
         p->filterA[0] = currentA + ((int)(p->filterA[0] * 31U) >> 5);
bf4a1f17
         *(decoded0++) = p->filterA[0];
     }
 
     p->lastA[0] = currentA;
 }
 
da55e098
 static void do_init_filter(APEFilter *f, int16_t *buf, int order)
bf4a1f17
 {
     f->coeffs = buf;
     f->historybuffer = buf + order;
     f->delay       = f->historybuffer + order * 2;
     f->adaptcoeffs = f->historybuffer + order;
 
32c61400
     memset(f->historybuffer, 0, (order * 2) * sizeof(*f->historybuffer));
     memset(f->coeffs, 0, order * sizeof(*f->coeffs));
bf4a1f17
     f->avg = 0;
 }
 
da55e098
 static void init_filter(APEContext *ctx, APEFilter *f, int16_t *buf, int order)
bf4a1f17
 {
     do_init_filter(&f[0], buf, order);
     do_init_filter(&f[1], buf + order * 3 + HISTORY_SIZE, order);
 }
 
da55e098
 static void do_apply_filter(APEContext *ctx, int version, APEFilter *f,
                             int32_t *data, int count, int order, int fracbits)
bf4a1f17
 {
     int res;
     int absres;
 
     while (count--) {
         /* round fixedpoint scalar product */
054013a0
         res = ctx->adsp.scalarproduct_and_madd_int16(f->coeffs,
                                                      f->delay - order,
                                                      f->adaptcoeffs - order,
                                                      order, APESIGN(*data));
c2c1843d
         res = (int)(res + (1U << (fracbits - 1))) >> fracbits;
6b430f06
         res += (unsigned)*data;
bf4a1f17
         *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 */
98c4cec8
             absres = res < 0 ? -(unsigned)res : res;
d09f65c7
             if (absres)
dd4fb233
                 *f->adaptcoeffs = APESIGN(res) *
                                   (8 << ((absres > f->avg * 3) + (absres > f->avg * 4 / 3)));
                 /* equivalent to the following code
                     if (absres <= f->avg * 4 / 3)
                         *f->adaptcoeffs = APESIGN(res) * 8;
                     else if (absres <= f->avg * 3)
                         *f->adaptcoeffs = APESIGN(res) * 16;
                     else
                         *f->adaptcoeffs = APESIGN(res) * 32;
                 */
bf4a1f17
             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),
32c61400
                     (order * 2) * sizeof(*f->historybuffer));
bf4a1f17
             f->delay = f->historybuffer + order * 2;
             f->adaptcoeffs = f->historybuffer + order;
         }
     }
 }
 
da55e098
 static void apply_filter(APEContext *ctx, APEFilter *f,
                          int32_t *data0, int32_t *data1,
bf4a1f17
                          int count, int order, int fracbits)
 {
88c0536a
     do_apply_filter(ctx, ctx->fileversion, &f[0], data0, count, order, fracbits);
bf4a1f17
     if (data1)
88c0536a
         do_apply_filter(ctx, ctx->fileversion, &f[1], data1, count, order, fracbits);
bf4a1f17
 }
 
da55e098
 static void ape_apply_filters(APEContext *ctx, int32_t *decoded0,
                               int32_t *decoded1, int count)
bf4a1f17
 {
     int i;
 
     for (i = 0; i < APE_FILTER_LEVELS; i++) {
         if (!ape_filter_orders[ctx->fset][i])
             break;
da55e098
         apply_filter(ctx, ctx->filters[i], decoded0, decoded1, count,
                      ape_filter_orders[ctx->fset][i],
                      ape_filter_fracbits[ctx->fset][i]);
bf4a1f17
     }
 }
 
a4c32c9a
 static int init_frame_decoder(APEContext *ctx)
bf4a1f17
 {
a4c32c9a
     int i, ret;
     if ((ret = init_entropy_decoder(ctx)) < 0)
         return ret;
bf4a1f17
     init_predictor_decoder(ctx);
 
     for (i = 0; i < APE_FILTER_LEVELS; i++) {
         if (!ape_filter_orders[ctx->fset][i])
             break;
da55e098
         init_filter(ctx, ctx->filters[i], ctx->filterbuf[i],
                     ape_filter_orders[ctx->fset][i]);
bf4a1f17
     }
a4c32c9a
     return 0;
bf4a1f17
 }
 
da55e098
 static void ape_unpack_mono(APEContext *ctx, int count)
bf4a1f17
 {
     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;
     }
 
b164d66e
     ctx->entropy_decode_mono(ctx, count);
bf4a1f17
 
     /* Now apply the predictor decoding */
b164d66e
     ctx->predictor_decode_mono(ctx, count);
bf4a1f17
 
     /* Pseudo-stereo - just copy left channel to right channel */
     if (ctx->channels == 2) {
1d3c672d
         memcpy(ctx->decoded[1], ctx->decoded[0], count * sizeof(*ctx->decoded[1]));
bf4a1f17
     }
 }
 
da55e098
 static void ape_unpack_stereo(APEContext *ctx, int count)
bf4a1f17
 {
f1e20d7d
     unsigned left, right;
1d3c672d
     int32_t *decoded0 = ctx->decoded[0];
     int32_t *decoded1 = ctx->decoded[1];
bf4a1f17
 
9149e9c0
     if ((ctx->frameflags & APE_FRAMECODE_STEREO_SILENCE) == APE_FRAMECODE_STEREO_SILENCE) {
bf4a1f17
         /* We are pure silence, so we're done. */
         av_log(ctx->avctx, AV_LOG_DEBUG, "pure silence stereo\n");
         return;
     }
 
b164d66e
     ctx->entropy_decode_stereo(ctx, count);
bf4a1f17
 
     /* Now apply the predictor decoding */
b164d66e
     ctx->predictor_decode_stereo(ctx, count);
bf4a1f17
 
     /* Decorrelate and scale to output depth */
     while (count--) {
f1e20d7d
         left = *decoded1 - (unsigned)(*decoded0 / 2);
bf4a1f17
         right = left + *decoded0;
 
         *(decoded0++) = left;
         *(decoded1++) = right;
     }
 }
 
0eea2129
 static int ape_decode_frame(AVCodecContext *avctx, void *data,
                             int *got_frame_ptr, AVPacket *avpkt)
bf4a1f17
 {
5932e2d7
     AVFrame *frame     = data;
7a00bbad
     const uint8_t *buf = avpkt->data;
bf4a1f17
     APEContext *s = avctx->priv_data;
b60620bf
     uint8_t *sample8;
     int16_t *sample16;
     int32_t *sample24;
461ba7e9
     int i, ch, ret;
0eea2129
     int blockstodecode;
ba4beaf6
     uint64_t decoded_buffer_size;
bf4a1f17
 
9a332644
     /* 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);
 
bf4a1f17
     if(!s->samples){
de157f21
         uint32_t nblocks, offset;
0759c8eb
         int buf_size;
a4c32c9a
 
0759c8eb
         if (!avpkt->size) {
0eea2129
             *got_frame_ptr = 0;
c298b2b8
             return 0;
         }
0759c8eb
         if (avpkt->size < 8) {
a4c32c9a
             av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
             return AVERROR_INVALIDDATA;
         }
0759c8eb
         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");
         }
9652d4fc
         if (s->fileversion < 3950) // previous versions overread two bytes
             buf_size += 2;
99978320
         av_fast_padded_malloc(&s->data, &s->data_size, buf_size);
6462d28d
         if (!s->data)
11ca8b2d
             return AVERROR(ENOMEM);
c67b449b
         s->bdsp.bswap_buf((uint32_t *) s->data, (const uint32_t *) buf,
                           buf_size >> 2);
9652d4fc
         memset(s->data + (buf_size & ~3), 0, buf_size & 3);
c298b2b8
         s->ptr = s->data;
bf4a1f17
         s->data_end = s->data + buf_size;
 
b7e51457
         nblocks = bytestream_get_be32(&s->ptr);
fd244ae3
         offset  = bytestream_get_be32(&s->ptr);
613a37ec
         if (s->fileversion >= 3900) {
             if (offset > 3) {
                 av_log(avctx, AV_LOG_ERROR, "Incorrect offset passed\n");
37d4ad2f
                 av_freep(&s->data);
                 s->data_size = 0;
613a37ec
                 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 {
49c6f0ae
             if ((ret = init_get_bits8(&s->gb, s->ptr, s->data_end - s->ptr)) < 0)
                 return ret;
613a37ec
             if (s->fileversion > 3800)
                 skip_bits_long(&s->gb, offset * 8);
             else
                 skip_bits_long(&s->gb, offset);
a4c32c9a
         }
bf4a1f17
 
ba4beaf6
         if (!nblocks || nblocks > INT_MAX / 2 / sizeof(*s->decoded_buffer) - 8) {
cc8163e1
             av_log(avctx, AV_LOG_ERROR, "Invalid sample count: %"PRIu32".\n",
                    nblocks);
2cab5784
             return AVERROR_INVALIDDATA;
bf4a1f17
         }
 
         /* Initialize the frame decoder */
a4c32c9a
         if (init_frame_decoder(s) < 0) {
             av_log(avctx, AV_LOG_ERROR, "Error reading frame header\n");
             return AVERROR_INVALIDDATA;
         }
464c4915
         s->samples = nblocks;
bf4a1f17
     }
 
     if (!s->data) {
0eea2129
         *got_frame_ptr = 0;
0759c8eb
         return avpkt->size;
bf4a1f17
     }
 
37390d5c
     blockstodecode = FFMIN(s->blocks_per_loop, s->samples);
613a37ec
     // for old files coefficients were not interleaved,
     // so we need to decode all of them at once
     if (s->fileversion < 3930)
         blockstodecode = s->samples;
bf4a1f17
 
1d3c672d
     /* reallocate decoded sample buffer if needed */
ba4beaf6
     decoded_buffer_size = 2LL * FFALIGN(blockstodecode, 8) * sizeof(*s->decoded_buffer);
     av_assert0(decoded_buffer_size <= INT_MAX);
     av_fast_malloc(&s->decoded_buffer, &s->decoded_size, decoded_buffer_size);
1d3c672d
     if (!s->decoded_buffer)
         return AVERROR(ENOMEM);
d2c60613
     memset(s->decoded_buffer, 0, decoded_buffer_size);
1d3c672d
     s->decoded[0] = s->decoded_buffer;
     s->decoded[1] = s->decoded_buffer + FFALIGN(blockstodecode, 8);
bf4a1f17
 
0eea2129
     /* get output buffer */
5932e2d7
     frame->nb_samples = blockstodecode;
1ec94b0f
     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
0eea2129
         return ret;
bf4a1f17
 
6a287b73
     s->error=0;
 
bf4a1f17
     if ((s->channels == 1) || (s->frameflags & APE_FRAMECODE_PSEUDO_STEREO))
         ape_unpack_mono(s, blockstodecode);
     else
         ape_unpack_stereo(s, blockstodecode);
1e68cefe
     emms_c();
bf4a1f17
 
5b8009f4
     if (s->error) {
6a287b73
         s->samples=0;
         av_log(avctx, AV_LOG_ERROR, "Error decoding frame\n");
91b71460
         return AVERROR_INVALIDDATA;
6a287b73
     }
 
b60620bf
     switch (s->bps) {
     case 8:
461ba7e9
         for (ch = 0; ch < s->channels; ch++) {
5932e2d7
             sample8 = (uint8_t *)frame->data[ch];
461ba7e9
             for (i = 0; i < blockstodecode; i++)
                 *sample8++ = (s->decoded[ch][i] + 0x80) & 0xff;
b60620bf
         }
         break;
     case 16:
461ba7e9
         for (ch = 0; ch < s->channels; ch++) {
5932e2d7
             sample16 = (int16_t *)frame->data[ch];
461ba7e9
             for (i = 0; i < blockstodecode; i++)
                 *sample16++ = s->decoded[ch][i];
b60620bf
         }
         break;
     case 24:
461ba7e9
         for (ch = 0; ch < s->channels; ch++) {
5932e2d7
             sample24 = (int32_t *)frame->data[ch];
461ba7e9
             for (i = 0; i < blockstodecode; i++)
                 *sample24++ = s->decoded[ch][i] << 8;
b60620bf
         }
         break;
bf4a1f17
     }
 
     s->samples -= blockstodecode;
 
5932e2d7
     *got_frame_ptr = 1;
0eea2129
 
77d89a5b
     return !s->samples ? avpkt->size : 0;
bf4a1f17
 }
 
df92772c
 static void ape_flush(AVCodecContext *avctx)
 {
     APEContext *s = avctx->priv_data;
     s->samples= 0;
 }
 
37390d5c
 #define OFFSET(x) offsetof(APEContext, x)
 #define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
 static const AVOption options[] = {
e6153f17
     { "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" },
124134e4
     { "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" },
37390d5c
     { NULL},
 };
 
 static const AVClass ape_decoder_class = {
     .class_name = "APE decoder",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
e7e2df27
 AVCodec ff_ape_decoder = {
ec6402b7
     .name           = "ape",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Monkey's Audio"),
ec6402b7
     .type           = AVMEDIA_TYPE_AUDIO,
36ef5369
     .id             = AV_CODEC_ID_APE,
ec6402b7
     .priv_data_size = sizeof(APEContext),
     .init           = ape_decode_init,
     .close          = ape_decode_close,
     .decode         = ape_decode_frame,
def97856
     .capabilities   = AV_CODEC_CAP_SUBFRAMES | AV_CODEC_CAP_DELAY |
                       AV_CODEC_CAP_DR1,
00c3b67b
     .flush          = ape_flush,
461ba7e9
     .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
                                                       AV_SAMPLE_FMT_S16P,
                                                       AV_SAMPLE_FMT_S32P,
                                                       AV_SAMPLE_FMT_NONE },
37390d5c
     .priv_class     = &ape_decoder_class,
bf4a1f17
 };