libavcodec/takdec.c
d7a47392
 /*
  * TAK decoder
  * Copyright (c) 2012 Paul B Mahol
  *
  * 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
  */
 
 /**
  * @file
  * TAK (Tom's lossless Audio Kompressor) decoder
  * @author Paul B Mahol
  */
 
218aefce
 #include "libavutil/internal.h"
f8d68822
 #include "libavutil/samplefmt.h"
b6686629
 
 #define BITSTREAM_READER_LE
9a9e2f1c
 #include "audiodsp.h"
d9704464
 #include "thread.h"
d7a47392
 #include "avcodec.h"
874c5b02
 #include "internal.h"
d7a47392
 #include "unary.h"
b6686629
 #include "tak.h"
ae753dbd
 #include "takdsp.h"
d7a47392
 
cef28b56
 #define MAX_SUBFRAMES     8                         ///< max number of subframes per channel
d7a47392
 #define MAX_PREDICTORS  256
 
 typedef struct MCDParam {
cef28b56
     int8_t present;                                 ///< decorrelation parameter availability for this channel
     int8_t index;                                   ///< index into array of decorrelation types
     int8_t chan1;
     int8_t chan2;
d7a47392
 } MCDParam;
 
 typedef struct TAKDecContext {
cef28b56
     AVCodecContext *avctx;                          ///< parent AVCodecContext
9a9e2f1c
     AudioDSPContext adsp;
35af7add
     TAKDSPContext   tdsp;
cef28b56
     TAKStreamInfo   ti;
     GetBitContext   gb;                             ///< bitstream reader initialized to start at the current frame
 
     int             uval;
     int             nb_samples;                     ///< number of samples in the current frame
f8d68822
     uint8_t        *decode_buffer;
cef28b56
     unsigned int    decode_buffer_size;
     int32_t        *decoded[TAK_MAX_CHANNELS];      ///< decoded samples for each channel
 
     int8_t          lpc_mode[TAK_MAX_CHANNELS];
     int8_t          sample_shift[TAK_MAX_CHANNELS]; ///< shift applied to every sample in the channel
     int16_t         predictors[MAX_PREDICTORS];
     int             nb_subframes;                   ///< number of subframes in the current frame
     int16_t         subframe_len[MAX_SUBFRAMES];    ///< subframe length in samples
     int             subframe_scale;
 
     int8_t          dmode;                          ///< channel decorrelation type in the current frame
 
     MCDParam        mcdparams[TAK_MAX_CHANNELS];    ///< multichannel decorrelation parameters
 
     int8_t          coding_mode[128];
d7a47392
     DECLARE_ALIGNED(16, int16_t, filter)[MAX_PREDICTORS];
     DECLARE_ALIGNED(16, int16_t, residues)[544];
 } TAKDecContext;
 
cef28b56
 static const int8_t mc_dmodes[] = { 1, 3, 4, 6, };
