]> git.sesse.net Git - ffmpeg/blob - libavcodec/tta.c
74d0d462d2b17836c2942bc242be5b79855aa503
[ffmpeg] / libavcodec / tta.c
1 /*
2  * TTA (The Lossless True Audio) decoder
3  * Copyright (c) 2006 Alex Beregszaszi
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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  * TTA (The Lossless True Audio) decoder
25  * @see http://www.true-audio.com/
26  * @see http://tta.corecodec.org/
27  * @author Alex Beregszaszi
28  */
29
30 #define ALT_BITSTREAM_READER_LE
31 //#define DEBUG
32 #include <limits.h>
33 #include "avcodec.h"
34 #include "get_bits.h"
35
36 #define FORMAT_SIMPLE    1
37 #define FORMAT_ENCRYPTED 2
38
39 #define MAX_ORDER 16
40 typedef struct TTAFilter {
41     int32_t shift, round, error, mode;
42     int32_t qm[MAX_ORDER];
43     int32_t dx[MAX_ORDER];
44     int32_t dl[MAX_ORDER];
45 } TTAFilter;
46
47 typedef struct TTARice {
48     uint32_t k0, k1, sum0, sum1;
49 } TTARice;
50
51 typedef struct TTAChannel {
52     int32_t predictor;
53     TTAFilter filter;
54     TTARice rice;
55 } TTAChannel;
56
57 typedef struct TTAContext {
58     AVCodecContext *avctx;
59     GetBitContext gb;
60
61     int format, channels, bps, data_length;
62     int frame_length, last_frame_length, total_frames;
63
64     int32_t *decode_buffer;
65
66     TTAChannel *ch_ctx;
67 } TTAContext;
68
69 static const uint32_t shift_1[] = {
70     0x00000001, 0x00000002, 0x00000004, 0x00000008,
71     0x00000010, 0x00000020, 0x00000040, 0x00000080,
72     0x00000100, 0x00000200, 0x00000400, 0x00000800,
73     0x00001000, 0x00002000, 0x00004000, 0x00008000,
74     0x00010000, 0x00020000, 0x00040000, 0x00080000,
75     0x00100000, 0x00200000, 0x00400000, 0x00800000,
76     0x01000000, 0x02000000, 0x04000000, 0x08000000,
77     0x10000000, 0x20000000, 0x40000000, 0x80000000,
78     0x80000000, 0x80000000, 0x80000000, 0x80000000,
79     0x80000000, 0x80000000, 0x80000000, 0x80000000
80 };
81
82 static const uint32_t * const shift_16 = shift_1 + 4;
83
84 static const int32_t ttafilter_configs[4][2] = {
85     {10, 1},
86     {9, 1},
87     {10, 1},
88     {12, 0}
89 };
90
91 static void ttafilter_init(TTAFilter *c, int32_t shift, int32_t mode) {
92     memset(c, 0, sizeof(TTAFilter));
93     c->shift = shift;
94    c->round = shift_1[shift-1];
95 //    c->round = 1 << (shift - 1);
96     c->mode = mode;
97 }
98
99 // FIXME: copy paste from original
100 static inline void memshl(register int32_t *a, register int32_t *b) {
101     *a++ = *b++;
102     *a++ = *b++;
103     *a++ = *b++;
104     *a++ = *b++;
105     *a++ = *b++;
106     *a++ = *b++;
107     *a++ = *b++;
108     *a = *b;
109 }
110
111 // FIXME: copy paste from original
112 // mode=1 encoder, mode=0 decoder
113 static inline void ttafilter_process(TTAFilter *c, int32_t *in, int32_t mode) {
114     register int32_t *dl = c->dl, *qm = c->qm, *dx = c->dx, sum = c->round;
115
116     if (!c->error) {
117         sum += *dl++ * *qm, qm++;
118         sum += *dl++ * *qm, qm++;
119         sum += *dl++ * *qm, qm++;
120         sum += *dl++ * *qm, qm++;
121         sum += *dl++ * *qm, qm++;
122         sum += *dl++ * *qm, qm++;
123         sum += *dl++ * *qm, qm++;
124         sum += *dl++ * *qm, qm++;
125         dx += 8;
126     } else if(c->error < 0) {
127         sum += *dl++ * (*qm -= *dx++), qm++;
128         sum += *dl++ * (*qm -= *dx++), qm++;
129         sum += *dl++ * (*qm -= *dx++), qm++;
130         sum += *dl++ * (*qm -= *dx++), qm++;
131         sum += *dl++ * (*qm -= *dx++), qm++;
132         sum += *dl++ * (*qm -= *dx++), qm++;
133         sum += *dl++ * (*qm -= *dx++), qm++;
134         sum += *dl++ * (*qm -= *dx++), qm++;
135     } else {
136         sum += *dl++ * (*qm += *dx++), qm++;
137         sum += *dl++ * (*qm += *dx++), qm++;
138         sum += *dl++ * (*qm += *dx++), qm++;
139         sum += *dl++ * (*qm += *dx++), qm++;
140         sum += *dl++ * (*qm += *dx++), qm++;
141         sum += *dl++ * (*qm += *dx++), qm++;
142         sum += *dl++ * (*qm += *dx++), qm++;
143         sum += *dl++ * (*qm += *dx++), qm++;
144     }
145
146     *(dx-0) = ((*(dl-1) >> 30) | 1) << 2;
147     *(dx-1) = ((*(dl-2) >> 30) | 1) << 1;
148     *(dx-2) = ((*(dl-3) >> 30) | 1) << 1;
149     *(dx-3) = ((*(dl-4) >> 30) | 1);
150
151     // compress
152     if (mode) {
153         *dl = *in;
154         *in -= (sum >> c->shift);
155         c->error = *in;
156     } else {
157         c->error = *in;
158         *in += (sum >> c->shift);
159         *dl = *in;
160     }
161
162     if (c->mode) {
163         *(dl-1) = *dl - *(dl-1);
164         *(dl-2) = *(dl-1) - *(dl-2);
165         *(dl-3) = *(dl-2) - *(dl-3);
166     }
167
168     memshl(c->dl, c->dl + 1);
169     memshl(c->dx, c->dx + 1);
170 }
171
172 static void rice_init(TTARice *c, uint32_t k0, uint32_t k1)
173 {
174     c->k0 = k0;
175     c->k1 = k1;
176     c->sum0 = shift_16[k0];
177     c->sum1 = shift_16[k1];
178 }
179
180 static int tta_get_unary(GetBitContext *gb)
181 {
182     int ret = 0;
183
184     // count ones
185     while (get_bits_left(gb) > 0 && get_bits1(gb))
186         ret++;
187     return ret;
188 }
189
190 static av_cold int tta_decode_init(AVCodecContext * avctx)
191 {
192     TTAContext *s = avctx->priv_data;
193     int i;
194
195     s->avctx = avctx;
196
197     // 30bytes includes a seektable with one frame
198     if (avctx->extradata_size < 30)
199         return -1;
200
201     init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size * 8);
202     if (show_bits_long(&s->gb, 32) == AV_RL32("TTA1"))
203     {
204         /* signature */
205         skip_bits(&s->gb, 32);
206
207         s->format = get_bits(&s->gb, 16);
208         if (s->format > 2) {
209             av_log(s->avctx, AV_LOG_ERROR, "Invalid format\n");
210             return -1;
211         }
212         if (s->format == FORMAT_ENCRYPTED) {
213             av_log_missing_feature(s->avctx, "Encrypted TTA", 0);
214             return AVERROR(EINVAL);
215         }
216         avctx->channels = s->channels = get_bits(&s->gb, 16);
217         avctx->bits_per_coded_sample = get_bits(&s->gb, 16);
218         s->bps = (avctx->bits_per_coded_sample + 7) / 8;
219         avctx->sample_rate = get_bits_long(&s->gb, 32);
220         if(avctx->sample_rate > 1000000){ //prevent FRAME_TIME * avctx->sample_rate from overflowing and sanity check
221             av_log(avctx, AV_LOG_ERROR, "sample_rate too large\n");
222             return -1;
223         }
224         s->data_length = get_bits_long(&s->gb, 32);
225         skip_bits(&s->gb, 32); // CRC32 of header
226
227         switch(s->bps) {
228 //            case 1: avctx->sample_fmt = AV_SAMPLE_FMT_U8; break;
229             case 2: avctx->sample_fmt = AV_SAMPLE_FMT_S16; break;
230 //            case 3: avctx->sample_fmt = AV_SAMPLE_FMT_S24; break;
231             case 4: avctx->sample_fmt = AV_SAMPLE_FMT_S32; break;
232             default:
233                 av_log_ask_for_sample(s->avctx,
234                                       "Invalid/unsupported sample format.\n");
235                 return -1;
236         }
237
238         // FIXME: horribly broken, but directly from reference source
239 #define FRAME_TIME 1.04489795918367346939
240         s->frame_length = (int)(FRAME_TIME * avctx->sample_rate);
241
242         s->last_frame_length = s->data_length % s->frame_length;
243         s->total_frames = s->data_length / s->frame_length +
244                         (s->last_frame_length ? 1 : 0);
245
246         av_log(s->avctx, AV_LOG_DEBUG, "format: %d chans: %d bps: %d rate: %d block: %d\n",
247             s->format, avctx->channels, avctx->bits_per_coded_sample, avctx->sample_rate,
248             avctx->block_align);
249         av_log(s->avctx, AV_LOG_DEBUG, "data_length: %d frame_length: %d last: %d total: %d\n",
250             s->data_length, s->frame_length, s->last_frame_length, s->total_frames);
251
252         // FIXME: seek table
253         for (i = 0; i < s->total_frames; i++)
254             skip_bits(&s->gb, 32);
255         skip_bits(&s->gb, 32); // CRC32 of seektable
256
257         if(s->frame_length >= UINT_MAX / (s->channels * sizeof(int32_t))){
258             av_log(avctx, AV_LOG_ERROR, "frame_length too large\n");
259             return -1;
260         }
261
262         s->decode_buffer = av_mallocz(sizeof(int32_t)*s->frame_length*s->channels);
263         s->ch_ctx = av_malloc(avctx->channels * sizeof(*s->ch_ctx));
264         if (!s->ch_ctx)
265             return AVERROR(ENOMEM);
266     } else {
267         av_log(avctx, AV_LOG_ERROR, "Wrong extradata present\n");
268         return -1;
269     }
270
271     return 0;
272 }
273
274 static int tta_decode_frame(AVCodecContext *avctx,
275         void *data, int *data_size,
276         AVPacket *avpkt)
277 {
278     const uint8_t *buf = avpkt->data;
279     int buf_size = avpkt->size;
280     TTAContext *s = avctx->priv_data;
281     int i;
282
283     init_get_bits(&s->gb, buf, buf_size*8);
284     {
285         int cur_chan = 0, framelen = s->frame_length;
286         int32_t *p;
287
288         if (*data_size < (framelen * s->channels * 2)) {
289             av_log(avctx, AV_LOG_ERROR, "Output buffer size is too small.\n");
290             return -1;
291         }
292         // FIXME: seeking
293         s->total_frames--;
294         if (!s->total_frames && s->last_frame_length)
295             framelen = s->last_frame_length;
296
297         // init per channel states
298         for (i = 0; i < s->channels; i++) {
299             s->ch_ctx[i].predictor = 0;
300             ttafilter_init(&s->ch_ctx[i].filter, ttafilter_configs[s->bps-1][0], ttafilter_configs[s->bps-1][1]);
301             rice_init(&s->ch_ctx[i].rice, 10, 10);
302         }
303
304         for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++) {
305             int32_t *predictor = &s->ch_ctx[cur_chan].predictor;
306             TTAFilter *filter = &s->ch_ctx[cur_chan].filter;
307             TTARice *rice = &s->ch_ctx[cur_chan].rice;
308             uint32_t unary, depth, k;
309             int32_t value;
310
311             unary = tta_get_unary(&s->gb);
312
313             if (unary == 0) {
314                 depth = 0;
315                 k = rice->k0;
316             } else {
317                 depth = 1;
318                 k = rice->k1;
319                 unary--;
320             }
321
322             if (get_bits_left(&s->gb) < k)
323                 return -1;
324
325             if (k) {
326                 if (k > MIN_CACHE_BITS)
327                     return -1;
328                 value = (unary << k) + get_bits(&s->gb, k);
329             } else
330                 value = unary;
331
332             // FIXME: copy paste from original
333             switch (depth) {
334             case 1:
335                 rice->sum1 += value - (rice->sum1 >> 4);
336                 if (rice->k1 > 0 && rice->sum1 < shift_16[rice->k1])
337                     rice->k1--;
338                 else if(rice->sum1 > shift_16[rice->k1 + 1])
339                     rice->k1++;
340                 value += shift_1[rice->k0];
341             default:
342                 rice->sum0 += value - (rice->sum0 >> 4);
343                 if (rice->k0 > 0 && rice->sum0 < shift_16[rice->k0])
344                     rice->k0--;
345                 else if(rice->sum0 > shift_16[rice->k0 + 1])
346                     rice->k0++;
347             }
348
349             // extract coded value
350 #define UNFOLD(x) (((x)&1) ? (++(x)>>1) : (-(x)>>1))
351             *p = UNFOLD(value);
352
353             // run hybrid filter
354             ttafilter_process(filter, p, 0);
355
356             // fixed order prediction
357 #define PRED(x, k) (int32_t)((((uint64_t)x << k) - x) >> k)
358             switch (s->bps) {
359                 case 1: *p += PRED(*predictor, 4); break;
360                 case 2:
361                 case 3: *p += PRED(*predictor, 5); break;
362                 case 4: *p += *predictor; break;
363             }
364             *predictor = *p;
365
366             // flip channels
367             if (cur_chan < (s->channels-1))
368                 cur_chan++;
369             else {
370                 // decorrelate in case of stereo integer
371                 if (s->channels > 1) {
372                     int32_t *r = p - 1;
373                     for (*p += *r / 2; r > p - s->channels; r--)
374                         *r = *(r + 1) - *r;
375                 }
376                 cur_chan = 0;
377             }
378         }
379
380         if (get_bits_left(&s->gb) < 32)
381             return -1;
382         skip_bits(&s->gb, 32); // frame crc
383
384         // convert to output buffer
385         switch(s->bps) {
386             case 2: {
387                 uint16_t *samples = data;
388                 for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++) {
389                     *samples++ = *p;
390                 }
391                 *data_size = (uint8_t *)samples - (uint8_t *)data;
392                 break;
393             }
394             default:
395                 av_log(s->avctx, AV_LOG_ERROR, "Error, only 16bit samples supported!\n");
396         }
397     }
398
399     return buf_size;
400 }
401
402 static av_cold int tta_decode_close(AVCodecContext *avctx) {
403     TTAContext *s = avctx->priv_data;
404
405     av_free(s->decode_buffer);
406     av_freep(&s->ch_ctx);
407
408     return 0;
409 }
410
411 AVCodec ff_tta_decoder = {
412     .name           = "tta",
413     .type           = AVMEDIA_TYPE_AUDIO,
414     .id             = CODEC_ID_TTA,
415     .priv_data_size = sizeof(TTAContext),
416     .init           = tta_decode_init,
417     .close          = tta_decode_close,
418     .decode         = tta_decode_frame,
419     .long_name = NULL_IF_CONFIG_SMALL("True Audio (TTA)"),
420 };