cllc.c 13.2 KB
Newer Older
1 2 3
/*
 * Canopus Lossless Codec decoder
 *
4
 * Copyright (c) 2012-2013 Derek Buitenhuis
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * 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
 */

23 24
#include <inttypes.h>

25
#include "libavutil/intreadwrite.h"
26
#include "bswapdsp.h"
27
#include "canopus.h"
28 29
#include "get_bits.h"
#include "avcodec.h"
30
#include "internal.h"
31
#include "thread.h"
32

33 34 35 36
#define VLC_BITS 7
#define VLC_DEPTH 2


37 38
typedef struct CLLCContext {
    AVCodecContext *avctx;
39
    BswapDSPContext bdsp;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

    uint8_t *swapped_buf;
    int      swapped_buf_size;
} CLLCContext;

static int read_code_table(CLLCContext *ctx, GetBitContext *gb, VLC *vlc)
{
    uint8_t symbols[256];
    uint8_t bits[256];
    uint16_t codes[256];
    int num_lens, num_codes, num_codes_sum, prefix;
    int i, j, count;

    prefix        = 0;
    count         = 0;
    num_codes_sum = 0;

    num_lens = get_bits(gb, 5);

59 60 61 62 63 64 65
    if (num_lens > VLC_BITS * VLC_DEPTH) {
        vlc->table = NULL;

        av_log(ctx->avctx, AV_LOG_ERROR, "To long VLCs %d\n", num_lens);
        return AVERROR_INVALIDDATA;
    }

66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    for (i = 0; i < num_lens; i++) {
        num_codes      = get_bits(gb, 9);
        num_codes_sum += num_codes;

        if (num_codes_sum > 256) {
            vlc->table = NULL;

            av_log(ctx->avctx, AV_LOG_ERROR,
                   "Too many VLCs (%d) to be read.\n", num_codes_sum);
            return AVERROR_INVALIDDATA;
        }

        for (j = 0; j < num_codes; j++) {
            symbols[count] = get_bits(gb, 8);
            bits[count]    = i + 1;
            codes[count]   = prefix++;

            count++;
        }
85 86 87 88
        if (prefix > (65535 - 256)/2) {
            vlc->table = NULL;
            return AVERROR_INVALIDDATA;
        }
89 90 91 92

        prefix <<= 1;
    }

93
    return ff_init_vlc_sparse(vlc, VLC_BITS, count, bits, 1, 1,
94 95 96
                              codes, 2, 2, symbols, 1, 1, 0);
}

97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
/*
 * Unlike the RGB24 read/restore, which reads in a component at a time,
 * ARGB read/restore reads in ARGB quads.
 */
static int read_argb_line(CLLCContext *ctx, GetBitContext *gb, int *top_left,
                          VLC *vlc, uint8_t *outbuf)
{
    uint8_t *dst;
    int pred[4];
    int code;
    int i;

    OPEN_READER(bits, gb);

    dst     = outbuf;
    pred[0] = top_left[0];
    pred[1] = top_left[1];
    pred[2] = top_left[2];
    pred[3] = top_left[3];

    for (i = 0; i < ctx->avctx->width; i++) {
        /* Always get the alpha component */
        UPDATE_CACHE(bits, gb);
120
        GET_VLC(code, bits, gb, vlc[0].table, VLC_BITS, VLC_DEPTH);
121 122 123 124 125 126 127 128

        pred[0] += code;
        dst[0]   = pred[0];

        /* Skip the components if they are  entirely transparent */
        if (dst[0]) {
            /* Red */
            UPDATE_CACHE(bits, gb);
129
            GET_VLC(code, bits, gb, vlc[1].table, VLC_BITS, VLC_DEPTH);
130 131 132 133 134 135

            pred[1] += code;
            dst[1]   = pred[1];

            /* Green */
            UPDATE_CACHE(bits, gb);
136
            GET_VLC(code, bits, gb, vlc[2].table, VLC_BITS, VLC_DEPTH);
137 138 139 140 141 142

            pred[2] += code;
            dst[2]   = pred[2];

            /* Blue */
            UPDATE_CACHE(bits, gb);
143
            GET_VLC(code, bits, gb, vlc[3].table, VLC_BITS, VLC_DEPTH);
144 145 146 147 148 149 150 151 152 153 154 155 156 157

            pred[3] += code;
            dst[3]   = pred[3];
        } else {
            dst[1] = 0;
            dst[2] = 0;
            dst[3] = 0;
        }

        dst += 4;
    }

    CLOSE_READER(bits, gb);

158
    top_left[0]  = outbuf[0];
159 160 161

    /* Only stash components if they are not transparent */
    if (top_left[0]) {
162 163 164
        top_left[1] = outbuf[1];
        top_left[2] = outbuf[2];
        top_left[3] = outbuf[3];
165 166 167 168 169
    }

    return 0;
}

