xxan.c 12.6 KB
Newer Older
Kostya Shishkov's avatar
Kostya Shishkov committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Wing Commander/Xan Video Decoder
 * Copyright (C) 2011 Konstantin Shishkov
 * based on work by Mike Melanson
 *
 * 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
 */

#include "avcodec.h"
#include "libavutil/intreadwrite.h"
#include "bytestream.h"
26
#define BITSTREAM_READER_LE
Kostya Shishkov's avatar
Kostya Shishkov committed
27 28 29 30 31 32 33 34 35 36 37
#include "get_bits.h"
// for av_memcpy_backptr
#include "libavutil/lzo.h"

typedef struct XanContext {
    AVCodecContext *avctx;
    AVFrame pic;

    uint8_t *y_buffer;
    uint8_t *scratch_buffer;
    int     buffer_size;
38
    GetByteContext gb;
Kostya Shishkov's avatar
Kostya Shishkov committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
} XanContext;

static av_cold int xan_decode_init(AVCodecContext *avctx)
{
    XanContext *s = avctx->priv_data;

    s->avctx = avctx;

    avctx->pix_fmt = PIX_FMT_YUV420P;

    s->buffer_size = avctx->width * avctx->height;
    s->y_buffer = av_malloc(s->buffer_size);
    if (!s->y_buffer)
        return AVERROR(ENOMEM);
    s->scratch_buffer = av_malloc(s->buffer_size + 130);
    if (!s->scratch_buffer) {
        av_freep(&s->y_buffer);
        return AVERROR(ENOMEM);
    }

    return 0;
}

62
static int xan_unpack_luma(XanContext *s,
Kostya Shishkov's avatar
Kostya Shishkov committed
63 64
                           uint8_t *dst, const int dst_size)
{
65 66 67 68 69 70
    int tree_size, eof;
    int bits, mask;
    int tree_root, node;
    const uint8_t *dst_end = dst + dst_size;
    GetByteContext tree = s->gb;
    int start_off = bytestream2_tell(&tree);
Kostya Shishkov's avatar
Kostya Shishkov committed
71

72 73 74 75
    tree_size = bytestream2_get_byte(&s->gb);
    eof       = bytestream2_get_byte(&s->gb);
    tree_root = eof + tree_size;
    bytestream2_skip(&s->gb, tree_size * 2);
Kostya Shishkov's avatar
Kostya Shishkov committed
76

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    node = tree_root;
    bits = bytestream2_get_byte(&s->gb);
    mask = 0x80;
    for (;;) {
        int bit = !!(bits & mask);
        mask >>= 1;
        bytestream2_seek(&tree, start_off + node*2 + bit - eof * 2, SEEK_SET);
        node = bytestream2_get_byte(&tree);
        if (node == eof)
            break;
        if (node < eof) {
            *dst++ = node;
            if (dst > dst_end)
                break;
            node = tree_root;
        }
        if (!mask) {
            if (bytestream2_get_bytes_left(&s->gb) <= 0)
                break;
            bits = bytestream2_get_byteu(&s->gb);
            mask = 0x80;
        }
    }
    return dst != dst_end ? AVERROR_INVALIDDATA : 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
101 102 103
}

/* almost the same as in xan_wc3 decoder */
104 105
static int xan_unpack(XanContext *s,
                      uint8_t *dest, const int dest_len)
