tta.c 13 KB
Newer Older
1 2 3 4
/*
 * TTA (The Lossless True Audio) decoder
 * Copyright (c) 2006 Alex Beregszaszi
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * 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
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
 * TTA (The Lossless True Audio) decoder
25 26
 * @see http://www.true-audio.com/
 * @see http://tta.corecodec.org/
27 28 29
 * @author Alex Beregszaszi
 */

30
#define BITSTREAM_READER_LE
31
#include <limits.h>
32
#include "ttadata.h"
33
#include "ttadsp.h"
34
#include "avcodec.h"
35
#include "get_bits.h"
36
#include "thread.h"
Paul B Mahol's avatar
Paul B Mahol committed
37
#include "unary.h"
38
#include "internal.h"
Paul B Mahol's avatar
Paul B Mahol committed
39
#include "libavutil/crc.h"
40 41
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
42

43 44
#define FORMAT_SIMPLE    1
#define FORMAT_ENCRYPTED 2
45 46

typedef struct TTAContext {
47
    AVClass *class;
48
    AVCodecContext *avctx;
Paul B Mahol's avatar
Paul B Mahol committed
49
    const AVCRC *crc_table;
50

51 52
    int format, channels, bps;
    unsigned data_length;
53
    int frame_length, last_frame_length;
54

55
    int32_t *decode_buffer;
56

57 58
    uint8_t crc_pass[8];
    uint8_t *pass;
59
    TTAChannel *ch_ctx;
60
    TTADSPContext dsp;
61 62
} TTAContext;

63 64 65 66 67 68 69 70 71 72
static const int64_t tta_channel_layouts[7] = {
    AV_CH_LAYOUT_STEREO,
    AV_CH_LAYOUT_STEREO|AV_CH_LOW_FREQUENCY,
    AV_CH_LAYOUT_QUAD,
    0,
    AV_CH_LAYOUT_5POINT1_BACK,
    AV_CH_LAYOUT_5POINT1_BACK|AV_CH_BACK_CENTER,
    AV_CH_LAYOUT_7POINT1_WIDE
};

Paul B Mahol's avatar
Paul B Mahol committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86
static int tta_check_crc(TTAContext *s, const uint8_t *buf, int buf_size)
{
    uint32_t crc, CRC;

    CRC = AV_RL32(buf + buf_size);
    crc = av_crc(s->crc_table, 0xFFFFFFFFU, buf, buf_size);
    if (CRC != (crc ^ 0xFFFFFFFFU)) {
        av_log(s->avctx, AV_LOG_ERROR, "CRC error\n");
        return AVERROR_INVALIDDATA;
    }

    return 0;
}

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
static uint64_t tta_check_crc64(uint8_t *pass)
{
    uint64_t crc = UINT64_MAX, poly = 0x42F0E1EBA9EA3693U;
    uint8_t *end = pass + strlen(pass);
    int i;

    while (pass < end) {
        crc ^= (uint64_t)*pass++ << 56;
        for (i = 0; i < 8; i++)
            crc = (crc << 1) ^ (poly & (((int64_t) crc) >> 63));
    }

    return crc ^ UINT64_MAX;
}

102 103 104 105 106
static int allocate_buffers(AVCodecContext *avctx)
{
    TTAContext *s = avctx->priv_data;

    if (s->bps < 3) {
107
        s->decode_buffer = av_mallocz_array(sizeof(int32_t)*s->frame_length, s->channels);
108 109 110 111
        if (!s->decode_buffer)
            return AVERROR(ENOMEM);
    } else
        s->decode_buffer = NULL;
112
    s->ch_ctx = av_malloc_array(avctx->channels, sizeof(*s->ch_ctx));
113 114 115 116 117 118 119 120
    if (!s->ch_ctx) {
        av_freep(&s->decode_buffer);
        return AVERROR(ENOMEM);
    }

    return 0;
}

121
static av_cold int tta_decode_init(AVCodecContext * avctx)
122 123
{
    TTAContext *s = avctx->priv_data;
124
    GetBitContext gb;
125
    int total_frames;
126 127 128

    s->avctx = avctx;

129 130
    // 30bytes includes TTA1 header
    if (avctx->extradata_size < 22)
131
        return AVERROR_INVALIDDATA;
132

133
    s->crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE);
134
    init_get_bits8(&gb, avctx->extradata, avctx->extradata_size);
