libavcodec/wavpack.c
730581f3
 /*
  * WavPack lossless audio decoder
8a485dd3
  * Copyright (c) 2006,2011 Konstantin Shishkov
730581f3
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
730581f3
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
730581f3
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
730581f3
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
730581f3
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
513c238f
 
aaf47bcd
 #define BITSTREAM_READER_LE
513c238f
 
 #include "libavutil/audioconvert.h"
730581f3
 #include "avcodec.h"
9106a698
 #include "get_bits.h"
28296f9c
 #include "unary.h"
730581f3
 
 /**
ba87f080
  * @file
730581f3
  * WavPack lossless audio decoder
  */
 
513c238f
 #define WV_MONO           0x00000004
 #define WV_JOINT_STEREO   0x00000010
 #define WV_FALSE_STEREO   0x40000000
730581f3
 
2c96535a
 #define WV_HYBRID_MODE    0x00000008
 #define WV_HYBRID_SHAPE   0x00000008
 #define WV_HYBRID_BITRATE 0x00000200
 #define WV_HYBRID_BALANCE 0x00000400
 
992f7db0
 #define WV_FLT_SHIFT_ONES 0x01
 #define WV_FLT_SHIFT_SAME 0x02
 #define WV_FLT_SHIFT_SENT 0x04
 #define WV_FLT_ZERO_SENT  0x08
 #define WV_FLT_ZERO_SIGN  0x10
 
513c238f
 enum WP_ID_Flags {
730581f3
     WP_IDF_MASK   = 0x1F,
     WP_IDF_IGNORE = 0x20,
     WP_IDF_ODD    = 0x40,
     WP_IDF_LONG   = 0x80
 };
 
513c238f
 enum WP_ID {
730581f3
     WP_ID_DUMMY = 0,
     WP_ID_ENCINFO,
     WP_ID_DECTERMS,
     WP_ID_DECWEIGHTS,
     WP_ID_DECSAMPLES,
     WP_ID_ENTROPY,
     WP_ID_HYBRID,
     WP_ID_SHAPING,
     WP_ID_FLOATINFO,
     WP_ID_INT32INFO,
     WP_ID_DATA,
     WP_ID_CORR,
418f77ec
     WP_ID_EXTRABITS,
730581f3
     WP_ID_CHANINFO
 };
 
965828bb
 typedef struct SavedContext {
     int offset;
     int size;
     int bits_used;
     uint32_t crc;
 } SavedContext;
 
730581f3
 #define MAX_TERMS 16
 
 typedef struct Decorr {
     int delta;
     int value;
     int weightA;
     int weightB;
     int samplesA[8];
     int samplesB[8];
 } Decorr;
 
2c96535a
 typedef struct WvChannel {
     int median[3];
     int slow_level, error_limit;
     int bitrate_acc, bitrate_delta;
 } WvChannel;
 
8a485dd3
 typedef struct WavpackFrameContext {
730581f3
     AVCodecContext *avctx;
2c96535a
     int frame_flags;
a6ba65f7
     int stereo, stereo_in;
730581f3
     int joint;
     uint32_t CRC;
     GetBitContext gb;
418f77ec
     int got_extra_bits;
     uint32_t crc_extra_bits;
     GetBitContext gb_extra_bits;
730581f3
     int data_size; // in bits
     int samples;
     int terms;
     Decorr decorr[MAX_TERMS];
     int zero, one, zeroes;
418f77ec
     int extra_bits;
6b05eb31
     int and, or, shift;
760db32a
     int post_shift;
dcde8e1c
     int hybrid, hybrid_bitrate;
     int hybrid_maxclip, hybrid_minclip;
992f7db0
     int float_flag;
     int float_shift;
     int float_max_exp;
2c96535a
     WvChannel ch[2];
965828bb
     int pos;
     SavedContext sc, extra_sc;
8a485dd3
 } WavpackFrameContext;
 
 #define WV_MAX_FRAME_DECODERS 14
 
 typedef struct WavpackContext {
     AVCodecContext *avctx;
0eea2129
     AVFrame frame;
8a485dd3
 
     WavpackFrameContext *fdec[WV_MAX_FRAME_DECODERS];
     int fdec_num;
 
     int multichannel;
     int mkv_mode;
     int block;
     int samples;
     int ch_offset;
730581f3
 } WavpackContext;
 
 // exponent table copied from WavPack source
 static const uint8_t wp_exp2_table [256] = {
     0x00, 0x01, 0x01, 0x02, 0x03, 0x03, 0x04, 0x05, 0x06, 0x06, 0x07, 0x08, 0x08, 0x09, 0x0a, 0x0b,
     0x0b, 0x0c, 0x0d, 0x0e, 0x0e, 0x0f, 0x10, 0x10, 0x11, 0x12, 0x13, 0x13, 0x14, 0x15, 0x16, 0x16,
     0x17, 0x18, 0x19, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1d, 0x1e, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x23,
     0x24, 0x24, 0x25, 0x26, 0x27, 0x28, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
     0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3a, 0x3b, 0x3c, 0x3d,
     0x3e, 0x3f, 0x40, 0x41, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x49, 0x4a, 0x4b,
     0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a,
     0x5b, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,
     0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,
     0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x8a,
     0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b,
     0x9c, 0x9d, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad,
     0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0,
     0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc8, 0xc9, 0xca, 0xcb, 0xcd, 0xce, 0xcf, 0xd0, 0xd2, 0xd3, 0xd4,
     0xd6, 0xd7, 0xd8, 0xd9, 0xdb, 0xdc, 0xdd, 0xde, 0xe0, 0xe1, 0xe2, 0xe4, 0xe5, 0xe6, 0xe8, 0xe9,
     0xea, 0xec, 0xed, 0xee, 0xf0, 0xf1, 0xf2, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xfa, 0xfc, 0xfd, 0xff
 };
 
2c96535a
 static const uint8_t wp_log2_table [] = {
     0x00, 0x01, 0x03, 0x04, 0x06, 0x07, 0x09, 0x0a, 0x0b, 0x0d, 0x0e, 0x10, 0x11, 0x12, 0x14, 0x15,
     0x16, 0x18, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x20, 0x21, 0x22, 0x24, 0x25, 0x26, 0x28, 0x29, 0x2a,
     0x2c, 0x2d, 0x2e, 0x2f, 0x31, 0x32, 0x33, 0x34, 0x36, 0x37, 0x38, 0x39, 0x3b, 0x3c, 0x3d, 0x3e,
     0x3f, 0x41, 0x42, 0x43, 0x44, 0x45, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x50, 0x51,
     0x52, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63,
     0x64, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75,
     0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85,
     0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,
     0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4,
     0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb2,
     0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0,
     0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xcd, 0xce,
     0xcf, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd8, 0xd9, 0xda, 0xdb,
     0xdc, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe4, 0xe5, 0xe6, 0xe7, 0xe7,
     0xe8, 0xe9, 0xea, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xee, 0xef, 0xf0, 0xf1, 0xf1, 0xf2, 0xf3, 0xf4,
     0xf4, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xff, 0xff
 };
 