170 171
static int read_rgb24_component_line(CLLCContext *ctx, GetBitContext *gb,
                                     int *top_left, VLC *vlc, uint8_t *outbuf)
172 173 174 175 176 177 178 179 180 181 182 183 184
{
    uint8_t *dst;
    int pred, code;
    int i;

    OPEN_READER(bits, gb);

    dst  = outbuf;
    pred = *top_left;

    /* Simultaneously read and restore the line */
    for (i = 0; i < ctx->avctx->width; i++) {
        UPDATE_CACHE(bits, gb);
185
        GET_VLC(code, bits, gb, vlc->table, VLC_BITS, VLC_DEPTH);
186 187 188 189 190 191 192 193 194

        pred  += code;
        dst[0] = pred;
        dst   += 3;
    }

    CLOSE_READER(bits, gb);

    /* Stash the first pixel */
195
    *top_left = outbuf[0];
196 197 198 199

    return 0;
}

200 201 202 203 204 205 206 207 208 209 210 211 212 213
static int read_yuv_component_line(CLLCContext *ctx, GetBitContext *gb,
                                   int *top_left, VLC *vlc, uint8_t *outbuf,
                                   int is_chroma)
{
    int pred, code;
    int i;

    OPEN_READER(bits, gb);

    pred = *top_left;

    /* Simultaneously read and restore the line */
    for (i = 0; i < ctx->avctx->width >> is_chroma; i++) {
        UPDATE_CACHE(bits, gb);
214
        GET_VLC(code, bits, gb, vlc->table, VLC_BITS, VLC_DEPTH);
215 216 217 218 219 220 221 222 223 224 225 226 227

        pred     += code;
        outbuf[i] = pred;
    }

    CLOSE_READER(bits, gb);

    /* Stash the first pixel */
    *top_left = outbuf[0];

    return 0;
}

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
static int decode_argb_frame(CLLCContext *ctx, GetBitContext *gb, AVFrame *pic)
{
    AVCodecContext *avctx = ctx->avctx;
    uint8_t *dst;
    int pred[4];
    int ret;
    int i, j;
    VLC vlc[4];

    pred[0] = 0;
    pred[1] = 0x80;
    pred[2] = 0x80;
    pred[3] = 0x80;

    dst = pic->data[0];

    skip_bits(gb, 16);

    /* Read in code table for each plane */
    for (i = 0; i < 4; i++) {
        ret = read_code_table(ctx, gb, &vlc[i]);
        if (ret < 0) {
            for (j = 0; j <= i; j++)
                ff_free_vlc(&vlc[j]);

            av_log(ctx->avctx, AV_LOG_ERROR,
                   "Could not read code table %d.\n", i);
            return ret;
        }
    }

    /* Read in and restore every line */
    for (i = 0; i < avctx->height; i++) {
        read_argb_line(ctx, gb, pred, vlc, dst);

        dst += pic->linesize[0];
    }

    for (i = 0; i < 4; i++)
        ff_free_vlc(&vlc[i]);

    return 0;
}