135
    if (show_bits_long(&gb, 32) == AV_RL32("TTA1")) {
136
        /* signature */
137
        skip_bits_long(&gb, 32);
138

139
        s->format = get_bits(&gb, 16);
140
        if (s->format > 2) {
141
            av_log(avctx, AV_LOG_ERROR, "Invalid format\n");
142
            return AVERROR_INVALIDDATA;
143
        }
144
        if (s->format == FORMAT_ENCRYPTED) {
145 146 147 148 149
            if (!s->pass) {
                av_log(avctx, AV_LOG_ERROR, "Missing password for encrypted stream. Please use the -password option\n");
                return AVERROR(EINVAL);
            }
            AV_WL64(s->crc_pass, tta_check_crc64(s->pass));
150
        }
151
        avctx->channels = s->channels = get_bits(&gb, 16);
152 153
        if (s->channels > 1 && s->channels < 9)
            avctx->channel_layout = tta_channel_layouts[s->channels-2];
154
        avctx->bits_per_raw_sample = get_bits(&gb, 16);
155
        s->bps = (avctx->bits_per_raw_sample + 7) / 8;
156 157 158
        avctx->sample_rate = get_bits_long(&gb, 32);
        s->data_length = get_bits_long(&gb, 32);
        skip_bits_long(&gb, 32); // CRC32 of header
159

160
        if (s->channels == 0) {
161
            av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
162
            return AVERROR_INVALIDDATA;
163
        } else if (avctx->sample_rate == 0) {
164
            av_log(avctx, AV_LOG_ERROR, "Invalid samplerate\n");
165
            return AVERROR_INVALIDDATA;
166 167
        }

168
        switch(s->bps) {
169
        case 1: avctx->sample_fmt = AV_SAMPLE_FMT_U8; break;
170 171 172 173 174 175
        case 2:
            avctx->sample_fmt = AV_SAMPLE_FMT_S16;
            break;
        case 3:
            avctx->sample_fmt = AV_SAMPLE_FMT_S32;
            break;
176
        //case 4: avctx->sample_fmt = AV_SAMPLE_FMT_S32; break;
177 178 179
        default:
            av_log(avctx, AV_LOG_ERROR, "Invalid/unsupported sample format.\n");
            return AVERROR_INVALIDDATA;
180 181
        }

182
        // prevent overflow
183
        if (avctx->sample_rate > 0x7FFFFFu) {
184 185 186 187
            av_log(avctx, AV_LOG_ERROR, "sample_rate too large\n");
            return AVERROR(EINVAL);
        }
        s->frame_length = 256 * avctx->sample_rate / 245;
188 189

        s->last_frame_length = s->data_length % s->frame_length;
190 191
        total_frames = s->data_length / s->frame_length +
                       (s->last_frame_length ? 1 : 0);
192

193
        av_log(avctx, AV_LOG_DEBUG, "format: %d chans: %d bps: %d rate: %d block: %d\n",
194
            s->format, avctx->channels, avctx->bits_per_coded_sample, avctx->sample_rate,
195
            avctx->block_align);
196
        av_log(avctx, AV_LOG_DEBUG, "data_length: %d frame_length: %d last: %d total: %d\n",
197
            s->data_length, s->frame_length, s->last_frame_length, total_frames);
198

199 200
        if(s->frame_length >= UINT_MAX / (s->channels * sizeof(int32_t))){
            av_log(avctx, AV_LOG_ERROR, "frame_length too large\n");
201
            return AVERROR_INVALIDDATA;
202
        }
203 204
    } else {
        av_log(avctx, AV_LOG_ERROR, "Wrong extradata present\n");
205
        return AVERROR_INVALIDDATA;
206 207
    }

208 209
    ff_ttadsp_init(&s->dsp);

210
    return allocate_buffers(avctx);
211 212
}

213 214
static int tta_decode_frame(AVCodecContext *avctx, void *data,
                            int *got_frame_ptr, AVPacket *avpkt)
