libavcodec/anm.c
a1ae40fd
 /*
  * 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
  */
 
 /**
ba87f080
  * @file
a1ae40fd
  * Deluxe Paint Animation decoder
  */
 
 #include "avcodec.h"
 #include "bytestream.h"
759001c5
 #include "internal.h"
a1ae40fd
 
 typedef struct AnmContext {
759001c5
     AVFrame *frame;
62931e11
     int palette[AVPALETTE_COUNT];
5b4d026a
     GetByteContext gb;
a1ae40fd
     int x;  ///< x coordinate position
 } AnmContext;
 
 static av_cold int decode_init(AVCodecContext *avctx)
 {
     AnmContext *s = avctx->priv_data;
     int i;
 
716d413c
     avctx->pix_fmt = AV_PIX_FMT_PAL8;
a1ae40fd
 
759001c5
     s->frame = av_frame_alloc();
     if (!s->frame)
         return AVERROR(ENOMEM);
 
5b4d026a
     bytestream2_init(&s->gb, avctx->extradata, avctx->extradata_size);
691f9be6
     if (bytestream2_get_bytes_left(&s->gb) < 16 * 8 + 4 * 256) {
         av_frame_free(&s->frame);
0baec57d
         return AVERROR_INVALIDDATA;
691f9be6
     }
a1ae40fd
 
5b4d026a
     bytestream2_skipu(&s->gb, 16 * 8);
a1ae40fd
     for (i = 0; i < 256; i++)
5b4d026a
         s->palette[i] = bytestream2_get_le32u(&s->gb);
a1ae40fd
 
     return 0;
 }
 
 /**
  * Perform decode operation
4051be6f
  * @param dst     pointer to destination image buffer
  * @param dst_end pointer to end of destination image buffer
  * @param gb GetByteContext (optional, see below)
a1ae40fd
  * @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
  *
5b4d026a
  * a copy operation is achieved when 'gb' is set
09f21198
  * 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
a1ae40fd
  */
 static inline int op(uint8_t **dst, const uint8_t *dst_end,
5b4d026a
                      GetByteContext *gb,
a1ae40fd
                      int pixel, int count,
                      int *x, int width, int linesize)
 {
     int remaining = width - *x;
     while(count > 0) {
         int striplen = FFMIN(count, remaining);
5b4d026a
         if (gb) {
             if (bytestream2_get_bytes_left(gb) < striplen)
39993860
                 goto exhausted;
5b4d026a
             bytestream2_get_bufferu(gb, *dst, striplen);
a1ae40fd
         } 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,
df9b9567
                         void *data, int *got_frame,
a1ae40fd
                         AVPacket *avpkt)
 {
     AnmContext *s = avctx->priv_data;
     const int buf_size = avpkt->size;
     uint8_t *dst, *dst_end;
0baec57d
     int count, ret;
a1ae40fd
 
1ec94b0f
     if ((ret = ff_reget_buffer(avctx, s->frame)) < 0)
0baec57d
         return ret;
759001c5
     dst     = s->frame->data[0];
     dst_end = s->frame->data[0] + s->frame->linesize[0]*avctx->height;
a1ae40fd
 
5b4d026a
     bytestream2_init(&s->gb, avpkt->data, buf_size);
 
     if (bytestream2_get_byte(&s->gb) != 0x42) {
6d97484d
         avpriv_request_sample(avctx, "Unknown record type");
0baec57d
         return AVERROR_INVALIDDATA;
a1ae40fd
     }
5b4d026a
     if (bytestream2_get_byte(&s->gb)) {
6d97484d
         avpriv_request_sample(avctx, "Padding bytes");
0baec57d
         return AVERROR_PATCHWELCOME;
a1ae40fd
     }
5b4d026a
     bytestream2_skip(&s->gb, 2);
a1ae40fd
 
     s->x = 0;
     do {
         /* if statements are ordered by probability */
5b4d026a
 #define OP(gb, pixel, count) \
759001c5
     op(&dst, dst_end, (gb), (pixel), (count), &s->x, avctx->width, s->frame->linesize[0])
a1ae40fd
 
5b4d026a
         int type = bytestream2_get_byte(&s->gb);
a1ae40fd
         count = type & 0x7F;
         type >>= 7;
         if (count) {
5b4d026a
             if (OP(type ? NULL : &s->gb, -1, count)) break;
a1ae40fd
         } else if (!type) {
             int pixel;
5b4d026a
             count = bytestream2_get_byte(&s->gb);  /* count==0 gives nop */
             pixel = bytestream2_get_byte(&s->gb);
a1ae40fd
             if (OP(NULL, pixel, count)) break;
         } else {
             int pixel;
5b4d026a
             type = bytestream2_get_le16(&s->gb);
a1ae40fd
             count = type & 0x3FFF;
             type >>= 14;
             if (!count) {
                 if (type == 0)
                     break; // stop
                 if (type == 2) {
6d97484d
                     avpriv_request_sample(avctx, "Unknown opcode");
f3298f12
                     return AVERROR_PATCHWELCOME;
a1ae40fd
                 }
                 continue;
             }
5b4d026a
             pixel = type == 3 ? bytestream2_get_byte(&s->gb) : -1;
a1ae40fd
             if (type == 1) count += 0x4000;
5b4d026a
             if (OP(type == 2 ? &s->gb : NULL, pixel, count)) break;
a1ae40fd
         }
5b4d026a
     } while (bytestream2_get_bytes_left(&s->gb) > 0);
a1ae40fd
 
759001c5
     memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE);
62931e11
 
df9b9567
     *got_frame = 1;
759001c5
     if ((ret = av_frame_ref(data, s->frame)) < 0)
         return ret;
 
a1ae40fd
     return buf_size;
 }
 
 static av_cold int decode_end(AVCodecContext *avctx)
 {
     AnmContext *s = avctx->priv_data;
759001c5
 
     av_frame_free(&s->frame);
a1ae40fd
     return 0;
 }
 
e7e2df27
 AVCodec ff_anm_decoder = {
ec6402b7
     .name           = "anm",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_ANM,
ec6402b7
     .priv_data_size = sizeof(AnmContext),
     .init           = decode_init,
     .close          = decode_end,
     .decode         = decode_frame,
def97856
     .capabilities   = AV_CODEC_CAP_DR1,
91ed4e71
     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
a1ae40fd
 };