272
static int decode_rgb24_frame(CLLCContext *ctx, GetBitContext *gb, AVFrame *pic)
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
{
    AVCodecContext *avctx = ctx->avctx;
    uint8_t *dst;
    int pred[3];
    int ret;
    int i, j;
    VLC vlc[3];

    pred[0] = 0x80;
    pred[1] = 0x80;
    pred[2] = 0x80;

    dst = pic->data[0];

    skip_bits(gb, 16);

    /* Read in code table for each plane */
    for (i = 0; i < 3; i++) {
        ret = read_code_table(ctx, gb, &vlc[i]);
        if (ret < 0) {
            for (j = 0; j <= i; j++)
                ff_free_vlc(&vlc[j]);

            av_log(ctx->avctx, AV_LOG_ERROR,
                   "Could not read code table %d.\n", i);
            return ret;
        }
    }

    /* Read in and restore every line */
    for (i = 0; i < avctx->height; i++) {
        for (j = 0; j < 3; j++)
305
            read_rgb24_component_line(ctx, gb, &pred[j], &vlc[j], &dst[j]);
306 307 308 309 310 311 312 313 314 315

        dst += pic->linesize[0];
    }

    for (i = 0; i < 3; i++)
        ff_free_vlc(&vlc[i]);

    return 0;
}

316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
static int decode_yuv_frame(CLLCContext *ctx, GetBitContext *gb, AVFrame *pic)
{
    AVCodecContext *avctx = ctx->avctx;
    uint8_t block;
    uint8_t *dst[3];
    int pred[3];
    int ret;
    int i, j;
    VLC vlc[2];

    pred[0] = 0x80;
    pred[1] = 0x80;
    pred[2] = 0x80;

    dst[0] = pic->data[0];
    dst[1] = pic->data[1];
    dst[2] = pic->data[2];

    skip_bits(gb, 8);

    block = get_bits(gb, 8);
    if (block) {
        avpriv_request_sample(ctx->avctx, "Blocked YUV");
        return AVERROR_PATCHWELCOME;
    }

    /* Read in code table for luma and chroma */
    for (i = 0; i < 2; i++) {
        ret = read_code_table(ctx, gb, &vlc[i]);
        if (ret < 0) {
            for (j = 0; j <= i; j++)
                ff_free_vlc(&vlc[j]);

            av_log(ctx->avctx, AV_LOG_ERROR,
                   "Could not read code table %d.\n", i);
            return ret;
        }
    }

    /* Read in and restore every line */
    for (i = 0; i < avctx->height; i++) {
        read_yuv_component_line(ctx, gb, &pred[0], &vlc[0], dst[0], 0); /* Y */
        read_yuv_component_line(ctx, gb, &pred[1], &vlc[1], dst[1], 1); /* U */
        read_yuv_component_line(ctx, gb, &pred[2], &vlc[1], dst[2], 1); /* V */

        for (j = 0; j < 3; j++)
            dst[j] += pic->linesize[j];
    }

    for (i = 0; i < 2; i++)
        ff_free_vlc(&vlc[i]);

    return 0;
}