d7a47392
 
 static const uint16_t predictor_sizes[] = {
     4, 8, 12, 16, 24, 32, 48, 64, 80, 96, 128, 160, 192, 224, 256, 0,
 };
 
 static const struct CParam {
cef28b56
     int init;
     int escape;
     int scale;
     int aescape;
     int bias;
d7a47392
 } xcodes[50] = {
     { 0x01, 0x0000001, 0x0000001, 0x0000003, 0x0000008 },
     { 0x02, 0x0000003, 0x0000001, 0x0000007, 0x0000006 },
     { 0x03, 0x0000005, 0x0000002, 0x000000E, 0x000000D },
     { 0x03, 0x0000003, 0x0000003, 0x000000D, 0x0000018 },
     { 0x04, 0x000000B, 0x0000004, 0x000001C, 0x0000019 },
     { 0x04, 0x0000006, 0x0000006, 0x000001A, 0x0000030 },
     { 0x05, 0x0000016, 0x0000008, 0x0000038, 0x0000032 },
     { 0x05, 0x000000C, 0x000000C, 0x0000034, 0x0000060 },
     { 0x06, 0x000002C, 0x0000010, 0x0000070, 0x0000064 },
     { 0x06, 0x0000018, 0x0000018, 0x0000068, 0x00000C0 },
     { 0x07, 0x0000058, 0x0000020, 0x00000E0, 0x00000C8 },
     { 0x07, 0x0000030, 0x0000030, 0x00000D0, 0x0000180 },
     { 0x08, 0x00000B0, 0x0000040, 0x00001C0, 0x0000190 },
     { 0x08, 0x0000060, 0x0000060, 0x00001A0, 0x0000300 },
     { 0x09, 0x0000160, 0x0000080, 0x0000380, 0x0000320 },
     { 0x09, 0x00000C0, 0x00000C0, 0x0000340, 0x0000600 },
     { 0x0A, 0x00002C0, 0x0000100, 0x0000700, 0x0000640 },
     { 0x0A, 0x0000180, 0x0000180, 0x0000680, 0x0000C00 },
     { 0x0B, 0x0000580, 0x0000200, 0x0000E00, 0x0000C80 },
     { 0x0B, 0x0000300, 0x0000300, 0x0000D00, 0x0001800 },
     { 0x0C, 0x0000B00, 0x0000400, 0x0001C00, 0x0001900 },
     { 0x0C, 0x0000600, 0x0000600, 0x0001A00, 0x0003000 },
     { 0x0D, 0x0001600, 0x0000800, 0x0003800, 0x0003200 },
     { 0x0D, 0x0000C00, 0x0000C00, 0x0003400, 0x0006000 },
     { 0x0E, 0x0002C00, 0x0001000, 0x0007000, 0x0006400 },
     { 0x0E, 0x0001800, 0x0001800, 0x0006800, 0x000C000 },
     { 0x0F, 0x0005800, 0x0002000, 0x000E000, 0x000C800 },
     { 0x0F, 0x0003000, 0x0003000, 0x000D000, 0x0018000 },
     { 0x10, 0x000B000, 0x0004000, 0x001C000, 0x0019000 },
     { 0x10, 0x0006000, 0x0006000, 0x001A000, 0x0030000 },
     { 0x11, 0x0016000, 0x0008000, 0x0038000, 0x0032000 },
     { 0x11, 0x000C000, 0x000C000, 0x0034000, 0x0060000 },
     { 0x12, 0x002C000, 0x0010000, 0x0070000, 0x0064000 },
     { 0x12, 0x0018000, 0x0018000, 0x0068000, 0x00C0000 },
     { 0x13, 0x0058000, 0x0020000, 0x00E0000, 0x00C8000 },
     { 0x13, 0x0030000, 0x0030000, 0x00D0000, 0x0180000 },
     { 0x14, 0x00B0000, 0x0040000, 0x01C0000, 0x0190000 },
     { 0x14, 0x0060000, 0x0060000, 0x01A0000, 0x0300000 },
     { 0x15, 0x0160000, 0x0080000, 0x0380000, 0x0320000 },
     { 0x15, 0x00C0000, 0x00C0000, 0x0340000, 0x0600000 },
     { 0x16, 0x02C0000, 0x0100000, 0x0700000, 0x0640000 },
     { 0x16, 0x0180000, 0x0180000, 0x0680000, 0x0C00000 },
     { 0x17, 0x0580000, 0x0200000, 0x0E00000, 0x0C80000 },
     { 0x17, 0x0300000, 0x0300000, 0x0D00000, 0x1800000 },
     { 0x18, 0x0B00000, 0x0400000, 0x1C00000, 0x1900000 },
     { 0x18, 0x0600000, 0x0600000, 0x1A00000, 0x3000000 },
     { 0x19, 0x1600000, 0x0800000, 0x3800000, 0x3200000 },
     { 0x19, 0x0C00000, 0x0C00000, 0x3400000, 0x6000000 },
     { 0x1A, 0x2C00000, 0x1000000, 0x7000000, 0x6400000 },
     { 0x1A, 0x1800000, 0x1800000, 0x6800000, 0xC000000 },
 };
 
1c779854
 static int set_bps_params(AVCodecContext *avctx)
d7a47392
 {
1c779854
     switch (avctx->bits_per_raw_sample) {
d7a47392
     case 8:
         avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
         break;
     case 16:
         avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
         break;
     case 24:
         avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
         break;
4dcf71aa
     default:
cef28b56
         av_log(avctx, AV_LOG_ERROR, "invalid/unsupported bits per sample: %d\n",
                avctx->bits_per_raw_sample);
4dcf71aa
         return AVERROR_INVALIDDATA;
d7a47392
     }
4dcf71aa
 
     return 0;
d7a47392
 }
 
1c779854
 static void set_sample_rate_params(AVCodecContext *avctx)
