shorten.c 19.9 KB
Newer Older
1 2 3 4
/*
 * Shorten decoder
 * Copyright (c) 2005 Jeff Muizelaar
 *
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 25 26 27 28 29 30
 * Shorten decoder
 * @author Jeff Muizelaar
 *
 */

#include <limits.h>
#include "avcodec.h"
31
#include "bytestream.h"
32
#include "get_bits.h"
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#include "golomb.h"

#define MAX_CHANNELS 8
#define MAX_BLOCKSIZE 65535

#define OUT_BUFFER_SIZE 16384

#define ULONGSIZE 2

#define WAVE_FORMAT_PCM 0x0001

#define DEFAULT_BLOCK_SIZE 256

#define TYPESIZE 4
#define CHANSIZE 0
#define LPCQSIZE 2
#define ENERGYSIZE 3
#define BITSHIFTSIZE 2

52 53
#define TYPE_S8    1
#define TYPE_U8    2
54
#define TYPE_S16HL 3
55
#define TYPE_U16HL 4
56
#define TYPE_S16LH 5
57
#define TYPE_U16LH 6
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

#define NWRAP 3
#define NSKIPSIZE 1

#define LPCQUANT 5
#define V2LPCQOFFSET (1 << LPCQUANT)

#define FNSIZE 2
#define FN_DIFF0        0
#define FN_DIFF1        1
#define FN_DIFF2        2
#define FN_DIFF3        3
#define FN_QUIT         4
#define FN_BLOCKSIZE    5
#define FN_BITSHIFT     6
#define FN_QLPC         7
#define FN_ZERO         8
#define FN_VERBATIM     9

77 78 79
/** indicates if the FN_* command is audio or non-audio */
static const uint8_t is_audio_command[10] = { 1, 1, 1, 1, 0, 0, 0, 1, 1, 0 };

80 81 82 83 84 85
#define VERBATIM_CKSIZE_SIZE 5
#define VERBATIM_BYTE_SIZE 8
#define CANONICAL_HEADER_SIZE 44

typedef struct ShortenContext {
    AVCodecContext *avctx;
86
    AVFrame frame;
87 88 89 90 91 92
    GetBitContext gb;

    int min_framesize, max_framesize;
    int channels;

    int32_t *decoded[MAX_CHANNELS];
93
    int32_t *decoded_base[MAX_CHANNELS];
94
    int32_t *offset[MAX_CHANNELS];
95
    int *coeffs;
96 97 98
    uint8_t *bitstream;
    int bitstream_size;
    int bitstream_index;
99
    unsigned int allocated_bitstream_size;
100 101 102 103 104 105 106 107 108 109 110
    int header_size;
    uint8_t header[OUT_BUFFER_SIZE];
    int version;
    int cur_chan;
    int bitshift;
    int nmean;
    int internal_ftype;
    int nwrap;
    int blocksize;
    int bitindex;
    int32_t lpcqoffset;
111
    int got_header;
112
    int got_quit_command;
113 114
} ShortenContext;

115
static av_cold int shorten_decode_init(AVCodecContext * avctx)
116 117 118 119
{
    ShortenContext *s = avctx->priv_data;
    s->avctx = avctx;

120 121 122
    avcodec_get_frame_defaults(&s->frame);
    avctx->coded_frame = &s->frame;

123 124 125
    return 0;
}

