anm.c 6.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Deluxe Paint Animation decoder
 * Copyright (c) 2009 Peter Ross
 *
 * 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
 * @file
24 25 26 27 28 29 30 31
 * Deluxe Paint Animation decoder
 */

#include "avcodec.h"
#include "bytestream.h"

typedef struct AnmContext {
    AVFrame frame;
32
    int palette[AVPALETTE_COUNT];
33
    GetByteContext gb;
34 35 36 37 38 39 40 41
    int x;  ///< x coordinate position
} AnmContext;

static av_cold int decode_init(AVCodecContext *avctx)
{
    AnmContext *s = avctx->priv_data;
    int i;

42
    avctx->pix_fmt = AV_PIX_FMT_PAL8;
43

44
    avcodec_get_frame_defaults(&s->frame);
45
    s->frame.reference = 3;
46 47
    bytestream2_init(&s->gb, avctx->extradata, avctx->extradata_size);
    if (bytestream2_get_bytes_left(&s->gb) < 16 * 8 + 4 * 256)
48
        return AVERROR_INVALIDDATA;
49

50
    bytestream2_skipu(&s->gb, 16 * 8);
51
    for (i = 0; i < 256; i++)
52
        s->palette[i] = bytestream2_get_le32u(&s->gb);
53 54 55 56 57 58

    return 0;
}

/**
 * Perform decode operation
59 60 61
 * @param dst     pointer to destination image buffer
 * @param dst_end pointer to end of destination image buffer
 * @param gb GetByteContext (optional, see below)
62 63 64 65 66 67 68
 * @param pixel Fill color (optional, see below)
 * @param count Pixel count
 * @param x Pointer to x-axis counter
 * @param width Image width
 * @param linesize Destination image buffer linesize
 * @return non-zero if destination buffer is exhausted
 *
69
 * a copy operation is achieved when 'gb' is set
70 71
 * a fill operation is achieved when 'gb' is null and pixel is >= 0
 * a skip operation is achieved when 'gb' is null and pixel is < 0
72 73
 */
static inline int op(uint8_t **dst, const uint8_t *dst_end,
74
                     GetByteContext *gb,
75 76 77 78 79 80
                     int pixel, int count,
                     int *x, int width, int linesize)
{
    int remaining = width - *x;
    while(count > 0) {
        int striplen = FFMIN(count, remaining);
81 82
        if (gb) {
            if (bytestream2_get_bytes_left(gb) < striplen)
83
                goto exhausted;
84
            bytestream2_get_bufferu(gb, *dst, striplen);
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
        } else if (pixel >= 0)
            memset(*dst, pixel, striplen);
        *dst      += striplen;
        remaining -= striplen;
        count     -= striplen;
        if (remaining <= 0) {
            *dst      += linesize - width;
            remaining  = width;
        }
        if (linesize > 0) {
            if (*dst >= dst_end) goto exhausted;
        } else {
            if (*dst <= dst_end) goto exhausted;
        }
    }
    *x = width - remaining;
    return 0;

exhausted:
    *x = width - remaining;
    return 1;
}

static int decode_frame(AVCodecContext *avctx,
109
                        void *data, int *got_frame,
110 111 112 113 114
                        AVPacket *avpkt)
{
    AnmContext *s = avctx->priv_data;
    const int buf_size = avpkt->size;
    uint8_t *dst, *dst_end;
115
    int count, ret;
116

117
    if ((ret = avctx->reget_buffer(avctx, &s->frame)) < 0){
118
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
119
        return ret;
120 121 122 123
    }
    dst     = s->frame.data[0];
    dst_end = s->frame.data[0] + s->frame.linesize[0]*avctx->height;

124 125 126
    bytestream2_init(&s->gb, avpkt->data, buf_size);

    if (bytestream2_get_byte(&s->gb) != 0x42) {
127
        av_log_ask_for_sample(avctx, "unknown record type\n");
128
        return AVERROR_INVALIDDATA;
129
    }
130
    if (bytestream2_get_byte(&s->gb)) {
131
        av_log_ask_for_sample(avctx, "padding bytes not supported\n");
132
        return AVERROR_PATCHWELCOME;
133
    }
134
    bytestream2_skip(&s->gb, 2);
135 136 137 138

    s->x = 0;
    do {
        /* if statements are ordered by probability */
139 140
#define OP(gb, pixel, count) \
    op(&dst, dst_end, (gb), (pixel), (count), &s->x, avctx->width, s->frame.linesize[0])
141

142
        int type = bytestream2_get_byte(&s->gb);
143 144 145
        count = type & 0x7F;
        type >>= 7;
        if (count) {
146
            if (OP(type ? NULL : &s->gb, -1, count)) break;
147 148
        } else if (!type) {
            int pixel;
149 150
            count = bytestream2_get_byte(&s->gb);  /* count==0 gives nop */
            pixel = bytestream2_get_byte(&s->gb);
151 152 153
            if (OP(NULL, pixel, count)) break;
        } else {
            int pixel;
154
            type = bytestream2_get_le16(&s->gb);
155 156 157 158 159 160 161
            count = type & 0x3FFF;
            type >>= 14;
            if (!count) {
                if (type == 0)
                    break; // stop
                if (type == 2) {
                    av_log_ask_for_sample(avctx, "unknown opcode");
162
                    return AVERROR_PATCHWELCOME;
163 164 165
                }
                continue;
            }
166
            pixel = type == 3 ? bytestream2_get_byte(&s->gb) : -1;
167
            if (type == 1) count += 0x4000;
168
            if (OP(type == 2 ? &s->gb : NULL, pixel, count)) break;
169
        }
170
    } while (bytestream2_get_bytes_left(&s->gb) > 0);
171

172 173
    memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);

174
    *got_frame = 1;
175 176 177 178 179 180 181 182 183 184 185 186
    *(AVFrame*)data = s->frame;
    return buf_size;
}

static av_cold int decode_end(AVCodecContext *avctx)
{
    AnmContext *s = avctx->priv_data;
    if (s->frame.data[0])
        avctx->release_buffer(avctx, &s->frame);
    return 0;
}

187
AVCodec ff_anm_decoder = {
188 189
    .name           = "anm",
    .type           = AVMEDIA_TYPE_VIDEO,
190
    .id             = AV_CODEC_ID_ANM,
191 192 193 194 195
    .priv_data_size = sizeof(AnmContext),
    .init           = decode_init,
    .close          = decode_end,
    .decode         = decode_frame,
    .capabilities   = CODEC_CAP_DR1,
196
    .long_name      = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"),
197
};