d7a47392
 {
1c779854
     TAKDecContext *s  = avctx->priv_data;
7a0aee16
     int shift;
 
     if (avctx->sample_rate < 11025) {
         shift = 3;
     } else if (avctx->sample_rate < 22050) {
         shift = 2;
     } else if (avctx->sample_rate < 44100) {
         shift = 1;
     } else {
         shift = 0;
     }
e02dedf2
     s->uval           = FFALIGN(avctx->sample_rate + 511LL >> 9, 4) << shift;
     s->subframe_scale = FFALIGN(avctx->sample_rate + 511LL >> 9, 4) << 1;
d7a47392
 }
 
 static av_cold int tak_decode_init(AVCodecContext *avctx)
 {
     TAKDecContext *s = avctx->priv_data;
 
9a9e2f1c
     ff_audiodsp_init(&s->adsp);
35af7add
     ff_takdsp_init(&s->tdsp);
d7a47392
 
     s->avctx = avctx;
1c779854
     avctx->bits_per_raw_sample = avctx->bits_per_coded_sample;
d7a47392
 
1c779854
     set_sample_rate_params(avctx);
d7a47392
 
1c779854
     return set_bps_params(avctx);
d7a47392
 }
 
 static void decode_lpc(int32_t *coeffs, int mode, int length)
 {
cef28b56
     int i;
d7a47392
 
     if (length < 2)
         return;
 
     if (mode == 1) {
f95f9f97
         unsigned a1 = *coeffs++;
cef28b56
         for (i = 0; i < length - 1 >> 1; i++) {
d7a47392
             *coeffs   += a1;
5d31f03a
             coeffs[1] += (unsigned)*coeffs;
cef28b56
             a1         = coeffs[1];
d7a47392
             coeffs    += 2;
         }
cef28b56
         if (length - 1 & 1)
d7a47392
             *coeffs += a1;
     } else if (mode == 2) {
f95f9f97
         unsigned a1    = coeffs[1];
         unsigned a2    = a1 + *coeffs;
d7a47392
         coeffs[1] = a2;
         if (length > 2) {
             coeffs += 2;
cef28b56
             for (i = 0; i < length - 2 >> 1; i++) {
f95f9f97
                 unsigned a3    = *coeffs + a1;
                 unsigned a4    = a3 + a2;
d7a47392
                 *coeffs   = a4;
cef28b56
                 a1        = coeffs[1] + a3;
                 a2        = a1 + a4;
d7a47392
                 coeffs[1] = a2;
                 coeffs   += 2;
             }
             if (length & 1)
cef28b56
                 *coeffs += a1 + a2;
d7a47392
         }
     } else if (mode == 3) {
f95f9f97
         unsigned a1    = coeffs[1];
         unsigned a2    = a1 + *coeffs;
d7a47392
         coeffs[1] = a2;
         if (length > 2) {
f95f9f97
             unsigned a3  = coeffs[2];
             unsigned a4  = a3 + a1;
             unsigned a5  = a4 + a2;
38797a80
             coeffs[2] = a5;
d7a47392
             coeffs += 3;
             for (i = 0; i < length - 3; i++) {
cef28b56
                 a3     += *coeffs;
                 a4     += a3;
                 a5     += a4;
d7a47392
                 *coeffs = a5;
                 coeffs++;
             }
         }
     }
 }
 
cef28b56
 static int decode_segment(TAKDecContext *s, int8_t mode, int32_t *decoded, int len)
d7a47392
 {
cef28b56
     struct CParam code;
d7a47392
     GetBitContext *gb = &s->gb;
cef28b56
     int i;
d7a47392
 
cef28b56
     if (!mode) {
         memset(decoded, 0, len * sizeof(*decoded));
         return 0;
     }
d7a47392
 
cef28b56
     if (mode > FF_ARRAY_ELEMS(xcodes))
         return AVERROR_INVALIDDATA;
     code = xcodes[mode - 1];
 
     for (i = 0; i < len; i++) {
955db411
         unsigned x = get_bits_long(gb, code.init);
cef28b56
         if (x >= code.escape && get_bits1(gb)) {
             x |= 1 << code.init;
             if (x >= code.aescape) {
955db411
                 unsigned scale = get_unary(gb, 1, 9);
cef28b56
                 if (scale == 9) {
                     int scale_bits = get_bits(gb, 3);
                     if (scale_bits > 0) {
                         if (scale_bits == 7) {
                             scale_bits += get_bits(gb, 5);
                             if (scale_bits > 29)
                                 return AVERROR_INVALIDDATA;
                         }
                         scale = get_bits_long(gb, scale_bits) + 1;
                         x    += code.scale * scale;
d7a47392
                     }
cef28b56
                     x += code.bias;
                 } else
                     x += code.scale * scale - code.escape;
             } else
                 x -= code.escape;
         }
         decoded[i] = (x >> 1) ^ -(x & 1);
d7a47392
     }
 
     return 0;
 }
 
cef28b56
 static int decode_residues(TAKDecContext *s, int32_t *decoded, int length)
d7a47392
 {
     GetBitContext *gb = &s->gb;
cef28b56
     int i, mode, ret;
d7a47392
 
     if (length > s->nb_samples)
         return AVERROR_INVALIDDATA;
 
     if (get_bits1(gb)) {
cef28b56
         int wlength, rval;
d7a47392
 
cef28b56
         wlength = length / s->uval;
 
         rval = length - (wlength * s->uval);
 
         if (rval < s->uval / 2)
             rval += s->uval;
         else
             wlength++;
 
         if (wlength <= 1 || wlength > 128)
d7a47392
             return AVERROR_INVALIDDATA;
 
cef28b56
         s->coding_mode[0] = mode = get_bits(gb, 6);
d7a47392
 
cef28b56
         for (i = 1; i < wlength; i++) {
             int c = get_unary(gb, 1, 6);
d7a47392
 
cef28b56
             switch (c) {
             case 6:
                 mode = get_bits(gb, 6);
                 break;
             case 5:
             case 4:
             case 3: {
                 /* mode += sign ? (1 - c) : (c - 1) */
                 int sign = get_bits1(gb);
                 mode    += (-sign ^ (c - 1)) + sign;
                 break;
d7a47392
             }
cef28b56
             case 2:
                 mode++;
                 break;
             case 1:
                 mode--;
                 break;
             }
             s->coding_mode[i] = mode;
d7a47392
         }
 
         i = 0;
cef28b56
         while (i < wlength) {
d7a47392
             int len = 0;
 
cef28b56
             mode = s->coding_mode[i];
d7a47392
             do {
cef28b56
                 if (i >= wlength - 1)
                     len += rval;
                 else
                     len += s->uval;
d7a47392
                 i++;
 
cef28b56
                 if (i == wlength)
d7a47392
                     break;
cef28b56
             } while (s->coding_mode[i] == mode);
d7a47392
 
cef28b56
             if ((ret = decode_segment(s, mode, decoded, len)) < 0)
d7a47392
                 return ret;
cef28b56
             decoded += len;
d7a47392
         }
     } else {
cef28b56
         mode = get_bits(gb, 6);
         if ((ret = decode_segment(s, mode, decoded, length)) < 0)
d7a47392
             return ret;
     }
 
     return 0;
 }
 