126
static int allocate_buffers(ShortenContext *s)
127 128
{
    int i, chan;
129
    int *coeffs;
130
    void *tmp_ptr;
131

132
    for (chan=0; chan<s->channels; chan++) {
133 134 135 136 137 138 139 140 141
        if(FFMAX(1, s->nmean) >= UINT_MAX/sizeof(int32_t)){
            av_log(s->avctx, AV_LOG_ERROR, "nmean too large\n");
            return -1;
        }
        if(s->blocksize + s->nwrap >= UINT_MAX/sizeof(int32_t) || s->blocksize + s->nwrap <= (unsigned)s->nwrap){
            av_log(s->avctx, AV_LOG_ERROR, "s->blocksize + s->nwrap too large\n");
            return -1;
        }

142 143 144 145
        tmp_ptr = av_realloc(s->offset[chan], sizeof(int32_t)*FFMAX(1, s->nmean));
        if (!tmp_ptr)
            return AVERROR(ENOMEM);
        s->offset[chan] = tmp_ptr;
146

147 148
        tmp_ptr = av_realloc(s->decoded_base[chan], (s->blocksize + s->nwrap) *
                             sizeof(s->decoded_base[0][0]));
149 150
        if (!tmp_ptr)
            return AVERROR(ENOMEM);
151
        s->decoded_base[chan] = tmp_ptr;
152
        for (i=0; i<s->nwrap; i++)
153 154
            s->decoded_base[chan][i] = 0;
        s->decoded[chan] = s->decoded_base[chan] + s->nwrap;
155
    }
156 157 158 159 160 161

    coeffs = av_realloc(s->coeffs, s->nwrap * sizeof(*s->coeffs));
    if (!coeffs)
        return AVERROR(ENOMEM);
    s->coeffs = coeffs;

162
    return 0;
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
}


static inline unsigned int get_uint(ShortenContext *s, int k)
{
    if (s->version != 0)
        k = get_ur_golomb_shorten(&s->gb, ULONGSIZE);
    return get_ur_golomb_shorten(&s->gb, k);
}


static void fix_bitshift(ShortenContext *s, int32_t *buffer)
{
    int i;

    if (s->bitshift != 0)
        for (i = 0; i < s->blocksize; i++)
180
            buffer[i] <<= s->bitshift;
181 182 183
}


184
static int init_offset(ShortenContext *s)
185 186 187 188 189 190 191
{
    int32_t mean = 0;
    int  chan, i;
    int nblock = FFMAX(1, s->nmean);
    /* initialise offset */
    switch (s->internal_ftype)
    {
192
        case TYPE_U8:
193
            s->avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
194 195
            mean = 0x80;
            break;
196 197
        case TYPE_S16HL:
        case TYPE_S16LH:
198
            s->avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
199 200
            break;
        default:
201
            av_log(s->avctx, AV_LOG_ERROR, "unknown audio type\n");
202
            return AVERROR_INVALIDDATA;
203 204 205 206 207
    }

    for (chan = 0; chan < s->channels; chan++)
        for (i = 0; i < nblock; i++)
            s->offset[chan][i] = mean;
208
    return 0;
209 210
}

211 212
static int decode_wave_header(AVCodecContext *avctx, const uint8_t *header,
                              int header_size)
213
{
214
    int len, bps;
215
    short wave_format;
216
    const uint8_t *end= header + header_size;
217 218

    if (bytestream_get_le32(&header) != MKTAG('R','I','F','F')) {
219 220 221 222
        av_log(avctx, AV_LOG_ERROR, "missing RIFF tag\n");
        return -1;
    }

223
    header += 4; /* chunk size */;
224

225
    if (bytestream_get_le32(&header) != MKTAG('W','A','V','E')) {
226 227 228 229
        av_log(avctx, AV_LOG_ERROR, "missing WAVE tag\n");
        return -1;
    }

230 231
    while (bytestream_get_le32(&header) != MKTAG('f','m','t',' ')) {
        len = bytestream_get_le32(&header);
232 233
        if(len<0 || end - header - 8 < len)
            return AVERROR_INVALIDDATA;
234
        header += len;
235
    }
236
    len = bytestream_get_le32(&header);
237 238 239 240 241 242

    if (len < 16) {
        av_log(avctx, AV_LOG_ERROR, "fmt chunk was too short\n");
        return -1;
    }

243
    wave_format = bytestream_get_le16(&header);
244 245 246 247 248 249 250 251 252

    switch (wave_format) {
        case WAVE_FORMAT_PCM:
            break;
        default:
            av_log(avctx, AV_LOG_ERROR, "unsupported wave format\n");
            return -1;
    }

253 254 255 256
    header += 2;        // skip channels    (already got from shorten header)
    avctx->sample_rate = bytestream_get_le32(&header);
    header += 4;        // skip bit rate    (represents original uncompressed bit rate)
    header += 2;        // skip block align (not needed)
257 258
    bps     = bytestream_get_le16(&header);
    avctx->bits_per_coded_sample = bps;
259

260 261
    if (bps != 16 && bps != 8) {
        av_log(avctx, AV_LOG_ERROR, "unsupported number of bits per sample: %d\n", bps);
262 263 264 265 266 267 268 269 270 271
        return -1;
    }

    len -= 16;
    if (len > 0)
        av_log(avctx, AV_LOG_INFO, "%d header bytes unparsed\n", len);

    return 0;
}