Kostya Shishkov's avatar
Kostya Shishkov committed
106 107 108 109 110 111 112
{
    uint8_t opcode;
    int size;
    uint8_t *orig_dest = dest;
    const uint8_t *dest_end = dest + dest_len;

    while (dest < dest_end) {
113 114 115 116
        if (bytestream2_get_bytes_left(&s->gb) <= 0)
            return AVERROR_INVALIDDATA;

        opcode = bytestream2_get_byteu(&s->gb);
Kostya Shishkov's avatar
Kostya Shishkov committed
117 118 119 120 121

        if (opcode < 0xe0) {
            int size2, back;
            if ((opcode & 0x80) == 0) {
                size  = opcode & 3;
122
                back  = ((opcode & 0x60) << 3) + bytestream2_get_byte(&s->gb) + 1;
Kostya Shishkov's avatar
Kostya Shishkov committed
123 124
                size2 = ((opcode & 0x1c) >> 2) + 3;
            } else if ((opcode & 0x40) == 0) {
125 126
                size  = bytestream2_peek_byte(&s->gb) >> 6;
                back  = (bytestream2_get_be16(&s->gb) & 0x3fff) + 1;
Kostya Shishkov's avatar
Kostya Shishkov committed
127 128 129
                size2 = (opcode & 0x3f) + 4;
            } else {
                size  = opcode & 3;
130 131
                back  = ((opcode & 0x10) << 12) + bytestream2_get_be16(&s->gb) + 1;
                size2 = ((opcode & 0x0c) <<  6) + bytestream2_get_byte(&s->gb) + 5;
Kostya Shishkov's avatar
Kostya Shishkov committed
132 133 134
                if (size + size2 > dest_end - dest)
                    break;
            }
135
            if (dest + size + size2 > dest_end ||
136
                dest - orig_dest + size < back)
Kostya Shishkov's avatar
Kostya Shishkov committed
137
                return -1;
138
            bytestream2_get_buffer(&s->gb, dest, size);
Kostya Shishkov's avatar
Kostya Shishkov committed
139 140 141 142 143 144 145
            dest += size;
            av_memcpy_backptr(dest, back, size2);
            dest += size2;
        } else {
            int finish = opcode >= 0xfc;

            size = finish ? opcode & 3 : ((opcode & 0x1f) << 2) + 4;
146
            if (dest_end - dest < size)
Kostya Shishkov's avatar
Kostya Shishkov committed
147
                return -1;
148
            bytestream2_get_buffer(&s->gb, dest, size);
Kostya Shishkov's avatar
Kostya Shishkov committed
149 150 151 152 153 154 155 156
            dest += size;
            if (finish)
                break;
        }
    }
    return dest - orig_dest;
}

157
static int xan_decode_chroma(AVCodecContext *avctx, unsigned chroma_off)
Kostya Shishkov's avatar
Kostya Shishkov committed
158 159 160 161 162 163 164
{
    XanContext *s = avctx->priv_data;
    uint8_t *U, *V;
    int val, uval, vval;
    int i, j;
    const uint8_t *src, *src_end;
    const uint8_t *table;
165
    int mode, offset, dec_size, table_size;
Kostya Shishkov's avatar
Kostya Shishkov committed
166 167 168

    if (!chroma_off)
        return 0;
169
    if (chroma_off + 4 >= bytestream2_get_bytes_left(&s->gb)) {
Kostya Shishkov's avatar
Kostya Shishkov committed
170 171 172
        av_log(avctx, AV_LOG_ERROR, "Invalid chroma block position\n");
        return -1;
    }
173
    bytestream2_seek(&s->gb, chroma_off + 4, SEEK_SET);
174 175 176 177 178
    mode        = bytestream2_get_le16(&s->gb);
    table       = s->gb.buffer;
    table_size  = bytestream2_get_le16(&s->gb);
    offset      = table_size * 2;
    table_size += 1;
Kostya Shishkov's avatar
Kostya Shishkov committed
179

180
    if (offset >= bytestream2_get_bytes_left(&s->gb)) {
Kostya Shishkov's avatar
Kostya Shishkov committed
181 182 183 184
        av_log(avctx, AV_LOG_ERROR, "Invalid chroma block offset\n");
        return -1;
    }

185
    bytestream2_skip(&s->gb, offset);
Kostya Shishkov's avatar
Kostya Shishkov committed
186
    memset(s->scratch_buffer, 0, s->buffer_size);
187
    dec_size = xan_unpack(s, s->scratch_buffer, s->buffer_size);
Kostya Shishkov's avatar
Kostya Shishkov committed
188 189 190 191 192 193 194 195 196 197 198 199
    if (dec_size < 0) {
        av_log(avctx, AV_LOG_ERROR, "Chroma unpacking failed\n");
        return -1;
    }

    U = s->pic.data[1];
    V = s->pic.data[2];
    src     = s->scratch_buffer;
    src_end = src + dec_size;
    if (mode) {
        for (j = 0; j < avctx->height >> 1; j++) {
            for (i = 0; i < avctx->width >> 1; i++) {
200 201
                if (src_end - src < 1)
                    return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
202 203
                val = *src++;
                if (val) {
204
                    if (val >= table_size)
205
                        return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
                    val  = AV_RL16(table + (val << 1));
                    uval = (val >> 3) & 0xF8;
                    vval = (val >> 8) & 0xF8;
                    U[i] = uval | (uval >> 5);
                    V[i] = vval | (vval >> 5);
                }
            }
            U += s->pic.linesize[1];
            V += s->pic.linesize[2];
        }
    } else {
        uint8_t *U2 = U + s->pic.linesize[1];
        uint8_t *V2 = V + s->pic.linesize[2];

        for (j = 0; j < avctx->height >> 2; j++) {
            for (i = 0; i < avctx->width >> 1; i += 2) {
222 223
                if (src_end - src < 1)
                    return 0;
Kostya Shishkov's avatar
Kostya Shishkov committed
224 225
                val = *src++;
                if (val) {
226
                    if (val >= table_size)
227
                        return AVERROR_INVALIDDATA;
Kostya Shishkov's avatar
Kostya Shishkov committed
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
                    val  = AV_RL16(table + (val << 1));
                    uval = (val >> 3) & 0xF8;
                    vval = (val >> 8) & 0xF8;
                    U[i] = U[i+1] = U2[i] = U2[i+1] = uval | (uval >> 5);
                    V[i] = V[i+1] = V2[i] = V2[i+1] = vval | (vval >> 5);
                }
            }
            U  += s->pic.linesize[1] * 2;
            V  += s->pic.linesize[2] * 2;
            U2 += s->pic.linesize[1] * 2;
            V2 += s->pic.linesize[2] * 2;
        }
    }

    return 0;
}