6777aa63
 static int get_bits_esc4(GetBitContext *gb)
d7a47392
 {
     if (get_bits1(gb))
         return get_bits(gb, 4) + 1;
     else
         return 0;
 }
 
cef28b56
 static int decode_subframe(TAKDecContext *s, int32_t *decoded,
                            int subframe_size, int prev_subframe_size)
d7a47392
 {
cef28b56
     GetBitContext *gb = &s->gb;
7dbc27dc
     int x, y, i, j, ret = 0;
03616af2
     int dshift, size, filter_quant, filter_order;
d7a47392
     int tfilter[MAX_PREDICTORS];
 
cef28b56
     if (!get_bits1(gb))
         return decode_residues(s, decoded, subframe_size);
d7a47392
 
cef28b56
     filter_order = predictor_sizes[get_bits(gb, 4)];
d7a47392
 
cef28b56
     if (prev_subframe_size > 0 && get_bits1(gb)) {
         if (filter_order > prev_subframe_size)
             return AVERROR_INVALIDDATA;
d7a47392
 
cef28b56
         decoded       -= filter_order;
         subframe_size += filter_order;
d7a47392
 
cef28b56
         if (filter_order > subframe_size)
             return AVERROR_INVALIDDATA;
     } else {
         int lpc_mode;
d7a47392
 
cef28b56
         if (filter_order > subframe_size)
             return AVERROR_INVALIDDATA;
d7a47392
 
cef28b56
         lpc_mode = get_bits(gb, 2);
         if (lpc_mode > 2)
             return AVERROR_INVALIDDATA;
d7a47392
 
cef28b56
         if ((ret = decode_residues(s, decoded, filter_order)) < 0)
             return ret;
d7a47392
 
cef28b56
         if (lpc_mode)
             decode_lpc(decoded, lpc_mode, filter_order);
     }
d7a47392
 
cef28b56
     dshift = get_bits_esc4(gb);
     size   = get_bits1(gb) + 6;
d7a47392
 
cef28b56
     filter_quant = 10;
     if (get_bits1(gb)) {
         filter_quant -= get_bits(gb, 3) + 1;
         if (filter_quant < 3)
             return AVERROR_INVALIDDATA;
     }
d7a47392
 
cef28b56
     s->predictors[0] = get_sbits(gb, 10);
     s->predictors[1] = get_sbits(gb, 10);
c5d2fa2f
     s->predictors[2] = get_sbits(gb, size) * (1 << (10 - size));
     s->predictors[3] = get_sbits(gb, size) * (1 << (10 - size));
cef28b56
     if (filter_order > 4) {
7dbc27dc
         int tmp = size - get_bits1(gb);
cef28b56
 
         for (i = 4; i < filter_order; i++) {
             if (!(i & 3))
                 x = tmp - get_bits(gb, 2);
c5d2fa2f
             s->predictors[i] = get_sbits(gb, x) * (1 << (10 - size));
d7a47392
         }
cef28b56
     }
d7a47392
 
c5d2fa2f
     tfilter[0] = s->predictors[0] * 64;
cef28b56
     for (i = 1; i < filter_order; i++) {
64d0dad9
         uint32_t *p1 = &tfilter[0];
         uint32_t *p2 = &tfilter[i - 1];
d7a47392
 
cef28b56
         for (j = 0; j < (i + 1) / 2; j++) {
64d0dad9
             x     = *p1 + ((int32_t)(s->predictors[i] * *p2 + 256) >> 9);
             *p2  += (int32_t)(s->predictors[i] * *p1 + 256) >> 9;
cef28b56
             *p1++ = x;
             p2--;
         }
d7a47392
 
c5d2fa2f
         tfilter[i] = s->predictors[i] * 64;
cef28b56
     }
d7a47392
 
cef28b56
     x = 1 << (32 - (15 - filter_quant));
     y = 1 << ((15 - filter_quant) - 1);
     for (i = 0, j = filter_order - 1; i < filter_order / 2; i++, j--) {
         s->filter[j] = x - ((tfilter[i] + y) >> (15 - filter_quant));
         s->filter[i] = x - ((tfilter[j] + y) >> (15 - filter_quant));
     }
d7a47392
 
cef28b56
     if ((ret = decode_residues(s, &decoded[filter_order],
                                subframe_size - filter_order)) < 0)
         return ret;
d7a47392
 
cef28b56
     for (i = 0; i < filter_order; i++)
         s->residues[i] = *decoded++ >> dshift;
 
     y    = FF_ARRAY_ELEMS(s->residues) - filter_order;
     x    = subframe_size - filter_order;
     while (x > 0) {
7dbc27dc
         int tmp = FFMIN(y, x);
cef28b56
 
         for (i = 0; i < tmp; i++) {
             int v = 1 << (filter_quant - 1);
 
03616af2
             if (filter_order & -16)
0c2ef4f6
                 v += (unsigned)s->adsp.scalarproduct_int16(&s->residues[i], s->filter,
03616af2
                                                  filter_order & -16);
             for (j = filter_order & -16; j < filter_order; j += 4) {
3dabb9c6
                 v += s->residues[i + j + 3] * (unsigned)s->filter[j + 3] +
                      s->residues[i + j + 2] * (unsigned)s->filter[j + 2] +
                      s->residues[i + j + 1] * (unsigned)s->filter[j + 1] +
                      s->residues[i + j    ] * (unsigned)s->filter[j    ];
03616af2
             }
2c630d15
             v = (av_clip_intp2(v >> filter_quant, 13) * (1 << dshift)) - (unsigned)*decoded;
cef28b56
             *decoded++ = v;
             s->residues[filter_order + i] = v >> dshift;
d7a47392
         }
 
cef28b56
         x -= tmp;
         if (x > 0)
             memcpy(s->residues, &s->residues[y], 2 * filter_order);
d7a47392
     }
 
cef28b56
     emms_c();
 
     return 0;
d7a47392
 }
 
 static int decode_channel(TAKDecContext *s, int chan)
 {
     AVCodecContext *avctx = s->avctx;
cef28b56
     GetBitContext *gb     = &s->gb;
     int32_t *decoded      = s->decoded[chan];
     int left              = s->nb_samples - 1;
d7a47392
     int i = 0, ret, prev = 0;
 
6777aa63
     s->sample_shift[chan] = get_bits_esc4(gb);
56519d7d
     if (s->sample_shift[chan] >= avctx->bits_per_raw_sample)
d7a47392
         return AVERROR_INVALIDDATA;
 
cef28b56
     *decoded++ = get_sbits(gb, avctx->bits_per_raw_sample - s->sample_shift[chan]);
d7a47392
     s->lpc_mode[chan] = get_bits(gb, 2);
     s->nb_subframes   = get_bits(gb, 3) + 1;
 
     if (s->nb_subframes > 1) {
         if (get_bits_left(gb) < (s->nb_subframes - 1) * 6)
             return AVERROR_INVALIDDATA;
 
         for (; i < s->nb_subframes - 1; i++) {
             int v = get_bits(gb, 6);
 
             s->subframe_len[i] = (v - prev) * s->subframe_scale;
             if (s->subframe_len[i] <= 0)
                 return AVERROR_INVALIDDATA;
 
             left -= s->subframe_len[i];
             prev  = v;
         }
 
         if (left <= 0)
             return AVERROR_INVALIDDATA;
     }
     s->subframe_len[i] = left;
cef28b56
 
d7a47392
     prev = 0;
     for (i = 0; i < s->nb_subframes; i++) {
cef28b56
         if ((ret = decode_subframe(s, decoded, s->subframe_len[i], prev)) < 0)
d7a47392
             return ret;
cef28b56
         decoded += s->subframe_len[i];
         prev     = s->subframe_len[i];
d7a47392
     }
 
     return 0;
 }
 
 static int decorrelate(TAKDecContext *s, int c1, int c2, int length)
 {
cef28b56
     GetBitContext *gb = &s->gb;
35af7add
     int32_t *p1       = s->decoded[c1] + (s->dmode > 5);
     int32_t *p2       = s->decoded[c2] + (s->dmode > 5);
     int32_t bp1       = p1[0];
     int32_t bp2       = p2[0];
cef28b56
     int i;
     int dshift, dfactor;
d7a47392
 
35af7add
     length += s->dmode < 6;
 
d7a47392
     switch (s->dmode) {
cef28b56
     case 1: /* left/side */
35af7add
         s->tdsp.decorrelate_ls(p1, p2, length);
d7a47392
         break;
cef28b56
     case 2: /* side/right */
35af7add
         s->tdsp.decorrelate_sr(p1, p2, length);
d7a47392
         break;
cef28b56
     case 3: /* side/mid */
35af7add
         s->tdsp.decorrelate_sm(p1, p2, length);
d7a47392
         break;
cef28b56
     case 4: /* side/left with scale factor */
         FFSWAP(int32_t*, p1, p2);
35af7add
         FFSWAP(int32_t, bp1, bp2);
cef28b56
     case 5: /* side/right with scale factor */
         dshift  = get_bits_esc4(gb);
         dfactor = get_sbits(gb, 10);
35af7add
         s->tdsp.decorrelate_sf(p1, p2, length, dshift, dfactor);
d7a47392
         break;
     case 6:
cef28b56
         FFSWAP(int32_t*, p1, p2);
     case 7: {
         int length2, order_half, filter_order, dval1, dval2;
         int tmp, x, code_size;
 
d7a47392
         if (length < 256)
             return AVERROR_INVALIDDATA;
 
cef28b56
         dshift       = get_bits_esc4(gb);
         filter_order = 8 << get_bits1(gb);
         dval1        = get_bits1(gb);
         dval2        = get_bits1(gb);
 
         for (i = 0; i < filter_order; i++) {
             if (!(i & 3))
                 code_size = 14 - get_bits(gb, 3);
             s->filter[i] = get_sbits(gb, code_size);
         }
 
         order_half = filter_order / 2;
         length2    = length - (filter_order - 1);
d7a47392
 
cef28b56
         /* decorrelate beginning samples */
         if (dval1) {
             for (i = 0; i < order_half; i++) {
                 int32_t a = p1[i];
                 int32_t b = p2[i];
                 p1[i]     = a + b;
             }
d7a47392
         }
 
cef28b56
         /* decorrelate ending samples */
         if (dval2) {
             for (i = length2 + order_half; i < length; i++) {
                 int32_t a = p1[i];
                 int32_t b = p2[i];
                 p1[i]     = a + b;
             }
d7a47392
         }
 
 
cef28b56
         for (i = 0; i < filter_order; i++)
             s->residues[i] = *p2++ >> dshift;
 
         p1 += order_half;
         x = FF_ARRAY_ELEMS(s->residues) - filter_order;
         for (; length2 > 0; length2 -= tmp) {
             tmp = FFMIN(length2, x);
d7a47392
 
08b52063
             for (i = 0; i < tmp - (tmp == length2); i++)
cef28b56
                 s->residues[filter_order + i] = *p2++ >> dshift;
d7a47392
 
             for (i = 0; i < tmp; i++) {
cef28b56
                 int v = 1 << 9;
d7a47392
 
03616af2
                 if (filter_order == 16) {
                     v += s->adsp.scalarproduct_int16(&s->residues[i], s->filter,
                                                      filter_order);
                 } else {
                     v += s->residues[i + 7] * s->filter[7] +
                          s->residues[i + 6] * s->filter[6] +
                          s->residues[i + 5] * s->filter[5] +
                          s->residues[i + 4] * s->filter[4] +
                          s->residues[i + 3] * s->filter[3] +
                          s->residues[i + 2] * s->filter[2] +
                          s->residues[i + 1] * s->filter[1] +
                          s->residues[i    ] * s->filter[0];
                 }
 
da76ca55
                 v = av_clip_intp2(v >> 10, 13) * (1U << dshift) - *p1;
4c751528
                 *p1++ = v;
d7a47392
             }
 
7cea3430
             memmove(s->residues, &s->residues[tmp], 2 * filter_order);
d7a47392
         }
 
         emms_c();
         break;
     }
cef28b56
     }
d7a47392
 
35af7add
     if (s->dmode > 0 && s->dmode < 6) {
         p1[0] = bp1;
         p2[0] = bp2;
     }
 
d7a47392
     return 0;
 }
 
 static int tak_decode_frame(AVCodecContext *avctx, void *data,
                             int *got_frame_ptr, AVPacket *pkt)
 {
cef28b56
     TAKDecContext *s  = avctx->priv_data;
4a2b26fc
     AVFrame *frame    = data;
d9704464
     ThreadFrame tframe = { .f = data };
d7a47392
     GetBitContext *gb = &s->gb;
     int chan, i, ret, hsize;
 
     if (pkt->size < TAK_MIN_FRAME_HEADER_BYTES)
         return AVERROR_INVALIDDATA;
 
9efceaf1
     if ((ret = init_get_bits8(gb, pkt->data, pkt->size)) < 0)
         return ret;
d7a47392
 
     if ((ret = ff_tak_decode_frame_header(avctx, gb, &s->ti, 0)) < 0)
         return ret;
 
ce4ae184
     hsize = get_bits_count(gb) / 8;
2886d6cb
     if (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_COMPLIANT)) {
d7a47392
         if (ff_tak_check_crc(pkt->data, hsize)) {
             av_log(avctx, AV_LOG_ERROR, "CRC error\n");
23a211cb
             if (avctx->err_recognition & AV_EF_EXPLODE)
                 return AVERROR_INVALIDDATA;
d7a47392
         }
     }
 