849f1035
 static av_always_inline int wp_exp2(int16_t val)
730581f3
 {
     int res, neg = 0;
 
513c238f
     if (val < 0) {
730581f3
         val = -val;
         neg = 1;
     }
 
     res = wp_exp2_table[val & 0xFF] | 0x100;
     val >>= 8;
     res = (val > 9) ? (res << (val - 9)) : (res >> (9 - val));
     return neg ? -res : res;
 }
 
2c96535a
 static av_always_inline int wp_log2(int32_t val)
 {
     int bits;
 
513c238f
     if (!val)
2c96535a
         return 0;
513c238f
     if (val == 1)
2c96535a
         return 256;
     val += val >> 9;
     bits = av_log2(val) + 1;
513c238f
     if (bits < 9)
2c96535a
         return (bits << 8) + wp_log2_table[(val << (9 - bits)) & 0xFF];
     else
         return (bits << 8) + wp_log2_table[(val >> (bits - 9)) & 0xFF];
 }
 
 #define LEVEL_DECAY(a)  ((a + 0x80) >> 8)
 
730581f3
 // macros for manipulating median values
2c96535a
 #define GET_MED(n) ((c->median[n] >> 4) + 1)
513c238f
 #define DEC_MED(n) c->median[n] -= ((c->median[n] + (128 >> n) - 2) / (128 >> n)) * 2
 #define INC_MED(n) c->median[n] += ((c->median[n] + (128 >> n)    ) / (128 >> n)) * 5
730581f3
 
 // macros for applying weight
 #define UPDATE_WEIGHT_CLIP(weight, delta, samples, in) \
513c238f
     if (samples && in) { \
         if ((samples ^ in) < 0) { \
             weight -= delta; \
             if (weight < -1024) \
                 weight = -1024; \
         } else { \
             weight += delta; \
             if (weight > 1024) \
                 weight = 1024; \
         } \
     }
730581f3
 
 
849f1035
 static av_always_inline int get_tail(GetBitContext *gb, int k)
730581f3
 {
     int p, e, res;
 
513c238f
     if (k < 1)
         return 0;
4b3b5a23
     p = av_log2(k);
730581f3
     e = (1 << (p + 1)) - k - 1;
8db0c25d
     res = p ? get_bits(gb, p) : 0;
513c238f
     if (res >= e)
         res = (res << 1) - e + get_bits1(gb);
730581f3
     return res;
 }
 
8a485dd3
 static void update_error_limit(WavpackFrameContext *ctx)
2c96535a
 {
     int i, br[2], sl[2];
 
513c238f
     for (i = 0; i <= ctx->stereo_in; i++) {
2c96535a
         ctx->ch[i].bitrate_acc += ctx->ch[i].bitrate_delta;
         br[i] = ctx->ch[i].bitrate_acc >> 16;
         sl[i] = LEVEL_DECAY(ctx->ch[i].slow_level);
     }
513c238f
     if (ctx->stereo_in && ctx->hybrid_bitrate) {
2c96535a
         int balance = (sl[1] - sl[0] + br[1] + 1) >> 1;
513c238f
         if (balance > br[0]) {
2c96535a
             br[1] = br[0] << 1;
             br[0] = 0;
513c238f
         } else if (-balance > br[0]) {
2c96535a
             br[0] <<= 1;
             br[1] = 0;
513c238f
         } else {
2c96535a
             br[1] = br[0] + balance;
             br[0] = br[0] - balance;
         }
     }
513c238f
     for (i = 0; i <= ctx->stereo_in; i++) {
         if (ctx->hybrid_bitrate) {
             if (sl[i] - br[i] > -0x100)
2c96535a
                 ctx->ch[i].error_limit = wp_exp2(sl[i] - br[i] + 0x100);
             else
                 ctx->ch[i].error_limit = 0;
513c238f
         } else {
2c96535a
             ctx->ch[i].error_limit = wp_exp2(br[i]);
         }
     }
 }
 
513c238f
 static int wv_get_value(WavpackFrameContext *ctx, GetBitContext *gb,
                         int channel, int *last)
730581f3
 {
     int t, t2;
     int sign, base, add, ret;
2c96535a
     WvChannel *c = &ctx->ch[channel];
730581f3
 
     *last = 0;
 
513c238f
     if ((ctx->ch[0].median[0] < 2U) && (ctx->ch[1].median[0] < 2U) &&
         !ctx->zero && !ctx->one) {
         if (ctx->zeroes) {
730581f3
             ctx->zeroes--;
513c238f
             if (ctx->zeroes) {
2c96535a
                 c->slow_level -= LEVEL_DECAY(c->slow_level);
730581f3
                 return 0;
2c96535a
             }
513c238f
         } else {
ca1daf0a
             t = get_unary_0_33(gb);
513c238f
             if (t >= 2) {
                 if (get_bits_left(gb) < t - 1)
55354b7d
                     goto error;
                 t = get_bits(gb, t - 1) | (1 << (t-1));
513c238f
             } else {
                 if (get_bits_left(gb) < 0)
55354b7d
                     goto error;
             }
730581f3
             ctx->zeroes = t;
513c238f
             if (ctx->zeroes) {
2c96535a
                 memset(ctx->ch[0].median, 0, sizeof(ctx->ch[0].median));
                 memset(ctx->ch[1].median, 0, sizeof(ctx->ch[1].median));
                 c->slow_level -= LEVEL_DECAY(c->slow_level);
730581f3
                 return 0;
             }
         }
     }
 
513c238f
     if (ctx->zero) {
730581f3
         t = 0;
         ctx->zero = 0;
513c238f
     } else {
ca1daf0a
         t = get_unary_0_33(gb);
513c238f
         if (get_bits_left(gb) < 0)
55354b7d
             goto error;
513c238f
         if (t == 16) {
ca1daf0a
             t2 = get_unary_0_33(gb);
513c238f
             if (t2 < 2) {
                 if (get_bits_left(gb) < 0)
55354b7d
                     goto error;
                 t += t2;
513c238f
             } else {
                 if (get_bits_left(gb) < t2 - 1)
55354b7d
                     goto error;
                 t += get_bits(gb, t2 - 1) | (1 << (t2 - 1));
             }
730581f3
         }
 
513c238f
         if (ctx->one) {
             ctx->one = t & 1;
             t = (t >> 1) + 1;
         } else {
             ctx->one = t & 1;
730581f3
             t >>= 1;
         }
         ctx->zero = !ctx->one;
     }
 
513c238f
     if (ctx->hybrid && !channel)
2c96535a
         update_error_limit(ctx);
 
513c238f
     if (!t) {
730581f3
         base = 0;
513c238f
         add  = GET_MED(0) - 1;
730581f3
         DEC_MED(0);
513c238f
     } else if (t == 1) {
730581f3
         base = GET_MED(0);
513c238f
         add  = GET_MED(1) - 1;
730581f3
         INC_MED(0);
         DEC_MED(1);
513c238f
     } else if (t == 2) {
730581f3
         base = GET_MED(0) + GET_MED(1);
513c238f
         add  = GET_MED(2) - 1;
730581f3
         INC_MED(0);
         INC_MED(1);
         DEC_MED(2);
513c238f
     } else {
730581f3
         base = GET_MED(0) + GET_MED(1) + GET_MED(2) * (t - 2);
513c238f
         add  = GET_MED(2) - 1;
730581f3
         INC_MED(0);
         INC_MED(1);
         INC_MED(2);
     }
513c238f
     if (!c->error_limit) {
2c96535a
         ret = base + get_tail(gb, add);
55354b7d
         if (get_bits_left(gb) <= 0)
             goto error;
513c238f
     } else {
         int mid = (base * 2 + add + 1) >> 1;
         while (add > c->error_limit) {
             if (get_bits_left(gb) <= 0)
55354b7d
                 goto error;
513c238f
             if (get_bits1(gb)) {
2c96535a
                 add -= (mid - base);
                 base = mid;
513c238f
             } else
2c96535a
                 add = mid - base - 1;
513c238f
             mid = (base * 2 + add + 1) >> 1;
2c96535a
         }
         ret = mid;
     }
730581f3
     sign = get_bits1(gb);
513c238f
     if (ctx->hybrid_bitrate)
2c96535a
         c->slow_level += wp_log2(ret) - LEVEL_DECAY(c->slow_level);
730581f3
     return sign ? ~ret : ret;
55354b7d
 
 error:
     *last = 1;
     return 0;
730581f3
 }
 
