libavcodec/dsicinvideo.c
72450e50
 /*
d6902070
  * Delphine Software International CIN video decoder
72450e50
  * Copyright (c) 2006 Gregory Montoir (cyx@users.sourceforge.net)
  *
  * 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
d6902070
  * Delphine Software International CIN video decoder
72450e50
  */
 
 #include "avcodec.h"
2c124cb6
 #include "bytestream.h"
594d4d5d
 #include "internal.h"
72450e50
 
 typedef enum CinVideoBitmapIndex {
     CIN_CUR_BMP = 0, /* current */
     CIN_PRE_BMP = 1, /* previous */
     CIN_INT_BMP = 2  /* intermediate */
 } CinVideoBitmapIndex;
 
 typedef struct CinVideoContext {
     AVCodecContext *avctx;
01de3c1d
     AVFrame *frame;
72450e50
     unsigned int bitmap_size;
     uint32_t palette[256];
     uint8_t *bitmap_table[3];
 } CinVideoContext;
 
d8245c3b
 static av_cold void destroy_buffers(CinVideoContext *cin)
 {
     int i;
 
     for (i = 0; i < 3; ++i)
         av_freep(&cin->bitmap_table[i]);
 }
 
 static av_cold int allocate_buffers(CinVideoContext *cin)
 {
     int i;
 
     for (i = 0; i < 3; ++i) {
         cin->bitmap_table[i] = av_mallocz(cin->bitmap_size);
         if (!cin->bitmap_table[i]) {
             av_log(cin->avctx, AV_LOG_ERROR, "Can't allocate bitmap buffers.\n");
             destroy_buffers(cin);
             return AVERROR(ENOMEM);
         }
     }
 
     return 0;
 }
72450e50
 
98a6fff9
 static av_cold int cinvideo_decode_init(AVCodecContext *avctx)
72450e50
 {
e4141433
     CinVideoContext *cin = avctx->priv_data;
72450e50
 
     cin->avctx = avctx;
716d413c
     avctx->pix_fmt = AV_PIX_FMT_PAL8;
72450e50
 
01de3c1d
     cin->frame = av_frame_alloc();
     if (!cin->frame)
         return AVERROR(ENOMEM);
72450e50
 
     cin->bitmap_size = avctx->width * avctx->height;
d8245c3b
     if (allocate_buffers(cin))
         return AVERROR(ENOMEM);
72450e50
 
     return 0;
 }
 
fcae3ff1
 static void cin_apply_delta_data(const unsigned char *src, unsigned char *dst,
                                  int size)
72450e50
 {
     while (size--)
         *dst++ += *src++;
 }
 
fcae3ff1
 static int cin_decode_huffman(const unsigned char *src, int src_size,
                               unsigned char *dst, int dst_size)
72450e50
 {
     int b, huff_code = 0;
     unsigned char huff_code_table[15];
fcae3ff1
     unsigned char *dst_cur       = dst;
     unsigned char *dst_end       = dst + dst_size;
72450e50
     const unsigned char *src_end = src + src_size;
 
fcae3ff1
     memcpy(huff_code_table, src, 15);
     src += 15;
72450e50
 
     while (src < src_end) {
         huff_code = *src++;
         if ((huff_code >> 4) == 15) {
fcae3ff1
             b          = huff_code << 4;
             huff_code  = *src++;
72450e50
             *dst_cur++ = b | (huff_code >> 4);
         } else
             *dst_cur++ = huff_code_table[huff_code >> 4];
         if (dst_cur >= dst_end)
             break;
 
         huff_code &= 15;
         if (huff_code == 15) {
             *dst_cur++ = *src++;
         } else
             *dst_cur++ = huff_code_table[huff_code];
         if (dst_cur >= dst_end)
             break;
     }
 
     return dst_cur - dst;
 }
 
fcae3ff1
 static int cin_decode_lzss(const unsigned char *src, int src_size,
                            unsigned char *dst, int dst_size)
72450e50
 {
     uint16_t cmd;
     int i, sz, offset, code;
fcae3ff1
     unsigned char *dst_end       = dst + dst_size, *dst_start = dst;
72450e50
     const unsigned char *src_end = src + src_size;
 
     while (src < src_end && dst < dst_end) {
         code = *src++;
         for (i = 0; i < 8 && src < src_end && dst < dst_end; ++i) {
             if (code & (1 << i)) {
                 *dst++ = *src++;
             } else {
fcae3ff1
                 cmd    = AV_RL16(src);
                 src   += 2;
72450e50
                 offset = cmd >> 4;
fcae3ff1
                 if ((int)(dst - dst_start) < offset + 1)
999d38f3
                     return AVERROR_INVALIDDATA;
72450e50
                 sz = (cmd & 0xF) + 2;
fcae3ff1
                 /* don't use memcpy/memmove here as the decoding routine
                  * (ab)uses buffer overlappings to repeat bytes in the
                  * destination */
72450e50
                 sz = FFMIN(sz, dst_end - dst);
                 while (sz--) {
                     *dst = *(dst - offset - 1);
                     ++dst;
                 }
             }
         }
     }
c95fefa0
 
d8d1fbbd
     return 0;
72450e50
 }
 
75fbe41f
 static int cin_decode_rle(const unsigned char *src, int src_size,
fcae3ff1
                            unsigned char *dst, int dst_size)