cef28b56
     if (s->ti.codec != TAK_CODEC_MONO_STEREO &&
         s->ti.codec != TAK_CODEC_MULTICHANNEL) {
67deba8a
         avpriv_report_missing_feature(avctx, "TAK codec type %d", s->ti.codec);
d7a47392
         return AVERROR_PATCHWELCOME;
     }
     if (s->ti.data_type) {
cef28b56
         av_log(avctx, AV_LOG_ERROR,
                "unsupported data type: %d\n", s->ti.data_type);
d7a47392
         return AVERROR_INVALIDDATA;
     }
cef28b56
     if (s->ti.codec == TAK_CODEC_MONO_STEREO && s->ti.channels > 2) {
         av_log(avctx, AV_LOG_ERROR,
                "invalid number of channels: %d\n", s->ti.channels);
d7a47392
         return AVERROR_INVALIDDATA;
     }
     if (s->ti.channels > 6) {
cef28b56
         av_log(avctx, AV_LOG_ERROR,
                "unsupported number of channels: %d\n", s->ti.channels);
d7a47392
         return AVERROR_INVALIDDATA;
     }
 
     if (s->ti.frame_samples <= 0) {
         av_log(avctx, AV_LOG_ERROR, "unsupported/invalid number of samples\n");
         return AVERROR_INVALIDDATA;
     }
 