215
{
216
    AVFrame *frame     = data;
217
    ThreadFrame tframe = { .f = data };
218 219
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
220
    TTAContext *s = avctx->priv_data;
221
    GetBitContext gb;
222
    int i, ret;
223 224
    int cur_chan = 0, framelen = s->frame_length;
    int32_t *p;
225

Paul B Mahol's avatar
Paul B Mahol committed
226
    if (avctx->err_recognition & AV_EF_CRCCHECK) {
227 228
        if (buf_size < 4 ||
            (tta_check_crc(s, buf, buf_size - 4) && avctx->err_recognition & AV_EF_EXPLODE))
Paul B Mahol's avatar
Paul B Mahol committed
229 230 231
            return AVERROR_INVALIDDATA;
    }

232
    if ((ret = init_get_bits8(&gb, avpkt->data, avpkt->size)) < 0)
233
        return ret;
234

235
    /* get output buffer */
236
    frame->nb_samples = framelen;
237
    if ((ret = ff_thread_get_buffer(avctx, &tframe, 0)) < 0)
238
        return ret;
Justin Ruggles's avatar
Justin Ruggles committed
239

240 241
    // decode directly to output buffer for 24-bit sample format
    if (s->bps == 3)
242
        s->decode_buffer = (int32_t *)frame->data[0];
243

Justin Ruggles's avatar
Justin Ruggles committed
244 245
    // init per channel states
    for (i = 0; i < s->channels; i++) {
246
        TTAFilter *filter = &s->ch_ctx[i].filter;
Justin Ruggles's avatar
Justin Ruggles committed
247
        s->ch_ctx[i].predictor = 0;
248 249 250 251 252 253 254
        ff_tta_filter_init(filter, ff_tta_filter_configs[s->bps-1]);
        if (s->format == FORMAT_ENCRYPTED) {
            int i;
            for (i = 0; i < 8; i++)
                filter->qm[i] = sign_extend(s->crc_pass[i], 8);
        }
        ff_tta_rice_init(&s->ch_ctx[i].rice, 10, 10);
Justin Ruggles's avatar
Justin Ruggles committed
255
    }
256

257
    i = 0;
Justin Ruggles's avatar
Justin Ruggles committed
258 259 260 261 262 263 264
    for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++) {
        int32_t *predictor = &s->ch_ctx[cur_chan].predictor;
        TTAFilter *filter = &s->ch_ctx[cur_chan].filter;
        TTARice *rice = &s->ch_ctx[cur_chan].rice;
        uint32_t unary, depth, k;
        int32_t value;

265
        unary = get_unary(&gb, 0, get_bits_left(&gb));
Justin Ruggles's avatar
Justin Ruggles committed
266 267 268 269 270 271 272 273

        if (unary == 0) {
            depth = 0;
            k = rice->k0;
        } else {
            depth = 1;
            k = rice->k1;
            unary--;
274 275
        }

276
        if (get_bits_left(&gb) < k) {
277 278 279
            ret = AVERROR_INVALIDDATA;
            goto error;
        }
280

Justin Ruggles's avatar
Justin Ruggles committed
281
        if (k) {
282 283 284 285
            if (k > MIN_CACHE_BITS) {
                ret = AVERROR_INVALIDDATA;
                goto error;
            }
286
            value = (unary << k) + get_bits(&gb, k);
Justin Ruggles's avatar
Justin Ruggles committed
287 288 289 290 291 292 293
        } else
            value = unary;

        // FIXME: copy paste from original
        switch (depth) {
        case 1:
            rice->sum1 += value - (rice->sum1 >> 4);
294
            if (rice->k1 > 0 && rice->sum1 < ff_tta_shift_16[rice->k1])
Justin Ruggles's avatar
Justin Ruggles committed
295
                rice->k1--;
296
            else if(rice->sum1 > ff_tta_shift_16[rice->k1 + 1])
Justin Ruggles's avatar
Justin Ruggles committed
297
                rice->k1++;
298
            value += ff_tta_shift_1[rice->k0];
Justin Ruggles's avatar
Justin Ruggles committed
299 300
        default:
            rice->sum0 += value - (rice->sum0 >> 4);
301
            if (rice->k0 > 0 && rice->sum0 < ff_tta_shift_16[rice->k0])
Justin Ruggles's avatar
Justin Ruggles committed
302
                rice->k0--;
303
            else if(rice->sum0 > ff_tta_shift_16[rice->k0 + 1])
Justin Ruggles's avatar
Justin Ruggles committed
304 305
                rice->k0++;
        }
306

Justin Ruggles's avatar
Justin Ruggles committed
307
        // extract coded value
308
        *p = 1 + ((value >> 1) ^ ((value & 1) - 1));
309

Justin Ruggles's avatar
Justin Ruggles committed
310
        // run hybrid filter
311 312
        s->dsp.ttafilter_process_dec(filter->qm, filter->dx, filter->dl, &filter->error, p,
                                     filter->shift, filter->round);
313

Justin Ruggles's avatar
Justin Ruggles committed
314
        // fixed order prediction
315
#define PRED(x, k) (int32_t)((((uint64_t)x << k) - x) >> k)
Justin Ruggles's avatar
Justin Ruggles committed
316
        switch (s->bps) {
317 318 319 320
        case 1: *p += PRED(*predictor, 4); break;
        case 2:
        case 3: *p += PRED(*predictor, 5); break;
        case 4: *p +=      *predictor;     break;
Justin Ruggles's avatar
Justin Ruggles committed
321 322 323 324 325 326 327
        }
        *predictor = *p;

        // flip channels
        if (cur_chan < (s->channels-1))
            cur_chan++;
        else {
328
            // decorrelate in case of multiple channels
Justin Ruggles's avatar
Justin Ruggles committed
329 330 331 332
            if (s->channels > 1) {
                int32_t *r = p - 1;
                for (*p += *r / 2; r > p - s->channels; r--)
                    *r = *(r + 1) - *r;
333
            }
Justin Ruggles's avatar
Justin Ruggles committed
334
            cur_chan = 0;
335 336
            i++;
            // check for last frame
337
            if (i == s->last_frame_length && get_bits_left(&gb) / 8 == 4) {
338
                frame->nb_samples = framelen = s->last_frame_length;
339 340
                break;
            }
341
        }
Justin Ruggles's avatar
Justin Ruggles committed
342
    }