272 273 274 275 276 277 278
static const int fixed_coeffs[3][3] = {
    { 1,  0,  0 },
    { 2, -1,  0 },
    { 3, -3,  1 }
};

static int decode_subframe_lpc(ShortenContext *s, int command, int channel,
279
                               int residual_size, int32_t coffset)
280
{
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
    int pred_order, sum, qshift, init_sum, i, j;
    const int *coeffs;

    if (command == FN_QLPC) {
        /* read/validate prediction order */
        pred_order = get_ur_golomb_shorten(&s->gb, LPCQSIZE);
        if (pred_order > s->nwrap) {
            av_log(s->avctx, AV_LOG_ERROR, "invalid pred_order %d\n", pred_order);
            return AVERROR(EINVAL);
        }
        /* read LPC coefficients */
        for (i=0; i<pred_order; i++)
            s->coeffs[i] = get_sr_golomb_shorten(&s->gb, LPCQUANT);
        coeffs = s->coeffs;

        qshift = LPCQUANT;
    } else {
        /* fixed LPC coeffs */
        pred_order = command;
        coeffs     = fixed_coeffs[pred_order-1];
        qshift     = 0;
302
    }
303

304
    /* subtract offset from previous samples to use in prediction */
305
    if (command == FN_QLPC && coffset)
306 307
        for (i = -pred_order; i < 0; i++)
            s->decoded[channel][i] -= coffset;
308

309
    /* decode residual and do LPC prediction */
310
    init_sum = pred_order ? (command == FN_QLPC ? s->lpcqoffset : 0) : coffset;
311
    for (i=0; i < s->blocksize; i++) {
312
        sum = init_sum;
313 314
        for (j=0; j<pred_order; j++)
            sum += coeffs[j] * s->decoded[channel][i-j-1];
315
        s->decoded[channel][i] = get_sr_golomb_shorten(&s->gb, residual_size) + (sum >> qshift);
316
    }
317 318

    /* add offset to current samples */
319
    if (command == FN_QLPC && coffset)
320 321 322 323
        for (i = 0; i < s->blocksize; i++)
            s->decoded[channel][i] += coffset;

    return 0;
324 325
}