f58eab15
     avctx->bits_per_raw_sample = s->ti.bps;
     if ((ret = set_bps_params(avctx)) < 0)
         return ret;
d7a47392
     if (s->ti.sample_rate != avctx->sample_rate) {
         avctx->sample_rate = s->ti.sample_rate;
1c779854
         set_sample_rate_params(avctx);
d7a47392
     }
     if (s->ti.ch_layout)
         avctx->channel_layout = s->ti.ch_layout;
     avctx->channels = s->ti.channels;
 
cef28b56
     s->nb_samples = s->ti.last_frame_samples ? s->ti.last_frame_samples
                                              : s->ti.frame_samples;
d7a47392
 
4a2b26fc
     frame->nb_samples = s->nb_samples;
d9704464
     if ((ret = ff_thread_get_buffer(avctx, &tframe, 0)) < 0)
d7a47392
         return ret;
d9704464
     ff_thread_finish_setup(avctx);
d7a47392
 
56519d7d
     if (avctx->bits_per_raw_sample <= 16) {
f8d68822
         int buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
                                                   s->nb_samples,
                                                   AV_SAMPLE_FMT_S32P, 0);
5ac06633
         if (buf_size < 0)
             return buf_size;
f8d68822
         av_fast_malloc(&s->decode_buffer, &s->decode_buffer_size, buf_size);