343

344 345
    align_get_bits(&gb);
    if (get_bits_left(&gb) < 32) {
346 347 348
        ret = AVERROR_INVALIDDATA;
        goto error;
    }
349
    skip_bits_long(&gb, 32); // frame crc
350

Paul B Mahol's avatar
Paul B Mahol committed
351 352 353
    // convert to output buffer
    switch (s->bps) {
    case 1: {
354
        uint8_t *samples = (uint8_t *)frame->data[0];
Paul B Mahol's avatar
Paul B Mahol committed
355 356 357
        for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++)
            *samples++ = *p + 0x80;
        break;
358
        }
Paul B Mahol's avatar
Paul B Mahol committed
359
    case 2: {
360
        int16_t *samples = (int16_t *)frame->data[0];
Paul B Mahol's avatar
Paul B Mahol committed
361 362 363 364 365 366
        for (p = s->decode_buffer; p < s->decode_buffer + (framelen * s->channels); p++)
            *samples++ = *p;
        break;
        }
    case 3: {
        // shift samples for 24-bit sample format
367
        int32_t *samples = (int32_t *)frame->data[0];
368
        for (i = 0; i < framelen * s->channels; i++)
Paul B Mahol's avatar
Paul B Mahol committed
369 370 371 372 373 374
            *samples++ <<= 8;
        // reset decode buffer
        s->decode_buffer = NULL;
        break;
        }
    }
375

376
    *got_frame_ptr = 1;
377

378
    return buf_size;
379 380 381 382 383
error:
    // reset decode buffer
    if (s->bps == 3)
        s->decode_buffer = NULL;
    return ret;
384 385
}

386 387
static int init_thread_copy(AVCodecContext *avctx)
{
388 389
    TTAContext *s = avctx->priv_data;
    s->avctx = avctx;
390 391 392
    return allocate_buffers(avctx);
}

393
static av_cold int tta_decode_close(AVCodecContext *avctx) {
394 395
    TTAContext *s = avctx->priv_data;

396 397 398
    if (s->bps < 3)
        av_free(s->decode_buffer);
    s->decode_buffer = NULL;
399
    av_freep(&s->ch_ctx);
400 401 402 403

    return 0;
}

404 405 406 407 408 409 410 411 412 413 414 415 416 417
#define OFFSET(x) offsetof(TTAContext, x)
#define DEC (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
static const AVOption options[] = {
    { "password", "Set decoding password", OFFSET(pass), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, DEC },
    { NULL },
};

static const AVClass tta_decoder_class = {
    .class_name = "TTA Decoder",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};

418
AVCodec ff_tta_decoder = {
419
    .name           = "tta",
420
    .long_name      = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
421
    .type           = AVMEDIA_TYPE_AUDIO,
422
    .id             = AV_CODEC_ID_TTA,
423 424 425 426
    .priv_data_size = sizeof(TTAContext),
    .init           = tta_decode_init,
    .close          = tta_decode_close,
    .decode         = tta_decode_frame,
427
    .init_thread_copy = ONLY_IF_THREADS_ENABLED(init_thread_copy),
428
    .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
429
    .priv_class     = &tta_decoder_class,
430
};