245
static int xan_decode_frame_type0(AVCodecContext *avctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
246 247 248 249
{
    XanContext *s = avctx->priv_data;
    uint8_t *ybuf, *prev_buf, *src = s->scratch_buffer;
    unsigned  chroma_off, corr_off;
250
    int cur, last;
Kostya Shishkov's avatar
Kostya Shishkov committed
251 252 253
    int i, j;
    int ret;

254 255
    chroma_off = bytestream2_get_le32(&s->gb);
    corr_off   = bytestream2_get_le32(&s->gb);
Kostya Shishkov's avatar
Kostya Shishkov committed
256

257
    if ((ret = xan_decode_chroma(avctx, chroma_off)) != 0)
Kostya Shishkov's avatar
Kostya Shishkov committed
258 259
        return ret;

260
    if (corr_off >= bytestream2_size(&s->gb)) {
Kostya Shishkov's avatar
Kostya Shishkov committed
261 262 263
        av_log(avctx, AV_LOG_WARNING, "Ignoring invalid correction block position\n");
        corr_off = 0;
    }
264 265
    bytestream2_seek(&s->gb, 12, SEEK_SET);
    ret = xan_unpack_luma(s, src, s->buffer_size >> 1);
Kostya Shishkov's avatar
Kostya Shishkov committed
266 267 268 269 270 271 272 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
    if (ret) {
        av_log(avctx, AV_LOG_ERROR, "Luma decoding failed\n");
        return ret;
    }

    ybuf = s->y_buffer;
    last = *src++;
    ybuf[0] = last << 1;
    for (j = 1; j < avctx->width - 1; j += 2) {
        cur = (last + *src++) & 0x1F;
        ybuf[j]   = last + cur;
        ybuf[j+1] = cur << 1;
        last = cur;
    }
    ybuf[j]  = last << 1;
    prev_buf = ybuf;
    ybuf += avctx->width;

    for (i = 1; i < avctx->height; i++) {
        last = ((prev_buf[0] >> 1) + *src++) & 0x1F;
        ybuf[0] = last << 1;
        for (j = 1; j < avctx->width - 1; j += 2) {
            cur = ((prev_buf[j + 1] >> 1) + *src++) & 0x1F;
            ybuf[j]   = last + cur;
            ybuf[j+1] = cur << 1;
            last = cur;
        }
        ybuf[j] = last << 1;
        prev_buf = ybuf;
        ybuf += avctx->width;
    }

    if (corr_off) {
299
        int dec_size;
Kostya Shishkov's avatar
Kostya Shishkov committed
300

301 302
        bytestream2_seek(&s->gb, 8 + corr_off, SEEK_SET);
        dec_size = xan_unpack(s, s->scratch_buffer, s->buffer_size);
Kostya Shishkov's avatar
Kostya Shishkov committed
303 304
        if (dec_size < 0)
            dec_size = 0;
305 306 307
        else
            dec_size = FFMIN(dec_size, s->buffer_size/2 - 1);

Kostya Shishkov's avatar
Kostya Shishkov committed
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
        for (i = 0; i < dec_size; i++)
            s->y_buffer[i*2+1] = (s->y_buffer[i*2+1] + (s->scratch_buffer[i] << 1)) & 0x3F;
    }

    src  = s->y_buffer;
    ybuf = s->pic.data[0];
    for (j = 0; j < avctx->height; j++) {
        for (i = 0; i < avctx->width; i++)
            ybuf[i] = (src[i] << 2) | (src[i] >> 3);
        src  += avctx->width;
        ybuf += s->pic.linesize[0];
    }

    return 0;
}

324
static int xan_decode_frame_type1(AVCodecContext *avctx)
Kostya Shishkov's avatar
Kostya Shishkov committed
325 326 327 328 329 330 331
{
    XanContext *s = avctx->priv_data;
    uint8_t *ybuf, *src = s->scratch_buffer;
    int cur, last;
    int i, j;
    int ret;

332
    if ((ret = xan_decode_chroma(avctx, bytestream2_get_le32(&s->gb))) != 0)
Kostya Shishkov's avatar
Kostya Shishkov committed
333 334
        return ret;

335 336
    bytestream2_seek(&s->gb, 16, SEEK_SET);
    ret = xan_unpack_luma(s, src,
Kostya Shishkov's avatar
Kostya Shishkov committed
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 371 372 373 374 375 376
                          s->buffer_size >> 1);
    if (ret) {
        av_log(avctx, AV_LOG_ERROR, "Luma decoding failed\n");
        return ret;
    }

    ybuf = s->y_buffer;
    for (i = 0; i < avctx->height; i++) {
        last = (ybuf[0] + (*src++ << 1)) & 0x3F;
        ybuf[0] = last;
        for (j = 1; j < avctx->width - 1; j += 2) {
            cur = (ybuf[j + 1] + (*src++ << 1)) & 0x3F;
            ybuf[j]   = (last + cur) >> 1;
            ybuf[j+1] = cur;
            last = cur;
        }
        ybuf[j] = last;
        ybuf += avctx->width;
    }

    src = s->y_buffer;
    ybuf = s->pic.data[0];
    for (j = 0; j < avctx->height; j++) {
        for (i = 0; i < avctx->width; i++)
            ybuf[i] = (src[i] << 2) | (src[i] >> 3);
        src  += avctx->width;
        ybuf += s->pic.linesize[0];
    }

    return 0;
}

static int xan_decode_frame(AVCodecContext *avctx,
                            void *data, int *data_size,
                            AVPacket *avpkt)
{
    XanContext *s = avctx->priv_data;
    int ftype;
    int ret;

377
    s->pic.reference = 3;
Kostya Shishkov's avatar
Kostya Shishkov committed
378 379 380 381 382 383 384 385
    s->pic.buffer_hints = FF_BUFFER_HINTS_VALID |
                          FF_BUFFER_HINTS_PRESERVE |
                          FF_BUFFER_HINTS_REUSABLE;
    if ((ret = avctx->reget_buffer(avctx, &s->pic))) {
        av_log(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
        return ret;
    }

386 387
    bytestream2_init(&s->gb, avpkt->data, avpkt->size);
    ftype = bytestream2_get_le32(&s->gb);
Kostya Shishkov's avatar
Kostya Shishkov committed
388 389
    switch (ftype) {
    case 0:
390
        ret = xan_decode_frame_type0(avctx);
Kostya Shishkov's avatar
Kostya Shishkov committed
391 392
        break;
    case 1:
393
        ret = xan_decode_frame_type1(avctx);
Kostya Shishkov's avatar
Kostya Shishkov committed
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
        break;
    default:
        av_log(avctx, AV_LOG_ERROR, "Unknown frame type %d\n", ftype);
        return -1;
    }
    if (ret)
        return ret;

    *data_size = sizeof(AVFrame);
    *(AVFrame*)data = s->pic;

    return avpkt->size;
}

static av_cold int xan_decode_end(AVCodecContext *avctx)
{
    XanContext *s = avctx->priv_data;

    if (s->pic.data[0])
        avctx->release_buffer(avctx, &s->pic);

    av_freep(&s->y_buffer);
    av_freep(&s->scratch_buffer);

    return 0;
}

AVCodec ff_xan_wc4_decoder = {
422 423
    .name           = "xan_wc4",
    .type           = AVMEDIA_TYPE_VIDEO,
424
    .id             = AV_CODEC_ID_XAN_WC4,
425 426 427 428 429
    .priv_data_size = sizeof(XanContext),
    .init           = xan_decode_init,
    .close          = xan_decode_end,
    .decode         = xan_decode_frame,
    .capabilities   = CODEC_CAP_DR1,
430
    .long_name      = NULL_IF_CONFIG_SMALL("Wing Commander IV / Xxan"),
Kostya Shishkov's avatar
Kostya Shishkov committed
431
};