326 327
static int read_header(ShortenContext *s)
{
328
    int i, ret;
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
    int maxnlpc = 0;
    /* shorten signature */
    if (get_bits_long(&s->gb, 32) != AV_RB32("ajkg")) {
        av_log(s->avctx, AV_LOG_ERROR, "missing shorten magic 'ajkg'\n");
        return -1;
    }

    s->lpcqoffset = 0;
    s->blocksize = DEFAULT_BLOCK_SIZE;
    s->nmean = -1;
    s->version = get_bits(&s->gb, 8);
    s->internal_ftype = get_uint(s, TYPESIZE);

    s->channels = get_uint(s, CHANSIZE);
    if (s->channels > MAX_CHANNELS) {
        av_log(s->avctx, AV_LOG_ERROR, "too many channels: %d\n", s->channels);
        return -1;
    }
347
    s->avctx->channels = s->channels;
348 349 350

    /* get blocksize if version > 0 */
    if (s->version > 0) {
351 352 353 354 355 356 357 358 359 360
        int skip_bytes, blocksize;

        blocksize = get_uint(s, av_log2(DEFAULT_BLOCK_SIZE));
        if (!blocksize || blocksize > MAX_BLOCKSIZE) {
            av_log(s->avctx, AV_LOG_ERROR, "invalid or unsupported block size: %d\n",
                   blocksize);
            return AVERROR(EINVAL);
        }
        s->blocksize = blocksize;

361 362 363 364 365 366 367 368 369 370
        maxnlpc = get_uint(s, LPCQSIZE);
        s->nmean = get_uint(s, 0);

        skip_bytes = get_uint(s, NSKIPSIZE);
        for (i=0; i<skip_bytes; i++) {
            skip_bits(&s->gb, 8);
        }
    }
    s->nwrap = FFMAX(NWRAP, maxnlpc);

371 372
    if ((ret = allocate_buffers(s)) < 0)
        return ret;
373

374 375
    if ((ret = init_offset(s)) < 0)
        return ret;
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399

    if (s->version > 1)
        s->lpcqoffset = V2LPCQOFFSET;

    if (get_ur_golomb_shorten(&s->gb, FNSIZE) != FN_VERBATIM) {
        av_log(s->avctx, AV_LOG_ERROR, "missing verbatim section at beginning of stream\n");
        return -1;
    }

    s->header_size = get_ur_golomb_shorten(&s->gb, VERBATIM_CKSIZE_SIZE);
    if (s->header_size >= OUT_BUFFER_SIZE || s->header_size < CANONICAL_HEADER_SIZE) {
        av_log(s->avctx, AV_LOG_ERROR, "header is wrong size: %d\n", s->header_size);
        return -1;
    }

    for (i=0; i<s->header_size; i++)
        s->header[i] = (char)get_ur_golomb_shorten(&s->gb, VERBATIM_BYTE_SIZE);

    if (decode_wave_header(s->avctx, s->header, s->header_size) < 0)
        return -1;

    s->cur_chan = 0;
    s->bitshift = 0;

400 401
    s->got_header = 1;

402 403
    return 0;
}
404

405 406
static int shorten_decode_frame(AVCodecContext *avctx, void *data,
                                int *got_frame_ptr, AVPacket *avpkt)
407
{
408 409
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
410 411
    ShortenContext *s = avctx->priv_data;
    int i, input_buf_size = 0;
412 413
    int ret;

414
    /* allocate internal bitstream buffer */
415
    if(s->max_framesize == 0){
416
        void *tmp_ptr;
417
        s->max_framesize= 8192; // should hopefully be enough for the first header
418 419 420 421 422 423 424
        tmp_ptr = av_fast_realloc(s->bitstream, &s->allocated_bitstream_size,
                                  s->max_framesize);
        if (!tmp_ptr) {
            av_log(avctx, AV_LOG_ERROR, "error allocating bitstream buffer\n");
            return AVERROR(ENOMEM);
        }
        s->bitstream = tmp_ptr;
425 426
    }

427
    /* append current packet data to bitstream buffer */
428 429 430 431 432 433 434 435
    if(1 && s->max_framesize){//FIXME truncated
        buf_size= FFMIN(buf_size, s->max_framesize - s->bitstream_size);
        input_buf_size= buf_size;

        if(s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size){
            memmove(s->bitstream, &s->bitstream[s->bitstream_index], s->bitstream_size);
            s->bitstream_index=0;
        }
436 437
        if (buf)
            memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size], buf, buf_size);
438 439 440 441
        buf= &s->bitstream[s->bitstream_index];
        buf_size += s->bitstream_size;
        s->bitstream_size= buf_size;

442 443 444
        /* do not decode until buffer has at least max_framesize bytes or
           the end of the file has been reached */
        if (buf_size < s->max_framesize && avpkt->data) {
445
            *got_frame_ptr = 0;
446 447 448
            return input_buf_size;
        }
    }
449
    /* init and position bitstream reader */
450
    init_get_bits(&s->gb, buf, buf_size*8);
451
    skip_bits(&s->gb, s->bitindex);
452

453
    /* process header or next subblock */
454
    if (!s->got_header) {
455 456
        if ((ret = read_header(s)) < 0)
            return ret;
457
        *got_frame_ptr = 0;
458
        goto finish_frame;
459 460
    }

461 462
    /* if quit command was read previously, don't decode anything */
    if (s->got_quit_command) {
463
        *got_frame_ptr = 0;
464 465
        return avpkt->size;
    }
466

