rpza.c 9.41 KB
Newer Older
1 2
/*
 * Quicktime Video (RPZA) Video Decoder
3
 * Copyright (c) 2003 The FFmpeg Project
4
 *
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
 * QT RPZA Video Decoder by Roberto Togni
25 26 27 28 29 30 31 32
 * For more information about the RPZA format, visit:
 *   http://www.pcisys.net/~melanson/codecs/
 *
 * The RPZA decoder outputs RGB555 colorspace data.
 *
 * Note that this decoder reads big endian RGB555 pixel values from the
 * bytestream, arranges them in the host's endian order, and outputs
 * them to the final rendered map in the same host endian order. This is
33 34
 * intended behavior as the libavcodec documentation states that RGB555
 * pixels shall be stored in native CPU endianness.
35 36
 */

37
#include <stdint.h>
38 39 40 41
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

42
#include "libavutil/internal.h"
43
#include "avcodec.h"
44
#include "bytestream.h"
45
#include "internal.h"
46 47 48 49

typedef struct RpzaContext {

    AVCodecContext *avctx;
50
    AVFrame *frame;
51

52
    GetByteContext gb;
53 54
} RpzaContext;

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
#define CHECK_BLOCK()                                                         \
    if (total_blocks < 1) {                                                    \
        av_log(s->avctx, AV_LOG_ERROR,                                         \
               "Block counter just went negative (this should not happen)\n"); \
        return AVERROR_INVALIDDATA;                                            \
    }                                                                          \

#define ADVANCE_BLOCK()             \
    {                               \
        pixel_ptr += 4;             \
        if (pixel_ptr >= width)     \
        {                           \
            pixel_ptr = 0;          \
            row_ptr  += stride * 4; \
        }                           \
        total_blocks--;             \
    }
72

73
static int rpza_decode_stream(RpzaContext *s)
74 75
{
    int width = s->avctx->width;
76
    int stride = s->frame->linesize[0] / 2;
77 78
    int row_inc = stride - 4;
    int chunk_size;
79 80 81 82
    uint16_t colorA = 0, colorB;
    uint16_t color4[4];
    uint16_t ta, tb;
    uint16_t *pixels = (uint16_t *)s->frame->data[0];
83 84 85 86 87 88 89 90

    int row_ptr = 0;
    int pixel_ptr = 0;
    int block_ptr;
    int pixel_x, pixel_y;
    int total_blocks;

    /* First byte is always 0xe1. Warn if it's different */
91
    if (bytestream2_peek_byte(&s->gb) != 0xe1)
92
        av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0xe1\n",
93
               bytestream2_peek_byte(&s->gb));
94 95

    /* Get chunk size, ingnoring first byte */
96
    chunk_size = bytestream2_get_be32(&s->gb) & 0x00FFFFFF;
97 98

    /* If length mismatch use size from MOV file and try to decode anyway */
99
    if (chunk_size != bytestream2_get_bytes_left(&s->gb) + 4)
100 101 102
        av_log(s->avctx, AV_LOG_WARNING,
               "MOV chunk size %d != encoded chunk size %d\n",
               chunk_size,
103
               bytestream2_get_bytes_left(&s->gb) + 4
104
              );
105 106

    /* Number of 4x4 blocks in frame. */
107
    total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4);
108 109

    /* Process chunk data */