513c238f
 static inline int wv_get_value_integer(WavpackFrameContext *s, uint32_t *crc,
                                        int S)
3cb08886
 {
     int bit;
 
513c238f
     if (s->extra_bits){
3cb08886
         S <<= s->extra_bits;
 
513c238f
         if (s->got_extra_bits && get_bits_left(&s->gb_extra_bits) >= s->extra_bits) {
3cb08886
             S |= get_bits(&s->gb_extra_bits, s->extra_bits);
513c238f
             *crc = *crc * 9 + (S & 0xffff) * 3 + ((unsigned)S >> 16);
3cb08886
         }
     }
a548b6cb
 
3cb08886
     bit = (S & s->and) | s->or;
dcde8e1c
     bit = ((S + bit) << s->shift) - bit;
a548b6cb
 
513c238f
     if (s->hybrid)
dcde8e1c
         bit = av_clip(bit, s->hybrid_minclip, s->hybrid_maxclip);
a548b6cb
 
e6e7bfc1
     return bit << s->post_shift;
3cb08886
 }
 
8a485dd3
 static float wv_get_value_float(WavpackFrameContext *s, uint32_t *crc, int S)
992f7db0
 {
     union {
         float    f;
         uint32_t u;
     } value;
 
     int sign;
     int exp = s->float_max_exp;
 
513c238f
     if (s->got_extra_bits) {
         const int max_bits  = 1 + 23 + 8 + 1;
6e44ba15
         const int left_bits = get_bits_left(&s->gb_extra_bits);
992f7db0
 
513c238f
         if (left_bits + 8 * FF_INPUT_BUFFER_PADDING_SIZE < max_bits)
992f7db0
             return 0.0;
     }
 
513c238f
     if (S) {
992f7db0
         S <<= s->float_shift;
         sign = S < 0;
513c238f
         if (sign)
992f7db0
             S = -S;
513c238f
         if (S >= 0x1000000) {
             if (s->got_extra_bits && get_bits1(&s->gb_extra_bits))
992f7db0
                 S = get_bits(&s->gb_extra_bits, 23);
513c238f
             else
992f7db0
                 S = 0;
             exp = 255;
513c238f
         } else if (exp) {
992f7db0
             int shift = 23 - av_log2(S);
             exp = s->float_max_exp;
513c238f
             if (exp <= shift)
992f7db0
                 shift = --exp;
             exp -= shift;
 
513c238f
             if (shift) {
992f7db0
                 S <<= shift;
513c238f
                 if ((s->float_flag & WV_FLT_SHIFT_ONES) ||
                     (s->got_extra_bits && (s->float_flag & WV_FLT_SHIFT_SAME) &&
                      get_bits1(&s->gb_extra_bits))) {
992f7db0
                     S |= (1 << shift) - 1;
513c238f
                 } else if (s->got_extra_bits &&
                            (s->float_flag & WV_FLT_SHIFT_SENT)) {
992f7db0
                     S |= get_bits(&s->gb_extra_bits, shift);
                 }
             }
513c238f
         } else {
992f7db0
             exp = s->float_max_exp;
         }
         S &= 0x7fffff;
513c238f
     } else {
992f7db0
         sign = 0;
         exp = 0;
513c238f
         if (s->got_extra_bits && (s->float_flag & WV_FLT_ZERO_SENT)) {
             if (get_bits1(&s->gb_extra_bits)) {
992f7db0
                 S = get_bits(&s->gb_extra_bits, 23);
513c238f
                 if (s->float_max_exp >= 25)
992f7db0
                     exp = get_bits(&s->gb_extra_bits, 8);
                 sign = get_bits1(&s->gb_extra_bits);
513c238f
             } else {
                 if (s->float_flag & WV_FLT_ZERO_SIGN)
992f7db0
                     sign = get_bits1(&s->gb_extra_bits);
             }
         }
     }
 
     *crc = *crc * 27 + S * 9 + exp * 3 + sign;
 
     value.u = (sign << 31) | (exp << 23) | S;
     return value.f;
 }
 
8a485dd3
 static void wv_reset_saved_context(WavpackFrameContext *s)
965828bb
 {
     s->pos = 0;
     s->sc.crc = s->extra_sc.crc = 0xFFFFFFFF;
 }
 
513c238f
 static inline int wv_unpack_stereo(WavpackFrameContext *s, GetBitContext *gb,
                                    void *dst, const int type)