467 468
    s->cur_chan = 0;
    while (s->cur_chan < s->channels) {
469
        unsigned int cmd;
470 471
        int len;

472
        if (get_bits_left(&s->gb) < 3+FNSIZE) {
473
            *got_frame_ptr = 0;
474
            break;
475 476 477 478
        }

        cmd = get_ur_golomb_shorten(&s->gb, FNSIZE);

479 480
        if (cmd > FN_VERBATIM) {
            av_log(avctx, AV_LOG_ERROR, "unknown shorten function %d\n", cmd);
481
            *got_frame_ptr = 0;
482
            break;
483 484
        }

485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
        if (!is_audio_command[cmd]) {
            /* process non-audio command */
            switch (cmd) {
                case FN_VERBATIM:
                    len = get_ur_golomb_shorten(&s->gb, VERBATIM_CKSIZE_SIZE);
                    while (len--) {
                        get_ur_golomb_shorten(&s->gb, VERBATIM_BYTE_SIZE);
                    }
                    break;
                case FN_BITSHIFT:
                    s->bitshift = get_ur_golomb_shorten(&s->gb, BITSHIFTSIZE);
                    break;
                case FN_BLOCKSIZE: {
                    int blocksize = get_uint(s, av_log2(s->blocksize));
                    if (blocksize > s->blocksize) {
                        av_log(avctx, AV_LOG_ERROR, "Increasing block size is not supported\n");
                        return AVERROR_PATCHWELCOME;
                    }
503 504 505 506 507
                    if (!blocksize || blocksize > MAX_BLOCKSIZE) {
                        av_log(avctx, AV_LOG_ERROR, "invalid or unsupported "
                               "block size: %d\n", blocksize);
                        return AVERROR(EINVAL);
                    }
508 509 510 511
                    s->blocksize = blocksize;
                    break;
                }
                case FN_QUIT:
512
                    s->got_quit_command = 1;
513
                    break;
514
            }
515
            if (cmd == FN_BLOCKSIZE || cmd == FN_QUIT) {
516
                *got_frame_ptr = 0;
517 518
                break;
            }
519 520
        } else {
            /* process audio command */
Justin Ruggles's avatar
Justin Ruggles committed
521 522 523
            int residual_size = 0;
            int channel = s->cur_chan;
            int32_t coffset;
524 525

            /* get Rice code for residual decoding */
Justin Ruggles's avatar
Justin Ruggles committed
526 527
            if (cmd != FN_ZERO) {
                residual_size = get_ur_golomb_shorten(&s->gb, ENERGYSIZE);
528
                /* this is a hack as version 0 differed in definition of get_sr_golomb_shorten */
Justin Ruggles's avatar
Justin Ruggles committed
529 530 531
                if (s->version == 0)
                    residual_size--;
            }
532

533
            /* calculate sample offset using means from previous blocks */
Justin Ruggles's avatar
Justin Ruggles committed
534 535 536 537 538 539 540 541
            if (s->nmean == 0)
                coffset = s->offset[channel][0];
            else {
                int32_t sum = (s->version < 2) ? 0 : s->nmean / 2;
                for (i=0; i<s->nmean; i++)
                    sum += s->offset[channel][i];
                coffset = sum / s->nmean;
                if (s->version >= 2)
542
                    coffset = s->bitshift == 0 ? coffset : coffset >> s->bitshift - 1 >> 1;
Justin Ruggles's avatar
Justin Ruggles committed
543
            }
544

545
            /* decode samples for this channel */
546 547 548 549 550 551
            if (cmd == FN_ZERO) {
                for (i=0; i<s->blocksize; i++)
                    s->decoded[channel][i] = 0;
            } else {
                if ((ret = decode_subframe_lpc(s, cmd, channel, residual_size, coffset)) < 0)
                    return ret;
Justin Ruggles's avatar
Justin Ruggles committed
552
            }
553

554
            /* update means with info from the current block */
Justin Ruggles's avatar
Justin Ruggles committed
555 556 557 558
            if (s->nmean > 0) {
                int32_t sum = (s->version < 2) ? 0 : s->blocksize / 2;
                for (i=0; i<s->blocksize; i++)
                    sum += s->decoded[channel][i];
559

Justin Ruggles's avatar
Justin Ruggles committed
560 561
                for (i=1; i<s->nmean; i++)
                    s->offset[channel][i-1] = s->offset[channel][i];
562

Justin Ruggles's avatar
Justin Ruggles committed
563 564 565 566 567
                if (s->version < 2)
                    s->offset[channel][s->nmean - 1] = sum / s->blocksize;
                else
                    s->offset[channel][s->nmean - 1] = (sum / s->blocksize) << s->bitshift;
            }
568

569
            /* copy wrap samples for use with next block */
Justin Ruggles's avatar
Justin Ruggles committed
570 571
            for (i=-s->nwrap; i<0; i++)
                s->decoded[channel][i] = s->decoded[channel][i + s->blocksize];
572

573 574
            /* shift samples to add in unused zero bits which were removed
               during encoding */
Justin Ruggles's avatar
Justin Ruggles committed
575
            fix_bitshift(s, s->decoded[channel]);
576

577
            /* if this is the last channel in the block, output the samples */
Justin Ruggles's avatar
Justin Ruggles committed
578 579
            s->cur_chan++;
            if (s->cur_chan == s->channels) {
580 581 582 583
                uint8_t *samples_u8;
                int16_t *samples_s16;
                int chan;

584 585 586 587 588
                /* get output buffer */
                s->frame.nb_samples = s->blocksize;
                if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
                    av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
                    return ret;
589
                }
590 591 592 593 594

                for (chan = 0; chan < s->channels; chan++) {
                    samples_u8  = ((uint8_t **)s->frame.extended_data)[chan];
                    samples_s16 = ((int16_t **)s->frame.extended_data)[chan];
                    for (i = 0; i < s->blocksize; i++) {
595 596 597 598 599 600 601 602 603 604 605
                        switch (s->internal_ftype) {
                        case TYPE_U8:
                            *samples_u8++ = av_clip_uint8(s->decoded[chan][i]);
                            break;
                        case TYPE_S16HL:
                        case TYPE_S16LH:
                            *samples_s16++ = av_clip_int16(s->decoded[chan][i]);
                            break;
                        }
                    }
                }
606 607 608 609


                *got_frame_ptr   = 1;
                *(AVFrame *)data = s->frame;
610
            }
611 612
        }
    }
