anm.c 6.03 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
 * Deluxe Paint Animation decoder
 */

#include "avcodec.h"
#include "bytestream.h"
29
#include "internal.h"
30 31

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

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

43
    avctx->pix_fmt = AV_PIX_FMT_PAL8;
44

45 46 47 48
    s->frame = av_frame_alloc();
    if (!s->frame)
        return AVERROR(ENOMEM);

49
    bytestream2_init(&s->gb, avctx->extradata, avctx->extradata_size);
50 51
    if (bytestream2_get_bytes_left(&s->gb) < 16 * 8 + 4 * 256) {
        av_frame_free(&s->frame);
52
        return AVERROR_INVALIDDATA;
53
    }
54

55
    bytestream2_skipu(&s->gb, 16 * 8);
56
    for (i = 0; i < 256; i++)
57
        s->palette[i] = bytestream2_get_le32u(&s->gb);
58 59 60 61 62 63

    return 0;
}

/**
 * Perform decode operation
64 65 66
 * @param dst     pointer to destination image buffer
 * @param dst_end pointer to end of destination image buffer
 * @param gb GetByteContext (optional, see below)
67 68 69 70 71 72 73
 * @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
 *
74
 * a copy operation is achieved when 'gb' is set
75 76
 * 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
77 78
 */
static inline int op(uint8_t **dst, const uint8_t *dst_end,
79
                     GetByteContext *gb,
80 81 82 83 84 85
                     int pixel, int count,
                     int *x, int width, int linesize)
{
    int remaining = width - *x;
    while(count > 0) {
        int striplen = FFMIN(count, remaining);
86 87
        if (gb) {
            if (bytestream2_get_bytes_left(gb) < striplen)
88
                goto exhausted;
89
            bytestream2_get_bufferu(gb, *dst, striplen);
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
        } 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,
114
                        void *data, int *got_frame,
115 116 117 118 119
                        AVPacket *avpkt)
{
    AnmContext *s = avctx->priv_data;
    const int buf_size = avpkt->size;
    uint8_t *dst, *dst_end;
120
    int count, ret;
121

122
    if ((ret = ff_reget_buffer(avctx, s->frame)) < 0)
123
        return ret;
124 125
    dst     = s->frame->data[0];
    dst_end = s->frame->data[0] + s->frame->linesize[0]*avctx->height;
126

127 128 129
    bytestream2_init(&s->gb, avpkt->data, buf_size);

    if (bytestream2_get_byte(&s->gb) != 0x42) {
130
        avpriv_request_sample(avctx, "Unknown record type");
131
        return AVERROR_INVALIDDATA;
132
    }
133
    if (bytestream2_get_byte(&s->gb)) {
134
        avpriv_request_sample(avctx, "Padding bytes");
135
        return AVERROR_PATCHWELCOME;
136
    }
137
    bytestream2_skip(&s->gb, 2);
138 139 140 141

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

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

175
    memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE);
176

177
    *got_frame = 1;
178 179 180
    if ((ret = av_frame_ref(data, s->frame)) < 0)
        return ret;

181 182 183 184 185 186
    return buf_size;
}

static av_cold int decode_end(AVCodecContext *avctx)
{
    AnmContext *s = avctx->priv_data;
187 188

    av_frame_free(&s->frame);
189 190 191
    return 0;
}

192
AVCodec ff_anm_decoder = {
193
    .name           = "anm",
194
    .long_name      = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"),
195
    .type           = AVMEDIA_TYPE_VIDEO,
196
    .id             = AV_CODEC_ID_ANM,
197 198 199 200 201
    .priv_data_size = sizeof(AnmContext),
    .init           = decode_init,
    .close          = decode_end,
    .decode         = decode_frame,
    .capabilities   = CODEC_CAP_DR1,
202
};