730581f3
 {
     int i, j, count = 0;
     int last, t;
3cb08886
     int A, B, L, L2, R, R2;
965828bb
     int pos = s->pos;
     uint32_t crc = s->sc.crc;
     uint32_t crc_extra_bits = s->extra_sc.crc;
29ee6355
     int16_t *dst16 = dst;
     int32_t *dst32 = dst;
992f7db0
     float   *dstfl = dst;
8a485dd3
     const int channel_pad = s->avctx->channels - 2;
730581f3
 
0eea2129
     s->one = s->zero = s->zeroes = 0;
513c238f
     do {
2c96535a
         L = wv_get_value(s, gb, 0, &last);
513c238f
         if (last)
             break;
2c96535a
         R = wv_get_value(s, gb, 1, &last);
513c238f
         if (last)
             break;
         for (i = 0; i < s->terms; i++) {
730581f3
             t = s->decorr[i].value;
513c238f
             if (t > 0) {
                 if (t > 8) {
                     if (t & 1) {
730581f3
                         A = 2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
                         B = 2 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1];
513c238f
                     } else {
730581f3
                         A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
                         B = (3 * s->decorr[i].samplesB[0] - s->decorr[i].samplesB[1]) >> 1;
                     }
                     s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
                     s->decorr[i].samplesB[1] = s->decorr[i].samplesB[0];
                     j = 0;
513c238f
                 } else {
730581f3
                     A = s->decorr[i].samplesA[pos];
                     B = s->decorr[i].samplesB[pos];
                     j = (pos + t) & 7;
                 }
513c238f
                 if (type != AV_SAMPLE_FMT_S16) {
29ee6355
                     L2 = L + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
                     R2 = R + ((s->decorr[i].weightB * (int64_t)B + 512) >> 10);
513c238f
                 } else {
29ee6355
                     L2 = L + ((s->decorr[i].weightA * A + 512) >> 10);
                     R2 = R + ((s->decorr[i].weightB * B + 512) >> 10);
0638c2ae
                 }
513c238f
                 if (A && L) s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
                 if (B && R) s->decorr[i].weightB -= ((((R ^ B) >> 30) & 2) - 1) * s->decorr[i].delta;
0638c2ae
                 s->decorr[i].samplesA[j] = L = L2;
                 s->decorr[i].samplesB[j] = R = R2;
513c238f
             } else if (t == -1) {
                 if (type != AV_SAMPLE_FMT_S16)
29ee6355
                     L2 = L + ((s->decorr[i].weightA * (int64_t)s->decorr[i].samplesA[0] + 512) >> 10);
                 else
                     L2 = L + ((s->decorr[i].weightA * s->decorr[i].samplesA[0] + 512) >> 10);
0638c2ae
                 UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, s->decorr[i].samplesA[0], L);
                 L = L2;
513c238f
                 if (type != AV_SAMPLE_FMT_S16)
29ee6355
                     R2 = R + ((s->decorr[i].weightB * (int64_t)L2 + 512) >> 10);
                 else
                     R2 = R + ((s->decorr[i].weightB * L2 + 512) >> 10);
0638c2ae
                 UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, L2, R);
                 R = R2;
                 s->decorr[i].samplesA[0] = R;
513c238f
             } else {
                 if (type != AV_SAMPLE_FMT_S16)
29ee6355
                     R2 = R + ((s->decorr[i].weightB * (int64_t)s->decorr[i].samplesB[0] + 512) >> 10);
                 else
                     R2 = R + ((s->decorr[i].weightB * s->decorr[i].samplesB[0] + 512) >> 10);
0638c2ae
                 UPDATE_WEIGHT_CLIP(s->decorr[i].weightB, s->decorr[i].delta, s->decorr[i].samplesB[0], R);
                 R = R2;
 
513c238f
                 if (t == -3) {
0638c2ae
                     R2 = s->decorr[i].samplesA[0];
                     s->decorr[i].samplesA[0] = R;
                 }
 
513c238f
                 if (type != AV_SAMPLE_FMT_S16)
29ee6355
                     L2 = L + ((s->decorr[i].weightA * (int64_t)R2 + 512) >> 10);
                 else
                     L2 = L + ((s->decorr[i].weightA * R2 + 512) >> 10);
0638c2ae
                 UPDATE_WEIGHT_CLIP(s->decorr[i].weightA, s->decorr[i].delta, R2, L);
                 L = L2;
                 s->decorr[i].samplesB[0] = L;
             }
         }
         pos = (pos + 1) & 7;
513c238f
         if (s->joint)
0638c2ae
             L += (R -= (L >> 1));
         crc = (crc * 3 + L) * 3 + R;
418f77ec
 
513c238f
         if (type == AV_SAMPLE_FMT_FLT) {
992f7db0
             *dstfl++ = wv_get_value_float(s, &crc_extra_bits, L);
             *dstfl++ = wv_get_value_float(s, &crc_extra_bits, R);
8a485dd3
             dstfl += channel_pad;
513c238f
         } else if (type == AV_SAMPLE_FMT_S32) {
3cb08886
             *dst32++ = wv_get_value_integer(s, &crc_extra_bits, L);
             *dst32++ = wv_get_value_integer(s, &crc_extra_bits, R);
8a485dd3
             dst32 += channel_pad;
3cb08886
         } else {
             *dst16++ = wv_get_value_integer(s, &crc_extra_bits, L);
             *dst16++ = wv_get_value_integer(s, &crc_extra_bits, R);
8a485dd3
             dst16 += channel_pad;
418f77ec
         }
0638c2ae
         count++;
0eea2129
     } while (!last && count < s->samples);
0638c2ae
 
513c238f
     wv_reset_saved_context(s);
     if (crc != s->CRC) {
         av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
         return -1;
     }
     if (s->got_extra_bits && crc_extra_bits != s->crc_extra_bits) {
         av_log(s->avctx, AV_LOG_ERROR, "Extra bits CRC error\n");
         return -1;
     }
0eea2129
 
0638c2ae
     return count * 2;
 }
 
513c238f
 static inline int wv_unpack_mono(WavpackFrameContext *s, GetBitContext *gb,
                                  void *dst, const int type)
