]> git.sesse.net Git - ffmpeg/blob - libavcodec/takdec.c
Merge commit '0c6a70873fc6e43194b471d112c30823b6c8d0b4'
[ffmpeg] / libavcodec / takdec.c
1 /*
2  * TAK decoder
3  * Copyright (c) 2012 Paul B Mahol
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * TAK (Tom's lossless Audio Kompressor) decoder
25  * @author Paul B Mahol
26  */
27
28 #include "libavutil/internal.h"
29 #include "libavutil/samplefmt.h"
30 #include "tak.h"
31 #include "takdsp.h"
32 #include "audiodsp.h"
33 #include "thread.h"
34 #include "avcodec.h"
35 #include "internal.h"
36 #include "unary.h"
37
38 #define MAX_SUBFRAMES     8                         ///< max number of subframes per channel
39 #define MAX_PREDICTORS  256
40
41 typedef struct MCDParam {
42     int8_t present;                                 ///< decorrelation parameter availability for this channel
43     int8_t index;                                   ///< index into array of decorrelation types
44     int8_t chan1;
45     int8_t chan2;
46 } MCDParam;
47
48 typedef struct TAKDecContext {
49     AVCodecContext *avctx;                          ///< parent AVCodecContext
50     AudioDSPContext adsp;
51     TAKDSPContext   tdsp;
52     TAKStreamInfo   ti;
53     GetBitContext   gb;                             ///< bitstream reader initialized to start at the current frame
54
55     int             uval;
56     int             nb_samples;                     ///< number of samples in the current frame
57     uint8_t        *decode_buffer;
58     unsigned int    decode_buffer_size;
59     int32_t        *decoded[TAK_MAX_CHANNELS];      ///< decoded samples for each channel
60
61     int8_t          lpc_mode[TAK_MAX_CHANNELS];
62     int8_t          sample_shift[TAK_MAX_CHANNELS]; ///< shift applied to every sample in the channel
63     int16_t         predictors[MAX_PREDICTORS];
64     int             nb_subframes;                   ///< number of subframes in the current frame
65     int16_t         subframe_len[MAX_SUBFRAMES];    ///< subframe length in samples
66     int             subframe_scale;
67
68     int8_t          dmode;                          ///< channel decorrelation type in the current frame
69
70     MCDParam        mcdparams[TAK_MAX_CHANNELS];    ///< multichannel decorrelation parameters
71
72     int8_t          coding_mode[128];
73     DECLARE_ALIGNED(16, int16_t, filter)[MAX_PREDICTORS];
74     DECLARE_ALIGNED(16, int16_t, residues)[544];
75 } TAKDecContext;
76
77 static const int8_t mc_dmodes[] = { 1, 3, 4, 6, };
78
79 static const uint16_t predictor_sizes[] = {
80     4, 8, 12, 16, 24, 32, 48, 64, 80, 96, 128, 160, 192, 224, 256, 0,
81 };
82
83 static const struct CParam {
84     int init;
85     int escape;
86     int scale;
87     int aescape;
88     int bias;
89 } xcodes[50] = {
90     { 0x01, 0x0000001, 0x0000001, 0x0000003, 0x0000008 },
91     { 0x02, 0x0000003, 0x0000001, 0x0000007, 0x0000006 },
92     { 0x03, 0x0000005, 0x0000002, 0x000000E, 0x000000D },
93     { 0x03, 0x0000003, 0x0000003, 0x000000D, 0x0000018 },
94     { 0x04, 0x000000B, 0x0000004, 0x000001C, 0x0000019 },
95     { 0x04, 0x0000006, 0x0000006, 0x000001A, 0x0000030 },
96     { 0x05, 0x0000016, 0x0000008, 0x0000038, 0x0000032 },
97     { 0x05, 0x000000C, 0x000000C, 0x0000034, 0x0000060 },
98     { 0x06, 0x000002C, 0x0000010, 0x0000070, 0x0000064 },
99     { 0x06, 0x0000018, 0x0000018, 0x0000068, 0x00000C0 },
100     { 0x07, 0x0000058, 0x0000020, 0x00000E0, 0x00000C8 },
101     { 0x07, 0x0000030, 0x0000030, 0x00000D0, 0x0000180 },
102     { 0x08, 0x00000B0, 0x0000040, 0x00001C0, 0x0000190 },
103     { 0x08, 0x0000060, 0x0000060, 0x00001A0, 0x0000300 },
104     { 0x09, 0x0000160, 0x0000080, 0x0000380, 0x0000320 },
105     { 0x09, 0x00000C0, 0x00000C0, 0x0000340, 0x0000600 },
106     { 0x0A, 0x00002C0, 0x0000100, 0x0000700, 0x0000640 },
107     { 0x0A, 0x0000180, 0x0000180, 0x0000680, 0x0000C00 },
108     { 0x0B, 0x0000580, 0x0000200, 0x0000E00, 0x0000C80 },
109     { 0x0B, 0x0000300, 0x0000300, 0x0000D00, 0x0001800 },
110     { 0x0C, 0x0000B00, 0x0000400, 0x0001C00, 0x0001900 },
111     { 0x0C, 0x0000600, 0x0000600, 0x0001A00, 0x0003000 },
112     { 0x0D, 0x0001600, 0x0000800, 0x0003800, 0x0003200 },
113     { 0x0D, 0x0000C00, 0x0000C00, 0x0003400, 0x0006000 },
114     { 0x0E, 0x0002C00, 0x0001000, 0x0007000, 0x0006400 },
115     { 0x0E, 0x0001800, 0x0001800, 0x0006800, 0x000C000 },
116     { 0x0F, 0x0005800, 0x0002000, 0x000E000, 0x000C800 },
117     { 0x0F, 0x0003000, 0x0003000, 0x000D000, 0x0018000 },
118     { 0x10, 0x000B000, 0x0004000, 0x001C000, 0x0019000 },
119     { 0x10, 0x0006000, 0x0006000, 0x001A000, 0x0030000 },
120     { 0x11, 0x0016000, 0x0008000, 0x0038000, 0x0032000 },
121     { 0x11, 0x000C000, 0x000C000, 0x0034000, 0x0060000 },
122     { 0x12, 0x002C000, 0x0010000, 0x0070000, 0x0064000 },
123     { 0x12, 0x0018000, 0x0018000, 0x0068000, 0x00C0000 },
124     { 0x13, 0x0058000, 0x0020000, 0x00E0000, 0x00C8000 },
125     { 0x13, 0x0030000, 0x0030000, 0x00D0000, 0x0180000 },
126     { 0x14, 0x00B0000, 0x0040000, 0x01C0000, 0x0190000 },
127     { 0x14, 0x0060000, 0x0060000, 0x01A0000, 0x0300000 },
128     { 0x15, 0x0160000, 0x0080000, 0x0380000, 0x0320000 },
129     { 0x15, 0x00C0000, 0x00C0000, 0x0340000, 0x0600000 },
130     { 0x16, 0x02C0000, 0x0100000, 0x0700000, 0x0640000 },
131     { 0x16, 0x0180000, 0x0180000, 0x0680000, 0x0C00000 },
132     { 0x17, 0x0580000, 0x0200000, 0x0E00000, 0x0C80000 },
133     { 0x17, 0x0300000, 0x0300000, 0x0D00000, 0x1800000 },
134     { 0x18, 0x0B00000, 0x0400000, 0x1C00000, 0x1900000 },
135     { 0x18, 0x0600000, 0x0600000, 0x1A00000, 0x3000000 },
136     { 0x19, 0x1600000, 0x0800000, 0x3800000, 0x3200000 },
137     { 0x19, 0x0C00000, 0x0C00000, 0x3400000, 0x6000000 },
138     { 0x1A, 0x2C00000, 0x1000000, 0x7000000, 0x6400000 },
139     { 0x1A, 0x1800000, 0x1800000, 0x6800000, 0xC000000 },
140 };
141
142 static int set_bps_params(AVCodecContext *avctx)
143 {
144     switch (avctx->bits_per_raw_sample) {
145     case 8:
146         avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
147         break;
148     case 16:
149         avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
150         break;
151     case 24:
152         avctx->sample_fmt = AV_SAMPLE_FMT_S32P;
153         break;
154     default:
155         av_log(avctx, AV_LOG_ERROR, "invalid/unsupported bits per sample: %d\n",
156                avctx->bits_per_raw_sample);
157         return AVERROR_INVALIDDATA;
158     }
159
160     return 0;
161 }
162
163 static void set_sample_rate_params(AVCodecContext *avctx)
164 {
165     TAKDecContext *s  = avctx->priv_data;
166     int shift;
167
168     if (avctx->sample_rate < 11025) {
169         shift = 3;
170     } else if (avctx->sample_rate < 22050) {
171         shift = 2;
172     } else if (avctx->sample_rate < 44100) {
173         shift = 1;
174     } else {
175         shift = 0;
176     }
177     s->uval           = FFALIGN(avctx->sample_rate + 511 >> 9, 4) << shift;
178     s->subframe_scale = FFALIGN(avctx->sample_rate + 511 >> 9, 4) << 1;
179 }
180
181 static av_cold int tak_decode_init(AVCodecContext *avctx)
182 {
183     TAKDecContext *s = avctx->priv_data;
184
185     ff_audiodsp_init(&s->adsp);
186     ff_takdsp_init(&s->tdsp);
187
188     s->avctx = avctx;
189     avctx->bits_per_raw_sample = avctx->bits_per_coded_sample;
190
191     set_sample_rate_params(avctx);
192
193     return set_bps_params(avctx);
194 }
195
196 static void decode_lpc(int32_t *coeffs, int mode, int length)
197 {
198     int i;
199
200     if (length < 2)
201         return;
202
203     if (mode == 1) {
204         int a1 = *coeffs++;
205         for (i = 0; i < length - 1 >> 1; i++) {
206             *coeffs   += a1;
207             coeffs[1] += *coeffs;
208             a1         = coeffs[1];
209             coeffs    += 2;
210         }
211         if (length - 1 & 1)
212             *coeffs += a1;
213     } else if (mode == 2) {
214         int a1    = coeffs[1];
215         int a2    = a1 + *coeffs;
216         coeffs[1] = a2;
217         if (length > 2) {
218             coeffs += 2;
219             for (i = 0; i < length - 2 >> 1; i++) {
220                 int a3    = *coeffs + a1;
221                 int a4    = a3 + a2;
222                 *coeffs   = a4;
223                 a1        = coeffs[1] + a3;
224                 a2        = a1 + a4;
225                 coeffs[1] = a2;
226                 coeffs   += 2;
227             }
228             if (length & 1)
229                 *coeffs += a1 + a2;
230         }
231     } else if (mode == 3) {
232         int a1    = coeffs[1];
233         int a2    = a1 + *coeffs;
234         coeffs[1] = a2;
235         if (length > 2) {
236             int a3  = coeffs[2];
237             int a4  = a3 + a1;
238             int a5  = a4 + a2;
239             coeffs += 3;
240             for (i = 0; i < length - 3; i++) {
241                 a3     += *coeffs;
242                 a4     += a3;
243                 a5     += a4;
244                 *coeffs = a5;
245                 coeffs++;
246             }
247         }
248     }
249 }
250
251 static int decode_segment(TAKDecContext *s, int8_t mode, int32_t *decoded, int len)
252 {
253     struct CParam code;
254     GetBitContext *gb = &s->gb;
255     int i;
256
257     if (!mode) {
258         memset(decoded, 0, len * sizeof(*decoded));
259         return 0;
260     }
261
262     if (mode > FF_ARRAY_ELEMS(xcodes))
263         return AVERROR_INVALIDDATA;
264     code = xcodes[mode - 1];
265
266     for (i = 0; i < len; i++) {
267         int x = get_bits_long(gb, code.init);
268         if (x >= code.escape && get_bits1(gb)) {
269             x |= 1 << code.init;
270             if (x >= code.aescape) {
271                 int scale = get_unary(gb, 1, 9);
272                 if (scale == 9) {
273                     int scale_bits = get_bits(gb, 3);
274                     if (scale_bits > 0) {
275                         if (scale_bits == 7) {
276                             scale_bits += get_bits(gb, 5);
277                             if (scale_bits > 29)
278                                 return AVERROR_INVALIDDATA;
279                         }
280                         scale = get_bits_long(gb, scale_bits) + 1;
281                         x    += code.scale * scale;
282                     }
283                     x += code.bias;
284                 } else
285                     x += code.scale * scale - code.escape;
286             } else
287                 x -= code.escape;
288         }
289         decoded[i] = (x >> 1) ^ -(x & 1);
290     }
291
292     return 0;
293 }
294
295 static int decode_residues(TAKDecContext *s, int32_t *decoded, int length)
296 {
297     GetBitContext *gb = &s->gb;
298     int i, mode, ret;
299
300     if (length > s->nb_samples)
301         return AVERROR_INVALIDDATA;
302
303     if (get_bits1(gb)) {
304         int wlength, rval;
305
306         wlength = length / s->uval;
307
308         rval = length - (wlength * s->uval);
309
310         if (rval < s->uval / 2)
311             rval += s->uval;
312         else
313             wlength++;
314
315         if (wlength <= 1 || wlength > 128)
316             return AVERROR_INVALIDDATA;
317
318         s->coding_mode[0] = mode = get_bits(gb, 6);
319
320         for (i = 1; i < wlength; i++) {
321             int c = get_unary(gb, 1, 6);
322
323             switch (c) {
324             case 6:
325                 mode = get_bits(gb, 6);
326                 break;
327             case 5:
328             case 4:
329             case 3: {
330                 /* mode += sign ? (1 - c) : (c - 1) */
331                 int sign = get_bits1(gb);
332                 mode    += (-sign ^ (c - 1)) + sign;
333                 break;
334             }
335             case 2:
336                 mode++;
337                 break;
338             case 1:
339                 mode--;
340                 break;
341             }
342             s->coding_mode[i] = mode;
343         }
344
345         i = 0;
346         while (i < wlength) {
347             int len = 0;
348
349             mode = s->coding_mode[i];
350             do {
351                 if (i >= wlength - 1)
352                     len += rval;
353                 else
354                     len += s->uval;
355                 i++;
356
357                 if (i == wlength)
358                     break;
359             } while (s->coding_mode[i] == mode);
360
361             if ((ret = decode_segment(s, mode, decoded, len)) < 0)
362                 return ret;
363             decoded += len;
364         }
365     } else {
366         mode = get_bits(gb, 6);
367         if ((ret = decode_segment(s, mode, decoded, length)) < 0)
368             return ret;
369     }
370
371     return 0;
372 }
373
374 static int get_bits_esc4(GetBitContext *gb)
375 {
376     if (get_bits1(gb))
377         return get_bits(gb, 4) + 1;
378     else
379         return 0;
380 }
381
382 static int decode_subframe(TAKDecContext *s, int32_t *decoded,
383                            int subframe_size, int prev_subframe_size)
384 {
385     GetBitContext *gb = &s->gb;
386     int x, y, i, j, ret = 0;
387     int dshift, size, filter_quant, filter_order;
388     int tfilter[MAX_PREDICTORS];
389
390     if (!get_bits1(gb))
391         return decode_residues(s, decoded, subframe_size);
392
393     filter_order = predictor_sizes[get_bits(gb, 4)];
394
395     if (prev_subframe_size > 0 && get_bits1(gb)) {
396         if (filter_order > prev_subframe_size)
397             return AVERROR_INVALIDDATA;
398
399         decoded       -= filter_order;
400         subframe_size += filter_order;
401
402         if (filter_order > subframe_size)
403             return AVERROR_INVALIDDATA;
404     } else {
405         int lpc_mode;
406
407         if (filter_order > subframe_size)
408             return AVERROR_INVALIDDATA;
409
410         lpc_mode = get_bits(gb, 2);
411         if (lpc_mode > 2)
412             return AVERROR_INVALIDDATA;
413
414         if ((ret = decode_residues(s, decoded, filter_order)) < 0)
415             return ret;
416
417         if (lpc_mode)
418             decode_lpc(decoded, lpc_mode, filter_order);
419     }
420
421     dshift = get_bits_esc4(gb);
422     size   = get_bits1(gb) + 6;
423
424     filter_quant = 10;
425     if (get_bits1(gb)) {
426         filter_quant -= get_bits(gb, 3) + 1;
427         if (filter_quant < 3)
428             return AVERROR_INVALIDDATA;
429     }
430
431     s->predictors[0] = get_sbits(gb, 10);
432     s->predictors[1] = get_sbits(gb, 10);
433     s->predictors[2] = get_sbits(gb, size) << (10 - size);
434     s->predictors[3] = get_sbits(gb, size) << (10 - size);
435     if (filter_order > 4) {
436         int tmp = size - get_bits1(gb);
437
438         for (i = 4; i < filter_order; i++) {
439             if (!(i & 3))
440                 x = tmp - get_bits(gb, 2);
441             s->predictors[i] = get_sbits(gb, x) << (10 - size);
442         }
443     }
444
445     tfilter[0] = s->predictors[0] << 6;
446     for (i = 1; i < filter_order; i++) {
447         int32_t *p1 = &tfilter[0];
448         int32_t *p2 = &tfilter[i - 1];
449
450         for (j = 0; j < (i + 1) / 2; j++) {
451             x     = *p1 + (s->predictors[i] * *p2 + 256 >> 9);
452             *p2  += s->predictors[i] * *p1 + 256 >> 9;
453             *p1++ = x;
454             p2--;
455         }
456
457         tfilter[i] = s->predictors[i] << 6;
458     }
459
460     x = 1 << (32 - (15 - filter_quant));
461     y = 1 << ((15 - filter_quant) - 1);
462     for (i = 0, j = filter_order - 1; i < filter_order / 2; i++, j--) {
463         s->filter[j] = x - ((tfilter[i] + y) >> (15 - filter_quant));
464         s->filter[i] = x - ((tfilter[j] + y) >> (15 - filter_quant));
465     }
466
467     if ((ret = decode_residues(s, &decoded[filter_order],
468                                subframe_size - filter_order)) < 0)
469         return ret;
470
471     for (i = 0; i < filter_order; i++)
472         s->residues[i] = *decoded++ >> dshift;
473
474     y    = FF_ARRAY_ELEMS(s->residues) - filter_order;
475     x    = subframe_size - filter_order;
476     while (x > 0) {
477         int tmp = FFMIN(y, x);
478
479         for (i = 0; i < tmp; i++) {
480             int v = 1 << (filter_quant - 1);
481
482             if (filter_order & -16)
483                 v += s->adsp.scalarproduct_int16(&s->residues[i], s->filter,
484                                                  filter_order & -16);
485             for (j = filter_order & -16; j < filter_order; j += 4) {
486                 v += s->residues[i + j + 3] * s->filter[j + 3] +
487                      s->residues[i + j + 2] * s->filter[j + 2] +
488                      s->residues[i + j + 1] * s->filter[j + 1] +
489                      s->residues[i + j    ] * s->filter[j    ];
490             }
491             v = (av_clip_intp2(v >> filter_quant, 13) << dshift) - *decoded;
492             *decoded++ = v;
493             s->residues[filter_order + i] = v >> dshift;
494         }
495
496         x -= tmp;
497         if (x > 0)
498             memcpy(s->residues, &s->residues[y], 2 * filter_order);
499     }
500
501     emms_c();
502
503     return 0;
504 }
505
506 static int decode_channel(TAKDecContext *s, int chan)
507 {
508     AVCodecContext *avctx = s->avctx;
509     GetBitContext *gb     = &s->gb;
510     int32_t *decoded      = s->decoded[chan];
511     int left              = s->nb_samples - 1;
512     int i = 0, ret, prev = 0;
513
514     s->sample_shift[chan] = get_bits_esc4(gb);
515     if (s->sample_shift[chan] >= avctx->bits_per_raw_sample)
516         return AVERROR_INVALIDDATA;
517
518     *decoded++ = get_sbits(gb, avctx->bits_per_raw_sample - s->sample_shift[chan]);
519     s->lpc_mode[chan] = get_bits(gb, 2);
520     s->nb_subframes   = get_bits(gb, 3) + 1;
521
522     if (s->nb_subframes > 1) {
523         if (get_bits_left(gb) < (s->nb_subframes - 1) * 6)
524             return AVERROR_INVALIDDATA;
525
526         for (; i < s->nb_subframes - 1; i++) {
527             int v = get_bits(gb, 6);
528
529             s->subframe_len[i] = (v - prev) * s->subframe_scale;
530             if (s->subframe_len[i] <= 0)
531                 return AVERROR_INVALIDDATA;
532
533             left -= s->subframe_len[i];
534             prev  = v;
535         }
536
537         if (left <= 0)
538             return AVERROR_INVALIDDATA;
539     }
540     s->subframe_len[i] = left;
541
542     prev = 0;
543     for (i = 0; i < s->nb_subframes; i++) {
544         if ((ret = decode_subframe(s, decoded, s->subframe_len[i], prev)) < 0)
545             return ret;
546         decoded += s->subframe_len[i];
547         prev     = s->subframe_len[i];
548     }
549
550     return 0;
551 }
552
553 static int decorrelate(TAKDecContext *s, int c1, int c2, int length)
554 {
555     GetBitContext *gb = &s->gb;
556     int32_t *p1       = s->decoded[c1] + (s->dmode > 5);
557     int32_t *p2       = s->decoded[c2] + (s->dmode > 5);
558     int32_t bp1       = p1[0];
559     int32_t bp2       = p2[0];
560     int i;
561     int dshift, dfactor;
562
563     length += s->dmode < 6;
564
565     switch (s->dmode) {
566     case 1: /* left/side */
567         s->tdsp.decorrelate_ls(p1, p2, length);
568         break;
569     case 2: /* side/right */
570         s->tdsp.decorrelate_sr(p1, p2, length);
571         break;
572     case 3: /* side/mid */
573         s->tdsp.decorrelate_sm(p1, p2, length);
574         break;
575     case 4: /* side/left with scale factor */
576         FFSWAP(int32_t*, p1, p2);
577         FFSWAP(int32_t, bp1, bp2);
578     case 5: /* side/right with scale factor */
579         dshift  = get_bits_esc4(gb);
580         dfactor = get_sbits(gb, 10);
581         s->tdsp.decorrelate_sf(p1, p2, length, dshift, dfactor);
582         break;
583     case 6:
584         FFSWAP(int32_t*, p1, p2);
585     case 7: {
586         int length2, order_half, filter_order, dval1, dval2;
587         int tmp, x, code_size;
588
589         if (length < 256)
590             return AVERROR_INVALIDDATA;
591
592         dshift       = get_bits_esc4(gb);
593         filter_order = 8 << get_bits1(gb);
594         dval1        = get_bits1(gb);
595         dval2        = get_bits1(gb);
596
597         for (i = 0; i < filter_order; i++) {
598             if (!(i & 3))
599                 code_size = 14 - get_bits(gb, 3);
600             s->filter[i] = get_sbits(gb, code_size);
601         }
602
603         order_half = filter_order / 2;
604         length2    = length - (filter_order - 1);
605
606         /* decorrelate beginning samples */
607         if (dval1) {
608             for (i = 0; i < order_half; i++) {
609                 int32_t a = p1[i];
610                 int32_t b = p2[i];
611                 p1[i]     = a + b;
612             }
613         }
614
615         /* decorrelate ending samples */
616         if (dval2) {
617             for (i = length2 + order_half; i < length; i++) {
618                 int32_t a = p1[i];
619                 int32_t b = p2[i];
620                 p1[i]     = a + b;
621             }
622         }
623
624
625         for (i = 0; i < filter_order; i++)
626             s->residues[i] = *p2++ >> dshift;
627
628         p1 += order_half;
629         x = FF_ARRAY_ELEMS(s->residues) - filter_order;
630         for (; length2 > 0; length2 -= tmp) {
631             tmp = FFMIN(length2, x);
632
633             for (i = 0; i < tmp - (tmp == length2); i++)
634                 s->residues[filter_order + i] = *p2++ >> dshift;
635
636             for (i = 0; i < tmp; i++) {
637                 int v = 1 << 9;
638
639                 if (filter_order == 16) {
640                     v += s->adsp.scalarproduct_int16(&s->residues[i], s->filter,
641                                                      filter_order);
642                 } else {
643                     v += s->residues[i + 7] * s->filter[7] +
644                          s->residues[i + 6] * s->filter[6] +
645                          s->residues[i + 5] * s->filter[5] +
646                          s->residues[i + 4] * s->filter[4] +
647                          s->residues[i + 3] * s->filter[3] +
648                          s->residues[i + 2] * s->filter[2] +
649                          s->residues[i + 1] * s->filter[1] +
650                          s->residues[i    ] * s->filter[0];
651                 }
652
653                 v = (av_clip_intp2(v >> 10, 13) << dshift) - *p1;
654                 *p1++ = v;
655             }
656
657             memmove(s->residues, &s->residues[tmp], 2 * filter_order);
658         }
659
660         emms_c();
661         break;
662     }
663     }
664
665     if (s->dmode > 0 && s->dmode < 6) {
666         p1[0] = bp1;
667         p2[0] = bp2;
668     }
669
670     return 0;
671 }
672
673 static int tak_decode_frame(AVCodecContext *avctx, void *data,
674                             int *got_frame_ptr, AVPacket *pkt)
675 {
676     TAKDecContext *s  = avctx->priv_data;
677     AVFrame *frame    = data;
678     ThreadFrame tframe = { .f = data };
679     GetBitContext *gb = &s->gb;
680     int chan, i, ret, hsize;
681
682     if (pkt->size < TAK_MIN_FRAME_HEADER_BYTES)
683         return AVERROR_INVALIDDATA;
684
685     if ((ret = init_get_bits8(gb, pkt->data, pkt->size)) < 0)
686         return ret;
687
688     if ((ret = ff_tak_decode_frame_header(avctx, gb, &s->ti, 0)) < 0)
689         return ret;
690
691     hsize = get_bits_count(gb) / 8;
692     if (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_COMPLIANT)) {
693         if (ff_tak_check_crc(pkt->data, hsize)) {
694             av_log(avctx, AV_LOG_ERROR, "CRC error\n");
695             if (avctx->err_recognition & AV_EF_EXPLODE)
696                 return AVERROR_INVALIDDATA;
697         }
698     }
699
700     if (s->ti.codec != TAK_CODEC_MONO_STEREO &&
701         s->ti.codec != TAK_CODEC_MULTICHANNEL) {
702         av_log(avctx, AV_LOG_ERROR, "unsupported codec: %d\n", s->ti.codec);
703         return AVERROR_PATCHWELCOME;
704     }
705     if (s->ti.data_type) {
706         av_log(avctx, AV_LOG_ERROR,
707                "unsupported data type: %d\n", s->ti.data_type);
708         return AVERROR_INVALIDDATA;
709     }
710     if (s->ti.codec == TAK_CODEC_MONO_STEREO && s->ti.channels > 2) {
711         av_log(avctx, AV_LOG_ERROR,
712                "invalid number of channels: %d\n", s->ti.channels);
713         return AVERROR_INVALIDDATA;
714     }
715     if (s->ti.channels > 6) {
716         av_log(avctx, AV_LOG_ERROR,
717                "unsupported number of channels: %d\n", s->ti.channels);
718         return AVERROR_INVALIDDATA;
719     }
720
721     if (s->ti.frame_samples <= 0) {
722         av_log(avctx, AV_LOG_ERROR, "unsupported/invalid number of samples\n");
723         return AVERROR_INVALIDDATA;
724     }
725
726     avctx->bits_per_raw_sample = s->ti.bps;
727     if ((ret = set_bps_params(avctx)) < 0)
728         return ret;
729     if (s->ti.sample_rate != avctx->sample_rate) {
730         avctx->sample_rate = s->ti.sample_rate;
731         set_sample_rate_params(avctx);
732     }
733     if (s->ti.ch_layout)
734         avctx->channel_layout = s->ti.ch_layout;
735     avctx->channels = s->ti.channels;
736
737     s->nb_samples = s->ti.last_frame_samples ? s->ti.last_frame_samples
738                                              : s->ti.frame_samples;
739
740     frame->nb_samples = s->nb_samples;
741     if ((ret = ff_thread_get_buffer(avctx, &tframe, 0)) < 0)
742         return ret;
743     ff_thread_finish_setup(avctx);
744
745     if (avctx->bits_per_raw_sample <= 16) {
746         int buf_size = av_samples_get_buffer_size(NULL, avctx->channels,
747                                                   s->nb_samples,
748                                                   AV_SAMPLE_FMT_S32P, 0);
749         if (buf_size < 0)
750             return buf_size;
751         av_fast_malloc(&s->decode_buffer, &s->decode_buffer_size, buf_size);
752         if (!s->decode_buffer)
753             return AVERROR(ENOMEM);
754         ret = av_samples_fill_arrays((uint8_t **)s->decoded, NULL,
755                                      s->decode_buffer, avctx->channels,
756                                      s->nb_samples, AV_SAMPLE_FMT_S32P, 0);
757         if (ret < 0)
758             return ret;
759     } else {
760         for (chan = 0; chan < avctx->channels; chan++)
761             s->decoded[chan] = (int32_t *)frame->extended_data[chan];
762     }
763
764     if (s->nb_samples < 16) {
765         for (chan = 0; chan < avctx->channels; chan++) {
766             int32_t *decoded = s->decoded[chan];
767             for (i = 0; i < s->nb_samples; i++)
768                 decoded[i] = get_sbits(gb, avctx->bits_per_raw_sample);
769         }
770     } else {
771         if (s->ti.codec == TAK_CODEC_MONO_STEREO) {
772             for (chan = 0; chan < avctx->channels; chan++)
773                 if (ret = decode_channel(s, chan))
774                     return ret;
775
776             if (avctx->channels == 2) {
777                 s->nb_subframes = get_bits(gb, 1) + 1;
778                 if (s->nb_subframes > 1) {
779                     s->subframe_len[1] = get_bits(gb, 6);
780                 }
781
782                 s->dmode = get_bits(gb, 3);
783                 if (ret = decorrelate(s, 0, 1, s->nb_samples - 1))
784                     return ret;
785             }
786         } else if (s->ti.codec == TAK_CODEC_MULTICHANNEL) {
787             if (get_bits1(gb)) {
788                 int ch_mask = 0;
789
790                 chan = get_bits(gb, 4) + 1;
791                 if (chan > avctx->channels)
792                     return AVERROR_INVALIDDATA;
793
794                 for (i = 0; i < chan; i++) {
795                     int nbit = get_bits(gb, 4);
796
797                     if (nbit >= avctx->channels)
798                         return AVERROR_INVALIDDATA;
799
800                     if (ch_mask & 1 << nbit)
801                         return AVERROR_INVALIDDATA;
802
803                     s->mcdparams[i].present = get_bits1(gb);
804                     if (s->mcdparams[i].present) {
805                         s->mcdparams[i].index = get_bits(gb, 2);
806                         s->mcdparams[i].chan2 = get_bits(gb, 4);
807                         if (s->mcdparams[i].chan2 >= avctx->channels) {
808                             av_log(avctx, AV_LOG_ERROR,
809                                    "invalid channel 2 (%d) for %d channel(s)\n",
810                                    s->mcdparams[i].chan2, avctx->channels);
811                             return AVERROR_INVALIDDATA;
812                         }
813                         if (s->mcdparams[i].index == 1) {
814                             if ((nbit == s->mcdparams[i].chan2) ||
815                                 (ch_mask & 1 << s->mcdparams[i].chan2))
816                                 return AVERROR_INVALIDDATA;
817
818                             ch_mask |= 1 << s->mcdparams[i].chan2;
819                         } else if (!(ch_mask & 1 << s->mcdparams[i].chan2)) {
820                             return AVERROR_INVALIDDATA;
821                         }
822                     }
823                     s->mcdparams[i].chan1 = nbit;
824
825                     ch_mask |= 1 << nbit;
826                 }
827             } else {
828                 chan = avctx->channels;
829                 for (i = 0; i < chan; i++) {
830                     s->mcdparams[i].present = 0;
831                     s->mcdparams[i].chan1   = i;
832                 }
833             }
834
835             for (i = 0; i < chan; i++) {
836                 if (s->mcdparams[i].present && s->mcdparams[i].index == 1)
837                     if (ret = decode_channel(s, s->mcdparams[i].chan2))
838                         return ret;
839
840                 if (ret = decode_channel(s, s->mcdparams[i].chan1))
841                     return ret;
842
843                 if (s->mcdparams[i].present) {
844                     s->dmode = mc_dmodes[s->mcdparams[i].index];
845                     if (ret = decorrelate(s,
846                                           s->mcdparams[i].chan2,
847                                           s->mcdparams[i].chan1,
848                                           s->nb_samples - 1))
849                         return ret;
850                 }
851             }
852         }
853
854         for (chan = 0; chan < avctx->channels; chan++) {
855             int32_t *decoded = s->decoded[chan];
856
857             if (s->lpc_mode[chan])
858                 decode_lpc(decoded, s->lpc_mode[chan], s->nb_samples);
859
860             if (s->sample_shift[chan] > 0)
861                 for (i = 0; i < s->nb_samples; i++)
862                     decoded[i] <<= s->sample_shift[chan];
863         }
864     }
865
866     align_get_bits(gb);
867     skip_bits(gb, 24);
868     if (get_bits_left(gb) < 0)
869         av_log(avctx, AV_LOG_DEBUG, "overread\n");
870     else if (get_bits_left(gb) > 0)
871         av_log(avctx, AV_LOG_DEBUG, "underread\n");
872
873     if (avctx->err_recognition & (AV_EF_CRCCHECK | AV_EF_COMPLIANT)) {
874         if (ff_tak_check_crc(pkt->data + hsize,
875                              get_bits_count(gb) / 8 - hsize)) {
876             av_log(avctx, AV_LOG_ERROR, "CRC error\n");
877             if (avctx->err_recognition & AV_EF_EXPLODE)
878                 return AVERROR_INVALIDDATA;
879         }
880     }
881
882     /* convert to output buffer */
883     switch (avctx->sample_fmt) {
884     case AV_SAMPLE_FMT_U8P:
885         for (chan = 0; chan < avctx->channels; chan++) {
886             uint8_t *samples = (uint8_t *)frame->extended_data[chan];
887             int32_t *decoded = s->decoded[chan];
888             for (i = 0; i < s->nb_samples; i++)
889                 samples[i] = decoded[i] + 0x80;
890         }
891         break;
892     case AV_SAMPLE_FMT_S16P:
893         for (chan = 0; chan < avctx->channels; chan++) {
894             int16_t *samples = (int16_t *)frame->extended_data[chan];
895             int32_t *decoded = s->decoded[chan];
896             for (i = 0; i < s->nb_samples; i++)
897                 samples[i] = decoded[i];
898         }
899         break;
900     case AV_SAMPLE_FMT_S32P:
901         for (chan = 0; chan < avctx->channels; chan++) {
902             int32_t *samples = (int32_t *)frame->extended_data[chan];
903             for (i = 0; i < s->nb_samples; i++)
904                 samples[i] <<= 8;
905         }
906         break;
907     }
908
909     *got_frame_ptr = 1;
910
911     return pkt->size;
912 }
913
914 #if HAVE_THREADS
915 static int init_thread_copy(AVCodecContext *avctx)
916 {
917     TAKDecContext *s = avctx->priv_data;
918     s->avctx = avctx;
919     return 0;
920 }
921
922 static int update_thread_context(AVCodecContext *dst,
923                                  const AVCodecContext *src)
924 {
925     TAKDecContext *tsrc = src->priv_data;
926     TAKDecContext *tdst = dst->priv_data;
927
928     if (dst == src)
929         return 0;
930     memcpy(&tdst->ti, &tsrc->ti, sizeof(TAKStreamInfo));
931     return 0;
932 }
933 #endif
934
935 static av_cold int tak_decode_close(AVCodecContext *avctx)
936 {
937     TAKDecContext *s = avctx->priv_data;
938
939     av_freep(&s->decode_buffer);
940
941     return 0;
942 }
943
944 AVCodec ff_tak_decoder = {
945     .name             = "tak",
946     .long_name        = NULL_IF_CONFIG_SMALL("TAK (Tom's lossless Audio Kompressor)"),
947     .type             = AVMEDIA_TYPE_AUDIO,
948     .id               = AV_CODEC_ID_TAK,
949     .priv_data_size   = sizeof(TAKDecContext),
950     .init             = tak_decode_init,
951     .close            = tak_decode_close,
952     .decode           = tak_decode_frame,
953     .init_thread_copy = ONLY_IF_THREADS_ENABLED(init_thread_copy),
954     .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
955     .capabilities     = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
956     .sample_fmts      = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
957                                                         AV_SAMPLE_FMT_S16P,
958                                                         AV_SAMPLE_FMT_S32P,
959                                                         AV_SAMPLE_FMT_NONE },
960 };