d7a47392
         if (!s->decode_buffer)
             return AVERROR(ENOMEM);
f8d68822
         ret = av_samples_fill_arrays((uint8_t **)s->decoded, NULL,
                                      s->decode_buffer, avctx->channels,
                                      s->nb_samples, AV_SAMPLE_FMT_S32P, 0);
         if (ret < 0)
             return ret;
d7a47392
     } else {
         for (chan = 0; chan < avctx->channels; chan++)
4a2b26fc
             s->decoded[chan] = (int32_t *)frame->extended_data[chan];
d7a47392
     }
 
     if (s->nb_samples < 16) {
         for (chan = 0; chan < avctx->channels; chan++) {
cef28b56
             int32_t *decoded = s->decoded[chan];
d7a47392
             for (i = 0; i < s->nb_samples; i++)
cef28b56
                 decoded[i] = get_sbits(gb, avctx->bits_per_raw_sample);
d7a47392
         }
     } else {
cef28b56
         if (s->ti.codec == TAK_CODEC_MONO_STEREO) {
             for (chan = 0; chan < avctx->channels; chan++)
d7a47392
                 if (ret = decode_channel(s, chan))
                     return ret;
 
             if (avctx->channels == 2) {
                 s->nb_subframes = get_bits(gb, 1) + 1;
cef28b56
                 if (s->nb_subframes > 1) {
d7a47392
                     s->subframe_len[1] = get_bits(gb, 6);
cef28b56
                 }
d7a47392
 
                 s->dmode = get_bits(gb, 3);
                 if (ret = decorrelate(s, 0, 1, s->nb_samples - 1))
                     return ret;
             }
cef28b56
         } else if (s->ti.codec == TAK_CODEC_MULTICHANNEL) {
d7a47392
             if (get_bits1(gb)) {
                 int ch_mask = 0;
 
                 chan = get_bits(gb, 4) + 1;
                 if (chan > avctx->channels)
                     return AVERROR_INVALIDDATA;
 
                 for (i = 0; i < chan; i++) {
                     int nbit = get_bits(gb, 4);
 
                     if (nbit >= avctx->channels)
                         return AVERROR_INVALIDDATA;
 
                     if (ch_mask & 1 << nbit)
                         return AVERROR_INVALIDDATA;
 
                     s->mcdparams[i].present = get_bits1(gb);
                     if (s->mcdparams[i].present) {
                         s->mcdparams[i].index = get_bits(gb, 2);
                         s->mcdparams[i].chan2 = get_bits(gb, 4);
05c57ba2
                         if (s->mcdparams[i].chan2 >= avctx->channels) {
                             av_log(avctx, AV_LOG_ERROR,
                                    "invalid channel 2 (%d) for %d channel(s)\n",
                                    s->mcdparams[i].chan2, avctx->channels);
                             return AVERROR_INVALIDDATA;
                         }
d7a47392
                         if (s->mcdparams[i].index == 1) {
                             if ((nbit == s->mcdparams[i].chan2) ||
                                 (ch_mask & 1 << s->mcdparams[i].chan2))
                                 return AVERROR_INVALIDDATA;
 
                             ch_mask |= 1 << s->mcdparams[i].chan2;
                         } else if (!(ch_mask & 1 << s->mcdparams[i].chan2)) {
                             return AVERROR_INVALIDDATA;
                         }
                     }
                     s->mcdparams[i].chan1 = nbit;
 
                     ch_mask |= 1 << nbit;
                 }
             } else {
                 chan = avctx->channels;
                 for (i = 0; i < chan; i++) {
                     s->mcdparams[i].present = 0;
                     s->mcdparams[i].chan1   = i;
                 }
             }
 
             for (i = 0; i < chan; i++) {
cef28b56
                 if (s->mcdparams[i].present && s->mcdparams[i].index == 1)
d7a47392
                     if (ret = decode_channel(s, s->mcdparams[i].chan2))
                         return ret;
 
                 if (ret = decode_channel(s, s->mcdparams[i].chan1))
                     return ret;
 
                 if (s->mcdparams[i].present) {
                     s->dmode = mc_dmodes[s->mcdparams[i].index];
cef28b56
                     if (ret = decorrelate(s,
                                           s->mcdparams[i].chan2,
                                           s->mcdparams[i].chan1,
                                           s->nb_samples - 1))
d7a47392
                         return ret;
                 }
             }
         }
 
         for (chan = 0; chan < avctx->channels; chan++) {
cef28b56
             int32_t *decoded = s->decoded[chan];
 
             if (s->lpc_mode[chan])
                 decode_lpc(decoded, s->lpc_mode[chan], s->nb_samples);
d7a47392
 
cef28b56
             if (s->sample_shift[chan] > 0)
d7a47392
                 for (i = 0; i < s->nb_samples; i++)
e4efd41b
                     decoded[i] *= 1U << s->sample_shift[chan];
d7a47392
         }
     }
 
     align_get_bits(gb);
     skip_bits(gb, 24);
     if (get_bits_left(gb) < 0)
         av_log(avctx, AV_LOG_DEBUG, "overread\n");
     else if (get_bits_left(gb) > 0)
         av_log(avctx, AV_LOG_DEBUG, "underread\n");
 