0638c2ae
 {
     int i, j, count = 0;
     int last, t;
3cb08886
     int A, S, T;
965828bb
     int pos = s->pos;
     uint32_t crc = s->sc.crc;
     uint32_t crc_extra_bits = s->extra_sc.crc;
29ee6355
     int16_t *dst16 = dst;
     int32_t *dst32 = dst;
992f7db0
     float   *dstfl = dst;
8a485dd3
     const int channel_stride = s->avctx->channels;
0638c2ae
 
0eea2129
     s->one = s->zero = s->zeroes = 0;
513c238f
     do {
0638c2ae
         T = wv_get_value(s, gb, 0, &last);
         S = 0;
513c238f
         if (last)
             break;
         for (i = 0; i < s->terms; i++) {
0638c2ae
             t = s->decorr[i].value;
513c238f
             if (t > 8) {
                 if (t & 1)
                     A =  2 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1];
0638c2ae
                 else
                     A = (3 * s->decorr[i].samplesA[0] - s->decorr[i].samplesA[1]) >> 1;
                 s->decorr[i].samplesA[1] = s->decorr[i].samplesA[0];
                 j = 0;
513c238f
             } else {
0638c2ae
                 A = s->decorr[i].samplesA[pos];
                 j = (pos + t) & 7;
             }
513c238f
             if (type != AV_SAMPLE_FMT_S16)
29ee6355
                 S = T + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
             else
                 S = T + ((s->decorr[i].weightA * A + 512) >> 10);
513c238f
             if (A && T)
                 s->decorr[i].weightA -= ((((T ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
0638c2ae
             s->decorr[i].samplesA[j] = T = S;
         }
         pos = (pos + 1) & 7;
         crc = crc * 3 + S;
418f77ec
 
513c238f
         if (type == AV_SAMPLE_FMT_FLT) {
8a485dd3
             *dstfl = wv_get_value_float(s, &crc_extra_bits, S);
             dstfl += channel_stride;
513c238f
         } else if (type == AV_SAMPLE_FMT_S32) {
8a485dd3
             *dst32 = wv_get_value_integer(s, &crc_extra_bits, S);
             dst32 += channel_stride;
513c238f
         } else {
8a485dd3
             *dst16 = wv_get_value_integer(s, &crc_extra_bits, S);
             dst16 += channel_stride;
         }
0638c2ae
         count++;
0eea2129
     } while (!last && count < s->samples);
0638c2ae
 
513c238f
     wv_reset_saved_context(s);
     if (crc != s->CRC) {
         av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
         return -1;
     }
     if (s->got_extra_bits && crc_extra_bits != s->crc_extra_bits) {
         av_log(s->avctx, AV_LOG_ERROR, "Extra bits CRC error\n");
         return -1;
     }
0eea2129
 
0638c2ae
     return count;
 }
 
8a485dd3
 static av_cold int wv_alloc_frame_context(WavpackContext *c)
 {
 
513c238f
     if (c->fdec_num == WV_MAX_FRAME_DECODERS)
8a485dd3
         return -1;
 
     c->fdec[c->fdec_num] = av_mallocz(sizeof(**c->fdec));
513c238f
     if (!c->fdec[c->fdec_num])
8a485dd3
         return -1;
     c->fdec_num++;
     c->fdec[c->fdec_num - 1]->avctx = c->avctx;
     wv_reset_saved_context(c->fdec[c->fdec_num - 1]);
 
     return 0;
 }
 
98a6fff9
 static av_cold int wavpack_decode_init(AVCodecContext *avctx)
730581f3
 {
     WavpackContext *s = avctx->priv_data;
 
     s->avctx = avctx;
513c238f
     if (avctx->bits_per_coded_sample <= 16)
5d6e4c16
         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
0638c2ae
     else
5d6e4c16
         avctx->sample_fmt = AV_SAMPLE_FMT_S32;
513c238f
     if (avctx->channels <= 2 && !avctx->channel_layout)
         avctx->channel_layout = (avctx->channels == 2) ? AV_CH_LAYOUT_STEREO :
                                                          AV_CH_LAYOUT_MONO;
730581f3
 
8a485dd3
     s->multichannel = avctx->channels > 2;
     /* lavf demuxer does not provide extradata, Matroska stores 0x403
        there, use this to detect decoding mode for multichannel */
     s->mkv_mode = 0;
513c238f
     if (s->multichannel && avctx->extradata && avctx->extradata_size == 2) {
8a485dd3
         int ver = AV_RL16(avctx->extradata);
513c238f
         if (ver >= 0x402 && ver <= 0x410)
8a485dd3
             s->mkv_mode = 1;
     }
 
     s->fdec_num = 0;
965828bb
 
0eea2129
     avcodec_get_frame_defaults(&s->frame);
     avctx->coded_frame = &s->frame;
 
730581f3
     return 0;
 }
 
8a485dd3
 static av_cold int wavpack_decode_end(AVCodecContext *avctx)
730581f3
 {
     WavpackContext *s = avctx->priv_data;
8a485dd3
     int i;
 
513c238f
     for (i = 0; i < s->fdec_num; i++)
8a485dd3
         av_freep(&s->fdec[i]);
     s->fdec_num = 0;
 
     return 0;
 }
 
 static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
0eea2129
                                 void *data, int *got_frame_ptr,
8a485dd3
                                 const uint8_t *buf, int buf_size)
 {
     WavpackContext *wc = avctx->priv_data;
     WavpackFrameContext *s;
29ee6355
     void *samples = data;
730581f3
     int samplecount;
513c238f
     int got_terms   = 0, got_weights = 0, got_samples = 0,
3a1867de
         got_entropy = 0, got_bs      = 0, got_float   = 0, got_hybrid = 0;
513c238f
     const uint8_t *orig_buf = buf;
     const uint8_t *buf_end  = buf + buf_size;
730581f3
     int i, j, id, size, ssize, weights, t;
dcde8e1c
     int bpp, chan, chmask, orig_bpp;
730581f3
 
513c238f
     if (buf_size == 0) {
0eea2129
         *got_frame_ptr = 0;
b314cfe7
         return 0;
     }
730581f3
 
513c238f
     if (block_no >= wc->fdec_num && wv_alloc_frame_context(wc) < 0) {
8a485dd3
         av_log(avctx, AV_LOG_ERROR, "Error creating frame decode context\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
8a485dd3
     }
 
     s = wc->fdec[block_no];
513c238f
     if (!s) {
8a485dd3
         av_log(avctx, AV_LOG_ERROR, "Context for block %d is not present\n", block_no);
5a6af4fd
         return AVERROR_INVALIDDATA;
8a485dd3
     }
 
513c238f
     memset(s->decorr, 0, MAX_TERMS * sizeof(Decorr));
     memset(s->ch, 0, sizeof(s->ch));
     s->extra_bits = 0;
     s->and = s->or = s->shift = 0;
     s->got_extra_bits = 0;
730581f3
 
513c238f
     if (!wc->mkv_mode) {
69c78161
         s->samples = AV_RL32(buf); buf += 4;
6711d410
         if (s->samples != wc->samples)
             return AVERROR_INVALIDDATA;
 
513c238f
         if (!s->samples) {
0eea2129
             *got_frame_ptr = 0;
bcd4aa8b
             return 0;
69c78161
         }
513c238f
     } else {
8a485dd3
         s->samples = wc->samples;
     }
2c96535a
     s->frame_flags = AV_RL32(buf); buf += 4;
d2604f92
     bpp = av_get_bytes_per_sample(avctx->sample_fmt);
8a485dd3
     samples = (uint8_t*)samples + bpp * wc->ch_offset;
dcde8e1c
     orig_bpp = ((s->frame_flags & 0x03) + 1) << 3;
8a485dd3
 
513c238f
     s->stereo         = !(s->frame_flags & WV_MONO);
     s->stereo_in      =  (s->frame_flags & WV_FALSE_STEREO) ? 0 : s->stereo;
     s->joint          =   s->frame_flags & WV_JOINT_STEREO;
     s->hybrid         =   s->frame_flags & WV_HYBRID_MODE;
     s->hybrid_bitrate =   s->frame_flags & WV_HYBRID_BITRATE;
dcde8e1c
     s->post_shift     = bpp * 8 - orig_bpp + ((s->frame_flags >> 13) & 0x1f);
9f82cbf7
     s->hybrid_maxclip = (( 1LL << (orig_bpp - 1)) - 1);
     s->hybrid_minclip = ((-1LL << (orig_bpp - 1)));
513c238f
     s->CRC            = AV_RL32(buf); buf += 4;
     if (wc->mkv_mode)
8a485dd3
         buf += 4; //skip block size;
 
     wc->ch_offset += 1 + s->stereo;
60294c59
 
730581f3
     // parse metadata blocks
513c238f
     while (buf < buf_end) {
         id   = *buf++;
730581f3
         size = *buf++;
513c238f
         if (id & WP_IDF_LONG) {
730581f3
             size |= (*buf++) << 8;
             size |= (*buf++) << 16;
         }
         size <<= 1; // size is specified in words
         ssize = size;
513c238f
         if (id & WP_IDF_ODD)
             size--;
         if (size < 0) {
730581f3
             av_log(avctx, AV_LOG_ERROR, "Got incorrect block %02X with size %i\n", id, size);
             break;
         }
513c238f
         if (buf + ssize > buf_end) {
730581f3
             av_log(avctx, AV_LOG_ERROR, "Block size %i is out of bounds\n", size);
             break;
         }
513c238f
         if (id & WP_IDF_IGNORE) {
730581f3
             buf += ssize;
             continue;
         }
513c238f
         switch (id & WP_IDF_MASK) {
730581f3
         case WP_ID_DECTERMS:
513c238f
             if (size > MAX_TERMS) {
730581f3
                 av_log(avctx, AV_LOG_ERROR, "Too many decorrelation terms\n");
8bfea4ab
                 s->terms = 0;
730581f3
                 buf += ssize;
                 continue;
             }
8bfea4ab
             s->terms = size;
513c238f
             for (i = 0; i < s->terms; i++) {
730581f3
                 s->decorr[s->terms - i - 1].value = (*buf & 0x1F) - 5;
                 s->decorr[s->terms - i - 1].delta = *buf >> 5;
                 buf++;
             }
             got_terms = 1;
             break;
         case WP_ID_DECWEIGHTS:
513c238f
             if (!got_terms) {
730581f3
                 av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
                 continue;
             }
a6ba65f7
             weights = size >> s->stereo_in;
513c238f
             if (weights > MAX_TERMS || weights > s->terms) {
730581f3
                 av_log(avctx, AV_LOG_ERROR, "Too many decorrelation weights\n");
                 buf += ssize;
                 continue;
             }
513c238f
             for (i = 0; i < weights; i++) {
730581f3
                 t = (int8_t)(*buf++);
                 s->decorr[s->terms - i - 1].weightA = t << 3;
513c238f
                 if (s->decorr[s->terms - i - 1].weightA > 0)
                     s->decorr[s->terms - i - 1].weightA +=
                             (s->decorr[s->terms - i - 1].weightA + 64) >> 7;
                 if (s->stereo_in) {
730581f3
                     t = (int8_t)(*buf++);
                     s->decorr[s->terms - i - 1].weightB = t << 3;
513c238f
                     if (s->decorr[s->terms - i - 1].weightB > 0)
                         s->decorr[s->terms - i - 1].weightB +=
                                 (s->decorr[s->terms - i - 1].weightB + 64) >> 7;
730581f3
                 }
             }
             got_weights = 1;
             break;
         case WP_ID_DECSAMPLES:
513c238f
             if (!got_terms) {
730581f3
                 av_log(avctx, AV_LOG_ERROR, "No decorrelation terms met\n");
                 continue;
             }
             t = 0;
3a1867de
             for (i = s->terms - 1; (i >= 0) && (t < size); i--) {
513c238f
                 if (s->decorr[i].value > 8) {
fead30d4
                     s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
                     s->decorr[i].samplesA[1] = wp_exp2(AV_RL16(buf)); buf += 2;
513c238f
                     if (s->stereo_in) {
fead30d4
                         s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2;
                         s->decorr[i].samplesB[1] = wp_exp2(AV_RL16(buf)); buf += 2;
730581f3
                         t += 4;
                     }
                     t += 4;
513c238f
                 } else if (s->decorr[i].value < 0) {
fead30d4
                     s->decorr[i].samplesA[0] = wp_exp2(AV_RL16(buf)); buf += 2;
                     s->decorr[i].samplesB[0] = wp_exp2(AV_RL16(buf)); buf += 2;
730581f3
                     t += 4;
513c238f
                 } else {
                     for (j = 0; j < s->decorr[i].value; j++) {
fead30d4
                         s->decorr[i].samplesA[j] = wp_exp2(AV_RL16(buf)); buf += 2;
0df7d748
                         if (s->stereo_in) {
fead30d4
                             s->decorr[i].samplesB[j] = wp_exp2(AV_RL16(buf)); buf += 2;
0df7d748
                         }
730581f3
                     }
a6ba65f7
                     t += s->decorr[i].value * 2 * (s->stereo_in + 1);
730581f3
                 }
             }
             got_samples = 1;
             break;
         case WP_ID_ENTROPY:
513c238f
             if (size != 6 * (s->stereo_in + 1)) {
                 av_log(avctx, AV_LOG_ERROR, "Entropy vars size should be %i, "
                        "got %i", 6 * (s->stereo_in + 1), size);
730581f3
                 buf += ssize;
                 continue;
             }
513c238f
             for (j = 0; j <= s->stereo_in; j++) {
                 for (i = 0; i < 3; i++) {
2c96535a
                     s->ch[j].median[i] = wp_exp2(AV_RL16(buf));
                     buf += 2;
                 }
730581f3
             }
             got_entropy = 1;
             break;
2c96535a
         case WP_ID_HYBRID:
513c238f
             if (s->hybrid_bitrate) {
                 for (i = 0; i <= s->stereo_in; i++) {
2c96535a
                     s->ch[i].slow_level = wp_exp2(AV_RL16(buf));
                     buf += 2;
                     size -= 2;
                 }
             }
513c238f
             for (i = 0; i < (s->stereo_in + 1); i++) {
2c96535a
                 s->ch[i].bitrate_acc = AV_RL16(buf) << 16;
                 buf += 2;
                 size -= 2;
             }
513c238f
             if (size > 0) {
                 for (i = 0; i < (s->stereo_in + 1); i++) {
2c96535a
                     s->ch[i].bitrate_delta = wp_exp2((int16_t)AV_RL16(buf));
                     buf += 2;
                 }
513c238f
             } else {
                 for (i = 0; i < (s->stereo_in + 1); i++)
2c96535a
                     s->ch[i].bitrate_delta = 0;
             }
             got_hybrid = 1;
             break;
6b05eb31
         case WP_ID_INT32INFO:
513c238f
             if (size != 4) {
6b05eb31
                 av_log(avctx, AV_LOG_ERROR, "Invalid INT32INFO, size = %i, sent_bits = %i\n", size, *buf);
                 buf += ssize;
                 continue;
             }
513c238f
             if (buf[0])
418f77ec
                 s->extra_bits = buf[0];
513c238f
             else if (buf[1])
6b05eb31
                 s->shift = buf[1];
513c238f
             else if (buf[2]){
6b05eb31
                 s->and = s->or = 1;
                 s->shift = buf[2];
513c238f
             } else if(buf[3]) {
                 s->and   = 1;
6b05eb31
                 s->shift = buf[3];
             }
dcde8e1c
             /* original WavPack decoder forces 32-bit lossy sound to be treated
              * as 24-bit one in order to have proper clipping
              */
             if (s->hybrid && bpp == 4 && s->post_shift < 8 && s->shift > 8) {
                 s->post_shift += 8;
                 s->shift      -= 8;
                 s->hybrid_maxclip >>= 8;
                 s->hybrid_minclip >>= 8;
             }
6b05eb31
             buf += 4;
             break;
992f7db0
         case WP_ID_FLOATINFO:
513c238f
             if (size != 4) {
992f7db0
                 av_log(avctx, AV_LOG_ERROR, "Invalid FLOATINFO, size = %i\n", size);
                 buf += ssize;
                 continue;
             }
513c238f
             s->float_flag    = buf[0];
             s->float_shift   = buf[1];
992f7db0
             s->float_max_exp = buf[2];
             buf += 4;
             got_float = 1;
             break;
730581f3
         case WP_ID_DATA:
8a485dd3
             s->sc.offset = buf - orig_buf;
965828bb
             s->sc.size   = size * 8;
730581f3
             init_get_bits(&s->gb, buf, size * 8);
             s->data_size = size * 8;
             buf += size;
             got_bs = 1;
             break;
418f77ec
         case WP_ID_EXTRABITS:
513c238f
             if (size <= 4) {
                 av_log(avctx, AV_LOG_ERROR, "Invalid EXTRABITS, size = %i\n",
                        size);
418f77ec
                 buf += size;
                 continue;
             }
8a485dd3
             s->extra_sc.offset = buf - orig_buf;
965828bb
             s->extra_sc.size   = size * 8;
418f77ec
             init_get_bits(&s->gb_extra_bits, buf, size * 8);
             s->crc_extra_bits = get_bits_long(&s->gb_extra_bits, 32);
             buf += size;
             s->got_extra_bits = 1;
             break;
8a485dd3
         case WP_ID_CHANINFO:
513c238f
             if (size <= 1) {
8a485dd3
                 av_log(avctx, AV_LOG_ERROR, "Insufficient channel information\n");
5a6af4fd
                 return AVERROR_INVALIDDATA;
8a485dd3
             }
             chan = *buf++;
513c238f
             switch (size - 2) {
             case 0: chmask = *buf;         break;
             case 1: chmask = AV_RL16(buf); break;
             case 2: chmask = AV_RL24(buf); break;
             case 3: chmask = AV_RL32(buf); break;
8a485dd3
             case 5:
                 chan |= (buf[1] & 0xF) << 8;
                 chmask = AV_RL24(buf + 2);
                 break;
             default:
513c238f
                 av_log(avctx, AV_LOG_ERROR, "Invalid channel info size %d\n",
                        size);
                 chan   = avctx->channels;
8a485dd3
                 chmask = avctx->channel_layout;
             }
513c238f
             if (chan != avctx->channels) {
5a6af4fd
                 av_log(avctx, AV_LOG_ERROR,
                        "Block reports total %d channels, "
                        "decoder believes it's %d channels\n",
                        chan, avctx->channels);
                 return AVERROR_INVALIDDATA;
8a485dd3
             }
513c238f
             if (!avctx->channel_layout)
8a485dd3
                 avctx->channel_layout = chmask;
             buf += size - 1;
             break;
730581f3
         default:
             buf += size;
         }
513c238f
         if (id & WP_IDF_ODD)
             buf++;
730581f3
     }
0eea2129
 
513c238f
     if (!got_terms) {
         av_log(avctx, AV_LOG_ERROR, "No block with decorrelation terms\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (!got_weights) {
         av_log(avctx, AV_LOG_ERROR, "No block with decorrelation weights\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (!got_samples) {
         av_log(avctx, AV_LOG_ERROR, "No block with decorrelation samples\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (!got_entropy) {
         av_log(avctx, AV_LOG_ERROR, "No block with entropy info\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (s->hybrid && !got_hybrid) {
         av_log(avctx, AV_LOG_ERROR, "Hybrid config not found\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (!got_bs) {
         av_log(avctx, AV_LOG_ERROR, "Packed samples not found\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (!got_float && avctx->sample_fmt == AV_SAMPLE_FMT_FLT) {
         av_log(avctx, AV_LOG_ERROR, "Float information not found\n");
5a6af4fd
         return AVERROR_INVALIDDATA;
513c238f
     }
     if (s->got_extra_bits && avctx->sample_fmt != AV_SAMPLE_FMT_FLT) {
         const int size   = get_bits_left(&s->gb_extra_bits);
         const int wanted = s->samples * s->extra_bits << s->stereo_in;
         if (size < wanted) {
             av_log(avctx, AV_LOG_ERROR, "Too small EXTRABITS\n");
             s->got_extra_bits = 0;
aa170ed6
         }
513c238f
     }
730581f3
 
513c238f
     if (s->stereo_in) {
         if (avctx->sample_fmt == AV_SAMPLE_FMT_S16)
5d6e4c16
             samplecount = wv_unpack_stereo(s, &s->gb, samples, AV_SAMPLE_FMT_S16);
513c238f
         else if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
5d6e4c16
             samplecount = wv_unpack_stereo(s, &s->gb, samples, AV_SAMPLE_FMT_S32);
992f7db0
         else
5d6e4c16
             samplecount = wv_unpack_stereo(s, &s->gb, samples, AV_SAMPLE_FMT_FLT);
dba2b63a
 
         if (samplecount < 0)
5a6af4fd
             return samplecount;
dba2b63a
 
8a485dd3
         samplecount >>= 1;
513c238f
     } else {
8a485dd3
         const int channel_stride = avctx->channels;
 
513c238f
         if (avctx->sample_fmt == AV_SAMPLE_FMT_S16)
5d6e4c16
             samplecount = wv_unpack_mono(s, &s->gb, samples, AV_SAMPLE_FMT_S16);
513c238f
         else if (avctx->sample_fmt == AV_SAMPLE_FMT_S32)
5d6e4c16
             samplecount = wv_unpack_mono(s, &s->gb, samples, AV_SAMPLE_FMT_S32);
992f7db0
         else
5d6e4c16
             samplecount = wv_unpack_mono(s, &s->gb, samples, AV_SAMPLE_FMT_FLT);
992f7db0
 
dba2b63a
         if (samplecount < 0)
5a6af4fd
             return samplecount;
dba2b63a
 
513c238f
         if (s->stereo && avctx->sample_fmt == AV_SAMPLE_FMT_S16) {
8a485dd3
             int16_t *dst = (int16_t*)samples + 1;
             int16_t *src = (int16_t*)samples;
a6ba65f7
             int cnt = samplecount;
513c238f
             while (cnt--) {
8a485dd3
                 *dst = *src;
                 src += channel_stride;
                 dst += channel_stride;
a6ba65f7
             }
513c238f
         } else if (s->stereo && avctx->sample_fmt == AV_SAMPLE_FMT_S32) {
8a485dd3
             int32_t *dst = (int32_t*)samples + 1;
             int32_t *src = (int32_t*)samples;
0638c2ae
             int cnt = samplecount;
513c238f
             while (cnt--) {
8a485dd3
                 *dst = *src;
                 src += channel_stride;
                 dst += channel_stride;
0638c2ae
             }
513c238f
         } else if (s->stereo) {
8a485dd3
             float *dst = (float*)samples + 1;
             float *src = (float*)samples;
992f7db0
             int cnt = samplecount;
513c238f
             while (cnt--) {
8a485dd3
                 *dst = *src;
                 src += channel_stride;
                 dst += channel_stride;
             }
         }
     }
 
0eea2129
     *got_frame_ptr = 1;
8a485dd3
 
     return samplecount * bpp;
 }
 
c2a016ad
 static void wavpack_decode_flush(AVCodecContext *avctx)
 {
     WavpackContext *s = avctx->priv_data;
     int i;
 
     for (i = 0; i < s->fdec_num; i++)
         wv_reset_saved_context(s->fdec[i]);
 }
 
0eea2129
 static int wavpack_decode_frame(AVCodecContext *avctx, void *data,
                                 int *got_frame_ptr, AVPacket *avpkt)
8a485dd3
 {
513c238f
     WavpackContext *s  = avctx->priv_data;
8a485dd3
     const uint8_t *buf = avpkt->data;
513c238f
     int buf_size       = avpkt->size;
14165fe1
     int frame_size, ret, frame_flags;
8a485dd3
     int samplecount = 0;
 
42fed7f4
     if (avpkt->size < 12 + s->multichannel * 4)
         return AVERROR_INVALIDDATA;
 
513c238f
     s->block     = 0;
8a485dd3
     s->ch_offset = 0;
 
0eea2129
     /* determine number of samples */
513c238f
     if (s->mkv_mode) {
14165fe1
         s->samples  = AV_RL32(buf); buf += 4;
         frame_flags = AV_RL32(buf);
0eea2129
     } else {
14165fe1
         if (s->multichannel) {
             s->samples  = AV_RL32(buf + 4);
             frame_flags = AV_RL32(buf + 8);
         } else {
             s->samples  = AV_RL32(buf);
             frame_flags = AV_RL32(buf + 4);
         }
0eea2129
     }
     if (s->samples <= 0) {
         av_log(avctx, AV_LOG_ERROR, "Invalid number of samples: %d\n",
                s->samples);
5a6af4fd
         return AVERROR_INVALIDDATA;
0eea2129
     }
 
14165fe1
     if (frame_flags & 0x80) {
         avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
     } else if ((frame_flags & 0x03) <= 1) {
         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
     } else {
         avctx->sample_fmt = AV_SAMPLE_FMT_S32;
     }
 
0eea2129
     /* get output buffer */
     s->frame.nb_samples = s->samples;
     if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
         return ret;
8a485dd3
     }
0eea2129
 
513c238f
     while (buf_size > 0) {
         if (!s->multichannel) {
8a485dd3
             frame_size = buf_size;
513c238f
         } else {
             if (!s->mkv_mode) {
8a485dd3
                 frame_size = AV_RL32(buf) - 12; buf += 4; buf_size -= 4;
513c238f
             } else {
                 if (buf_size < 12) //MKV files can have zero flags after last block
8a485dd3
                     break;
                 frame_size = AV_RL32(buf + 8) + 12;
992f7db0
             }
a6ba65f7
         }
513c238f
         if (frame_size < 0 || frame_size > buf_size) {
             av_log(avctx, AV_LOG_ERROR, "Block %d has invalid size (size %d "
                    "vs. %d bytes left)\n", s->block, frame_size, buf_size);
c2a016ad
             wavpack_decode_flush(avctx);
5a6af4fd
             return AVERROR_INVALIDDATA;
8a485dd3
         }
513c238f
         if ((samplecount = wavpack_decode_block(avctx, s->block,
                                                 s->frame.data[0], got_frame_ptr,
                                                 buf, frame_size)) < 0) {
c2a016ad
             wavpack_decode_flush(avctx);
5a6af4fd
             return samplecount;
c2a016ad
         }
8a485dd3
         s->block++;
         buf += frame_size; buf_size -= frame_size;
a6ba65f7
     }
730581f3
 
0eea2129
     if (*got_frame_ptr)
         *(AVFrame *)data = s->frame;
 
     return avpkt->size;
730581f3
 }
 
e7e2df27
 AVCodec ff_wavpack_decoder = {
ec6402b7
     .name           = "wavpack",
     .type           = AVMEDIA_TYPE_AUDIO,
     .id             = CODEC_ID_WAVPACK,
     .priv_data_size = sizeof(WavpackContext),
     .init           = wavpack_decode_init,
     .close          = wavpack_decode_end,
     .decode         = wavpack_decode_frame,
4ba8c521
     .flush          = wavpack_decode_flush,
0eea2129
     .capabilities   = CODEC_CAP_SUBFRAMES | CODEC_CAP_DR1,
513c238f
     .long_name      = NULL_IF_CONFIG_SMALL("WavPack"),
730581f3
 };