371 372 373 374
static int cllc_decode_frame(AVCodecContext *avctx, void *data,
                             int *got_picture_ptr, AVPacket *avpkt)
{
    CLLCContext *ctx = avctx->priv_data;
375
    AVFrame *pic = data;
376
    ThreadFrame frame = { .f = data };
377 378
    uint8_t *src = avpkt->data;
    uint32_t info_tag, info_offset;
379
    int data_size;
380 381 382
    GetBitContext gb;
    int coding_type, ret;

383 384 385 386 387
    if (avpkt->size < 4 + 4) {
        av_log(avctx, AV_LOG_ERROR, "Frame is too small %d.\n", avpkt->size);
        return AVERROR_INVALIDDATA;
    }

388 389 390 391 392 393
    info_offset = 0;
    info_tag    = AV_RL32(src);
    if (info_tag == MKTAG('I', 'N', 'F', 'O')) {
        info_offset = AV_RL32(src + 4);
        if (info_offset > UINT32_MAX - 8 || info_offset + 8 > avpkt->size) {
            av_log(avctx, AV_LOG_ERROR,
394
                   "Invalid INFO header offset: 0x%08"PRIX32" is too large.\n",
395 396 397
                   info_offset);
            return AVERROR_INVALIDDATA;
        }
398
        ff_canopus_parse_info_tag(avctx, src + 8, info_offset);
399 400 401 402 403

        info_offset += 8;
        src         += info_offset;
    }

404 405 406 407 408 409 410 411 412 413
    data_size = (avpkt->size - info_offset) & ~1;

    /* Make sure our bswap16'd buffer is big enough */
    av_fast_padded_malloc(&ctx->swapped_buf,
                          &ctx->swapped_buf_size, data_size);
    if (!ctx->swapped_buf) {
        av_log(avctx, AV_LOG_ERROR, "Could not allocate swapped buffer.\n");
        return AVERROR(ENOMEM);
    }

414
    /* bswap16 the buffer since CLLC's bitreader works in 16-bit words */
415 416
    ctx->bdsp.bswap16_buf((uint16_t *) ctx->swapped_buf, (uint16_t *) src,
                          data_size / 2);
417

418 419
    if ((ret = init_get_bits8(&gb, ctx->swapped_buf, data_size)) < 0)
        return ret;
420 421 422 423 424 425 426 427 428 429 430 431

    /*
     * Read in coding type. The types are as follows:
     *
     * 0 - YUY2
     * 1 - BGR24 (Triples)
     * 2 - BGR24 (Quads)
     * 3 - BGRA
     */
    coding_type = (AV_RL32(src) >> 8) & 0xFF;
    av_log(avctx, AV_LOG_DEBUG, "Frame coding type: %d\n", coding_type);

432 433 434
    if(get_bits_left(&gb) < avctx->height * avctx->width)
        return AVERROR_INVALIDDATA;

435
    switch (coding_type) {
436 437 438 439
    case 0:
        avctx->pix_fmt             = AV_PIX_FMT_YUV422P;
        avctx->bits_per_raw_sample = 8;

440
        if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
441 442 443 444 445 446 447
            return ret;

        ret = decode_yuv_frame(ctx, &gb, pic);
        if (ret < 0)
            return ret;

        break;
448
    case 1:
449
    case 2:
450
        avctx->pix_fmt             = AV_PIX_FMT_RGB24;
451 452
        avctx->bits_per_raw_sample = 8;

453
        if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
454 455
            return ret;

456
        ret = decode_rgb24_frame(ctx, &gb, pic);
457 458 459
        if (ret < 0)
            return ret;

460 461
        break;
    case 3:
462
        avctx->pix_fmt             = AV_PIX_FMT_ARGB;
463 464
        avctx->bits_per_raw_sample = 8;

465
        if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
466 467 468 469 470 471
            return ret;

        ret = decode_argb_frame(ctx, &gb, pic);
        if (ret < 0)
            return ret;

472 473
        break;
    default:
474
        av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d.\n", coding_type);
475 476 477 478 479 480 481 482 483 484 485
        return AVERROR_INVALIDDATA;
    }

    pic->key_frame = 1;
    pic->pict_type = AV_PICTURE_TYPE_I;

    *got_picture_ptr = 1;

    return avpkt->size;
}

486 487 488 489 490 491 492 493 494 495 496 497 498
#if HAVE_THREADS
static int cllc_init_thread_copy(AVCodecContext *avctx)
{
    CLLCContext *ctx = avctx->priv_data;

    ctx->avctx            = avctx;
    ctx->swapped_buf      = NULL;
    ctx->swapped_buf_size = 0;

    return 0;
}
#endif

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
static av_cold int cllc_decode_close(AVCodecContext *avctx)
{
    CLLCContext *ctx = avctx->priv_data;

    av_freep(&ctx->swapped_buf);

    return 0;
}

static av_cold int cllc_decode_init(AVCodecContext *avctx)
{
    CLLCContext *ctx = avctx->priv_data;

    /* Initialize various context values */
    ctx->avctx            = avctx;
    ctx->swapped_buf      = NULL;
    ctx->swapped_buf_size = 0;

517
    ff_bswapdsp_init(&ctx->bdsp);
518 519 520 521 522 523

    return 0;
}

AVCodec ff_cllc_decoder = {
    .name           = "cllc",
524
    .long_name      = NULL_IF_CONFIG_SMALL("Canopus Lossless Codec"),
525
    .type           = AVMEDIA_TYPE_VIDEO,
526
    .id             = AV_CODEC_ID_CLLC,
527 528
    .priv_data_size = sizeof(CLLCContext),
    .init           = cllc_decode_init,
529
    .init_thread_copy = ONLY_IF_THREADS_ENABLED(cllc_init_thread_copy),
530 531
    .decode         = cllc_decode_frame,
    .close          = cllc_decode_close,
532
    .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
533
    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
534
};