2886d6cb
     if (avctx->err_recognition & (AV_EF_CRCCHECK | AV_EF_COMPLIANT)) {
d7a47392
         if (ff_tak_check_crc(pkt->data + hsize,
                              get_bits_count(gb) / 8 - hsize)) {
             av_log(avctx, AV_LOG_ERROR, "CRC error\n");
23a211cb
             if (avctx->err_recognition & AV_EF_EXPLODE)
                 return AVERROR_INVALIDDATA;
d7a47392
         }
     }
 
cef28b56
     /* convert to output buffer */
     switch (avctx->sample_fmt) {
     case AV_SAMPLE_FMT_U8P:
d7a47392
         for (chan = 0; chan < avctx->channels; chan++) {
4a2b26fc
             uint8_t *samples = (uint8_t *)frame->extended_data[chan];
cef28b56
             int32_t *decoded = s->decoded[chan];
             for (i = 0; i < s->nb_samples; i++)
27c20068
                 samples[i] = decoded[i] + 0x80U;
d7a47392
         }
         break;
cef28b56
     case AV_SAMPLE_FMT_S16P:
d7a47392
         for (chan = 0; chan < avctx->channels; chan++) {
4a2b26fc
             int16_t *samples = (int16_t *)frame->extended_data[chan];
cef28b56
             int32_t *decoded = s->decoded[chan];
             for (i = 0; i < s->nb_samples; i++)
                 samples[i] = decoded[i];
d7a47392
         }
         break;
cef28b56
     case AV_SAMPLE_FMT_S32P:
d7a47392
         for (chan = 0; chan < avctx->channels; chan++) {
4a2b26fc
             int32_t *samples = (int32_t *)frame->extended_data[chan];
d7a47392
             for (i = 0; i < s->nb_samples; i++)
e4efd41b
                 samples[i] *= 1U << 8;
d7a47392
         }
         break;
     }
 
4a2b26fc
     *got_frame_ptr = 1;
d7a47392
 
     return pkt->size;
 }
 
2cbaa078
 #if HAVE_THREADS
ff0bdf93
 static int init_thread_copy(AVCodecContext *avctx)
 {
     TAKDecContext *s = avctx->priv_data;
     s->avctx = avctx;
     return 0;
 }
 
d9704464
 static int update_thread_context(AVCodecContext *dst,
                                  const AVCodecContext *src)
 {
     TAKDecContext *tsrc = src->priv_data;
     TAKDecContext *tdst = dst->priv_data;
 
     if (dst == src)
         return 0;
     memcpy(&tdst->ti, &tsrc->ti, sizeof(TAKStreamInfo));
     return 0;
 }
2cbaa078
 #endif
d9704464
 
d7a47392
 static av_cold int tak_decode_close(AVCodecContext *avctx)
 {
     TAKDecContext *s = avctx->priv_data;
 
     av_freep(&s->decode_buffer);
 
     return 0;
 }
 
 AVCodec ff_tak_decoder = {
cef28b56
     .name             = "tak",
b2bed932
     .long_name        = NULL_IF_CONFIG_SMALL("TAK (Tom's lossless Audio Kompressor)"),
cef28b56
     .type             = AVMEDIA_TYPE_AUDIO,
     .id               = AV_CODEC_ID_TAK,
     .priv_data_size   = sizeof(TAKDecContext),
     .init             = tak_decode_init,
     .close            = tak_decode_close,
     .decode           = tak_decode_frame,
ff0bdf93
     .init_thread_copy = ONLY_IF_THREADS_ENABLED(init_thread_copy),
61d900fd
     .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
444e9874
     .capabilities     = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
cef28b56
     .sample_fmts      = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
                                                         AV_SAMPLE_FMT_S16P,
                                                         AV_SAMPLE_FMT_S32P,
                                                         AV_SAMPLE_FMT_NONE },
d7a47392
 };