72450e50
 {
     int len, code;
fcae3ff1
     unsigned char *dst_end       = dst + dst_size;
72450e50
     const unsigned char *src_end = src + src_size;
 
47f0bead
     while (src + 1 < src_end && dst < dst_end) {
72450e50
         code = *src++;
         if (code & 0x80) {
             len = code - 0x7F;
             memset(dst, *src++, FFMIN(len, dst_end - dst));
         } else {
             len = code + 1;
47f0bead
             if (len > src_end-src) {
0efcf16a
                 av_log(NULL, AV_LOG_ERROR, "RLE overread\n");
47f0bead
                 return AVERROR_INVALIDDATA;
             }
dd0bfc3a
             memcpy(dst, src, FFMIN3(len, dst_end - dst, src_end - src));
72450e50
             src += len;
         }
         dst += len;
     }
47f0bead
     return 0;
72450e50
 }
 
 static int cinvideo_decode_frame(AVCodecContext *avctx,
df9b9567
                                  void *data, int *got_frame,
7a00bbad
                                  AVPacket *avpkt)
72450e50
 {
fcae3ff1
     const uint8_t *buf   = avpkt->data;
     int buf_size         = avpkt->size;
e4141433
     CinVideoContext *cin = avctx->priv_data;
fcae3ff1
     int i, y, palette_type, palette_colors_count,
         bitmap_frame_type, bitmap_frame_size, res = 0;
72450e50
 
fcae3ff1
     palette_type         = buf[0];
     palette_colors_count = AV_RL16(buf + 1);
     bitmap_frame_type    = buf[3];
     buf                 += 4;
72450e50
 
     bitmap_frame_size = buf_size - 4;
 
     /* handle palette */
8e5f093c
     if (bitmap_frame_size < palette_colors_count * (3 + (palette_type != 0)))
         return AVERROR_INVALIDDATA;
72450e50
     if (palette_type == 0) {
3035c403
         if (palette_colors_count > 256)
             return AVERROR_INVALIDDATA;
72450e50
         for (i = 0; i < palette_colors_count; ++i) {
75fbe41f
             cin->palette[i]    = 0xFFU << 24 | bytestream_get_le24(&buf);
72450e50
             bitmap_frame_size -= 3;
         }
     } else {
         for (i = 0; i < palette_colors_count; ++i) {
75fbe41f
             cin->palette[buf[0]] = 0xFFU << 24 | AV_RL24(buf + 1);
fcae3ff1
             buf                 += 4;
             bitmap_frame_size   -= 4;
72450e50
         }
     }
 
fcae3ff1
     /* note: the decoding routines below assumes that
      * surface.width = surface.pitch */
72450e50
     switch (bitmap_frame_type) {
     case 9:
         cin_decode_rle(buf, bitmap_frame_size,
fcae3ff1
                        cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         break;
     case 34:
         cin_decode_rle(buf, bitmap_frame_size,
fcae3ff1
                        cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
fcae3ff1
                              cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         break;
     case 35:
7faa1776
         bitmap_frame_size = cin_decode_huffman(buf, bitmap_frame_size,
fcae3ff1
                            cin->bitmap_table[CIN_INT_BMP], cin->bitmap_size);
72450e50
         cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
fcae3ff1
                        cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         break;
     case 36:
         bitmap_frame_size = cin_decode_huffman(buf, bitmap_frame_size,
fcae3ff1
                                                cin->bitmap_table[CIN_INT_BMP],
                                                cin->bitmap_size);
72450e50
         cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
fcae3ff1
                        cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
fcae3ff1
                              cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         break;
     case 37:
         cin_decode_huffman(buf, bitmap_frame_size,
fcae3ff1
                            cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         break;
     case 38:
999d38f3
         res = cin_decode_lzss(buf, bitmap_frame_size,
                               cin->bitmap_table[CIN_CUR_BMP],
                               cin->bitmap_size);
         if (res < 0)
             return res;
72450e50
         break;
     case 39:
999d38f3
         res = cin_decode_lzss(buf, bitmap_frame_size,
                               cin->bitmap_table[CIN_CUR_BMP],
                               cin->bitmap_size);
         if (res < 0)
             return res;
72450e50
         cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
fcae3ff1
                              cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
72450e50
         break;
     }
 
5219afc0
     if ((res = ff_reget_buffer(avctx, cin->frame)) < 0)
296f9c2b
         return res;
999d38f3
 
01de3c1d
     memcpy(cin->frame->data[1], cin->palette, sizeof(cin->palette));
     cin->frame->palette_has_changed = 1;
72450e50
     for (y = 0; y < cin->avctx->height; ++y)
01de3c1d
         memcpy(cin->frame->data[0] + (cin->avctx->height - 1 - y) * cin->frame->linesize[0],
fcae3ff1
                cin->bitmap_table[CIN_CUR_BMP] + y * cin->avctx->width,
                cin->avctx->width);
72450e50
 
fcae3ff1
     FFSWAP(uint8_t *, cin->bitmap_table[CIN_CUR_BMP],
                       cin->bitmap_table[CIN_PRE_BMP]);
72450e50
 
01de3c1d
     if ((res = av_frame_ref(data, cin->frame)) < 0)
759001c5
         return res;
 
df9b9567
     *got_frame = 1;
72450e50
 
     return buf_size;
 }
 
98a6fff9
 static av_cold int cinvideo_decode_end(AVCodecContext *avctx)
72450e50
 {
e4141433
     CinVideoContext *cin = avctx->priv_data;
72450e50
 
01de3c1d
     av_frame_free(&cin->frame);
72450e50
 
d8245c3b
     destroy_buffers(cin);
72450e50
 
     return 0;
 }
 
e7e2df27
 AVCodec ff_dsicinvideo_decoder = {
ec6402b7
     .name           = "dsicinvideo",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Delphine Software International CIN video"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_DSICINVIDEO,
ec6402b7
     .priv_data_size = sizeof(CinVideoContext),
     .init           = cinvideo_decode_init,
     .close          = cinvideo_decode_end,
     .decode         = cinvideo_decode_frame,
     .capabilities   = CODEC_CAP_DR1,
72450e50
 };