613
    if (s->cur_chan < s->channels)
614
        *got_frame_ptr = 0;
615

616
finish_frame:
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
    s->bitindex = get_bits_count(&s->gb) - 8*((get_bits_count(&s->gb))/8);
    i= (get_bits_count(&s->gb))/8;
    if (i > buf_size) {
        av_log(s->avctx, AV_LOG_ERROR, "overread: %d\n", i - buf_size);
        s->bitstream_size=0;
        s->bitstream_index=0;
        return -1;
    }
    if (s->bitstream_size) {
        s->bitstream_index += i;
        s->bitstream_size  -= i;
        return input_buf_size;
    } else
        return i;
}

633
static av_cold int shorten_decode_close(AVCodecContext *avctx)
634 635 636 637 638
{
    ShortenContext *s = avctx->priv_data;
    int i;

    for (i = 0; i < s->channels; i++) {
639 640
        s->decoded[i] = NULL;
        av_freep(&s->decoded_base[i]);
641 642 643
        av_freep(&s->offset[i]);
    }
    av_freep(&s->bitstream);
644
    av_freep(&s->coeffs);
645

646 647 648
    return 0;
}

649
AVCodec ff_shorten_decoder = {
650 651
    .name           = "shorten",
    .type           = AVMEDIA_TYPE_AUDIO,
652
    .id             = AV_CODEC_ID_SHORTEN,
653 654 655 656
    .priv_data_size = sizeof(ShortenContext),
    .init           = shorten_decode_init,
    .close          = shorten_decode_close,
    .decode         = shorten_decode_frame,
657
    .capabilities   = CODEC_CAP_DELAY | CODEC_CAP_DR1,
658
    .long_name      = NULL_IF_CONFIG_SMALL("Shorten"),
659 660
    .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P,
                                                      AV_SAMPLE_FMT_NONE },
661
};