110
    while (bytestream2_get_bytes_left(&s->gb)) {
111
        uint8_t opcode = bytestream2_get_byte(&s->gb); /* Get opcode */
112

113
        int n_blocks = (opcode & 0x1f) + 1; /* Extract block counter from opcode */
114 115 116

        /* If opcode MSbit is 0, we need more data to decide what to do */
        if ((opcode & 0x80) == 0) {
117
            colorA = (opcode << 8) | bytestream2_get_byte(&s->gb);
118
            opcode = 0;
119
            if ((bytestream2_peek_byte(&s->gb) & 0x80) != 0) {
120 121
                /* Must behave as opcode 110xxxxx, using colorA computed
                 * above. Use fake opcode 0x20 to enter switch block at
122 123 124 125 126 127
                 * the right place */
                opcode = 0x20;
                n_blocks = 1;
            }
        }

128 129
        n_blocks = FFMIN(n_blocks, total_blocks);

130 131 132 133 134
        switch (opcode & 0xe0) {

        /* Skip blocks */
        case 0x80:
            while (n_blocks--) {
135 136
                CHECK_BLOCK();
                ADVANCE_BLOCK();
137 138 139 140 141
            }
            break;

        /* Fill blocks with one color */
        case 0xa0:
142
            colorA = bytestream2_get_be16(&s->gb);
143
            while (n_blocks--) {
144
                CHECK_BLOCK();
145 146 147 148 149 150 151 152 153 154 155 156 157 158
                block_ptr = row_ptr + pixel_ptr;
                for (pixel_y = 0; pixel_y < 4; pixel_y++) {
                    for (pixel_x = 0; pixel_x < 4; pixel_x++){
                        pixels[block_ptr] = colorA;
                        block_ptr++;
                    }
                    block_ptr += row_inc;
                }
                ADVANCE_BLOCK();
            }
            break;

        /* Fill blocks with 4 colors */
        case 0xc0:
159
            colorA = bytestream2_get_be16(&s->gb);
160
        case 0x20:
161
            colorB = bytestream2_get_be16(&s->gb);
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186

            /* sort out the colors */
            color4[0] = colorB;
            color4[1] = 0;
            color4[2] = 0;
            color4[3] = colorA;

            /* red components */
            ta = (colorA >> 10) & 0x1F;
            tb = (colorB >> 10) & 0x1F;
            color4[1] |= ((11 * ta + 21 * tb) >> 5) << 10;
            color4[2] |= ((21 * ta + 11 * tb) >> 5) << 10;

            /* green components */
            ta = (colorA >> 5) & 0x1F;
            tb = (colorB >> 5) & 0x1F;
            color4[1] |= ((11 * ta + 21 * tb) >> 5) << 5;
            color4[2] |= ((21 * ta + 11 * tb) >> 5) << 5;

            /* blue components */
            ta = colorA & 0x1F;
            tb = colorB & 0x1F;
            color4[1] |= ((11 * ta + 21 * tb) >> 5);
            color4[2] |= ((21 * ta + 11 * tb) >> 5);

187
            if (bytestream2_get_bytes_left(&s->gb) < n_blocks * 4)
188
                return AVERROR_INVALIDDATA;
189
            while (n_blocks--) {
190
                CHECK_BLOCK();
191 192
                block_ptr = row_ptr + pixel_ptr;
                for (pixel_y = 0; pixel_y < 4; pixel_y++) {
193
                    uint8_t index = bytestream2_get_byteu(&s->gb);
194
                    for (pixel_x = 0; pixel_x < 4; pixel_x++){
195
                        uint8_t idx = (index >> (2 * (3 - pixel_x))) & 0x03;
196 197 198 199 200 201 202 203 204 205 206
                        pixels[block_ptr] = color4[idx];
                        block_ptr++;
                    }
                    block_ptr += row_inc;
                }
                ADVANCE_BLOCK();
            }
            break;

        /* Fill block with 16 colors */
        case 0x00:
207
            if (bytestream2_get_bytes_left(&s->gb) < 30)
208 209
                return AVERROR_INVALIDDATA;
            CHECK_BLOCK();
210 211 212 213
            block_ptr = row_ptr + pixel_ptr;
            for (pixel_y = 0; pixel_y < 4; pixel_y++) {
                for (pixel_x = 0; pixel_x < 4; pixel_x++){
                    /* We already have color of upper left pixel */
214 215
                    if ((pixel_y != 0) || (pixel_x != 0))
                        colorA = bytestream2_get_be16u(&s->gb);
216 217 218 219 220 221 222 223 224 225
                    pixels[block_ptr] = colorA;
                    block_ptr++;
                }
                block_ptr += row_inc;
            }
            ADVANCE_BLOCK();
            break;

        /* Unknown opcode */
        default:
226
            av_log(s->avctx, AV_LOG_ERROR, "Unknown opcode %d in rpza chunk."
227
                 " Skip remaining %d bytes of chunk data.\n", opcode,
228
                 bytestream2_get_bytes_left(&s->gb));
229
            return AVERROR_INVALIDDATA;
230 231
        } /* Opcode switch */
    }
232 233

    return 0;
234 235
}

236
static av_cold int rpza_decode_init(AVCodecContext *avctx)
237
{
238
    RpzaContext *s = avctx->priv_data;
239 240

    s->avctx = avctx;
241
    avctx->pix_fmt = AV_PIX_FMT_RGB555;
242

243 244 245
    s->frame = av_frame_alloc();
    if (!s->frame)
        return AVERROR(ENOMEM);
246 247 248 249 250

    return 0;
}

static int rpza_decode_frame(AVCodecContext *avctx,
251
                             void *data, int *got_frame,
252
                             AVPacket *avpkt)
253
{
254
    RpzaContext *s = avctx->priv_data;
255
    int ret;
256

257
    bytestream2_init(&s->gb, avpkt->data, avpkt->size);
258

259
    if ((ret = ff_reget_buffer(avctx, s->frame)) < 0)
260
        return ret;
261

262 263 264
    ret = rpza_decode_stream(s);
    if (ret < 0)
        return ret;
265

266
    if ((ret = av_frame_ref(data, s->frame)) < 0)
267 268
        return ret;

269
    *got_frame      = 1;
270 271

    /* always report that the buffer was completely consumed */
272
    return avpkt->size;
273 274
}

275
static av_cold int rpza_decode_end(AVCodecContext *avctx)
276
{
277
    RpzaContext *s = avctx->priv_data;
278

279
    av_frame_free(&s->frame);
280 281 282 283

    return 0;
}

284
AVCodec ff_rpza_decoder = {
285
    .name           = "rpza",
286
    .long_name      = NULL_IF_CONFIG_SMALL("QuickTime video (RPZA)"),
287
    .type           = AVMEDIA_TYPE_VIDEO,
288
    .id             = AV_CODEC_ID_RPZA,
289 290 291 292
    .priv_data_size = sizeof(RpzaContext),
    .init           = rpza_decode_init,
    .close          = rpza_decode_end,
    .decode         = rpza_decode_frame,
293
    .capabilities   = AV_CODEC_CAP_DR1,
294
};