libavcodec/dfa.c
42315dab
 /*
  * Chronomaster DFA Video Decoder
  * Copyright (c) 2011 Konstantin Shishkov
  * based on work by Vladimir "VAG" Gneushev
  *
59bf303d
  * This file is part of FFmpeg.
42315dab
  *
59bf303d
  * FFmpeg is free software; you can redistribute it and/or
42315dab
  * 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.
  *
59bf303d
  * FFmpeg is distributed in the hope that it will be useful,
42315dab
  * 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
59bf303d
  * License along with FFmpeg; if not, write to the Free Software
42315dab
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
cc8163e1
 #include <inttypes.h>
 
42315dab
 #include "avcodec.h"
 #include "bytestream.h"
594d4d5d
 #include "internal.h"
ee715f49
 
8d024c51
 #include "libavutil/avassert.h"
ee715f49
 #include "libavutil/imgutils.h"
5bac2d0c
 #include "libavutil/mem.h"
42315dab
 
 typedef struct DfaContext {
     uint32_t pal[256];
     uint8_t *frame_buf;
 } DfaContext;
 
 static av_cold int dfa_decode_init(AVCodecContext *avctx)
 {
     DfaContext *s = avctx->priv_data;
 
716d413c
     avctx->pix_fmt = AV_PIX_FMT_PAL8;
42315dab
 
6fcd4f3c
     if (!avctx->width || !avctx->height)
         return AVERROR_INVALIDDATA;
 
     av_assert0(av_image_check_size(avctx->width, avctx->height, 0, avctx) >= 0);
ee715f49
 
e831b3b8
     s->frame_buf = av_mallocz(avctx->width * avctx->height);
42315dab
     if (!s->frame_buf)
         return AVERROR(ENOMEM);
 
     return 0;
 }
 
29b0d94b
 static int decode_copy(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     const int size = width * height;
 
29b0d94b
     if (bytestream2_get_buffer(gb, frame, size) != size)
fb5c1aae
         return AVERROR_INVALIDDATA;
42315dab
     return 0;
 }
 
29b0d94b
 static int decode_tsw1(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     const uint8_t *frame_start = frame;
     const uint8_t *frame_end   = frame + width * height;
     int mask = 0x10000, bitbuf = 0;
65daa942
     int v, count, segments;
     unsigned offset;
42315dab
 
29b0d94b
     segments = bytestream2_get_le32(gb);
     offset   = bytestream2_get_le32(gb);
0b378e8a
     if (segments == 0 && offset == frame_end - frame)
         return 0; // skip frame
65daa942
     if (frame_end - frame <= offset)
fb5c1aae
         return AVERROR_INVALIDDATA;
65daa942
     frame += offset;
42315dab
     while (segments--) {
29b0d94b
         if (bytestream2_get_bytes_left(gb) < 2)
fb5c1aae
             return AVERROR_INVALIDDATA;
42315dab
         if (mask == 0x10000) {
29b0d94b
             bitbuf = bytestream2_get_le16u(gb);
42315dab
             mask = 1;
         }
29b0d94b
         if (frame_end - frame < 2)
fb5c1aae
             return AVERROR_INVALIDDATA;
42315dab
         if (bitbuf & mask) {
29b0d94b
             v = bytestream2_get_le16(gb);
42315dab
             offset = (v & 0x1FFF) << 1;
             count = ((v >> 13) + 2) << 1;
d3834587
             if (frame - frame_start < offset || frame_end - frame < count)
fb5c1aae
                 return AVERROR_INVALIDDATA;
42315dab
             av_memcpy_backptr(frame, offset, count);
             frame += count;
         } else {
29b0d94b
             *frame++ = bytestream2_get_byte(gb);
             *frame++ = bytestream2_get_byte(gb);
42315dab
         }
         mask <<= 1;
     }
 
     return 0;
 }
 
29b0d94b
 static int decode_dsw1(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     const uint8_t *frame_start = frame;
     const uint8_t *frame_end   = frame + width * height;
     int mask = 0x10000, bitbuf = 0;
     int v, offset, count, segments;
 
29b0d94b
     segments = bytestream2_get_le16(gb);
42315dab
     while (segments--) {
29b0d94b
         if (bytestream2_get_bytes_left(gb) < 2)
fb5c1aae
             return AVERROR_INVALIDDATA;
42315dab
         if (mask == 0x10000) {
29b0d94b
             bitbuf = bytestream2_get_le16u(gb);
42315dab
             mask = 1;
         }
29b0d94b
         if (frame_end - frame < 2)
fb5c1aae
             return AVERROR_INVALIDDATA;
42315dab
         if (bitbuf & mask) {
29b0d94b
             v = bytestream2_get_le16(gb);
42315dab
             offset = (v & 0x1FFF) << 1;
             count = ((v >> 13) + 2) << 1;
d3834587
             if (frame - frame_start < offset || frame_end - frame < count)
fb5c1aae
                 return AVERROR_INVALIDDATA;
a153e45b
             av_memcpy_backptr(frame, offset, count);
42315dab
             frame += count;
         } else if (bitbuf & (mask << 1)) {
29b0d94b
             frame += bytestream2_get_le16(gb);
42315dab
         } else {
29b0d94b
             *frame++ = bytestream2_get_byte(gb);
             *frame++ = bytestream2_get_byte(gb);
42315dab
         }
         mask <<= 2;
     }
 
     return 0;
 }
 
29b0d94b
 static int decode_dds1(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     const uint8_t *frame_start = frame;
     const uint8_t *frame_end   = frame + width * height;
     int mask = 0x10000, bitbuf = 0;
     int i, v, offset, count, segments;
 
29b0d94b
     segments = bytestream2_get_le16(gb);
42315dab
     while (segments--) {
29b0d94b
         if (bytestream2_get_bytes_left(gb) < 2)
fb5c1aae
             return AVERROR_INVALIDDATA;
42315dab
         if (mask == 0x10000) {
29b0d94b
             bitbuf = bytestream2_get_le16u(gb);
42315dab
             mask = 1;
         }
d05f72c7
 
42315dab
         if (bitbuf & mask) {
29b0d94b
             v = bytestream2_get_le16(gb);
42315dab
             offset = (v & 0x1FFF) << 2;
             count = ((v >> 13) + 2) << 1;
d3834587
             if (frame - frame_start < offset || frame_end - frame < count*2 + width)
fb5c1aae
                 return AVERROR_INVALIDDATA;
42315dab
             for (i = 0; i < count; i++) {
                 frame[0] = frame[1] =
                 frame[width] = frame[width + 1] = frame[-offset];
 
                 frame += 2;
             }
         } else if (bitbuf & (mask << 1)) {
d05f72c7
             v = bytestream2_get_le16(gb)*2;
             if (frame - frame_end < v)
                 return AVERROR_INVALIDDATA;
             frame += v;
42315dab
         } else {
d05f72c7
             if (frame_end - frame < width + 3)
8099187e
                 return AVERROR_INVALIDDATA;
42315dab
             frame[0] = frame[1] =
29b0d94b
             frame[width] = frame[width + 1] =  bytestream2_get_byte(gb);
42315dab
             frame += 2;
             frame[0] = frame[1] =
29b0d94b
             frame[width] = frame[width + 1] =  bytestream2_get_byte(gb);
42315dab
             frame += 2;
         }
         mask <<= 2;
     }
 
     return 0;
 }
 
29b0d94b
 static int decode_bdlt(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     uint8_t *line_ptr;
     int count, lines, segments;
 
29b0d94b
     count = bytestream2_get_le16(gb);
65daa942
     if (count >= height)
fb5c1aae
         return AVERROR_INVALIDDATA;
42315dab
     frame += width * count;
29b0d94b
     lines = bytestream2_get_le16(gb);
     if (count + lines > height)
fb5c1aae
         return AVERROR_INVALIDDATA;
42315dab
 
     while (lines--) {
29b0d94b
         if (bytestream2_get_bytes_left(gb) < 1)
fb5c1aae
             return AVERROR_INVALIDDATA;
42315dab
         line_ptr = frame;
         frame += width;
29b0d94b
         segments = bytestream2_get_byteu(gb);
42315dab
         while (segments--) {
29b0d94b
             if (frame - line_ptr <= bytestream2_peek_byte(gb))
fb5c1aae
                 return AVERROR_INVALIDDATA;
29b0d94b
             line_ptr += bytestream2_get_byte(gb);
             count = (int8_t)bytestream2_get_byte(gb);
42315dab
             if (count >= 0) {
29b0d94b
                 if (frame - line_ptr < count)
fb5c1aae
                     return AVERROR_INVALIDDATA;
29b0d94b
                 if (bytestream2_get_buffer(gb, line_ptr, count) != count)
fb5c1aae
                     return AVERROR_INVALIDDATA;
42315dab
             } else {
                 count = -count;
29b0d94b
                 if (frame - line_ptr < count)
fb5c1aae
                     return AVERROR_INVALIDDATA;
29b0d94b
                 memset(line_ptr, bytestream2_get_byte(gb), count);
42315dab
             }
             line_ptr += count;
         }
     }
 
     return 0;
 }
 
29b0d94b
 static int decode_wdlt(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     const uint8_t *frame_end   = frame + width * height;
     uint8_t *line_ptr;
     int count, i, v, lines, segments;
8099187e
     int y = 0;
42315dab
 
29b0d94b
     lines = bytestream2_get_le16(gb);
     if (lines > height)
fb5c1aae
         return AVERROR_INVALIDDATA;
42315dab
 
     while (lines--) {
29b0d94b
         if (bytestream2_get_bytes_left(gb) < 2)
fb5c1aae
             return AVERROR_INVALIDDATA;
29b0d94b
         segments = bytestream2_get_le16u(gb);
42315dab
         while ((segments & 0xC000) == 0xC000) {
8099187e
             unsigned skip_lines = -(int16_t)segments;
65daa942
             unsigned delta = -((int16_t)segments * width);
8099187e
             if (frame_end - frame <= delta || y + lines + skip_lines > height)
fb5c1aae
                 return AVERROR_INVALIDDATA;
65daa942
             frame    += delta;
8099187e
             y        += skip_lines;
29b0d94b
             segments = bytestream2_get_le16(gb);
42315dab
         }
e9e207ec
 
         if (frame_end <= frame)
             return AVERROR_INVALIDDATA;
42315dab
         if (segments & 0x8000) {
             frame[width - 1] = segments & 0xFF;
29b0d94b
             segments = bytestream2_get_le16(gb);
42315dab
         }
         line_ptr = frame;
3623589e
         if (frame_end - frame < width)
             return AVERROR_INVALIDDATA;
42315dab
         frame += width;
8099187e
         y++;
42315dab
         while (segments--) {
29b0d94b
             if (frame - line_ptr <= bytestream2_peek_byte(gb))
fb5c1aae
                 return AVERROR_INVALIDDATA;
29b0d94b
             line_ptr += bytestream2_get_byte(gb);
             count = (int8_t)bytestream2_get_byte(gb);
42315dab
             if (count >= 0) {
29b0d94b
                 if (frame - line_ptr < count * 2)
fb5c1aae
                     return AVERROR_INVALIDDATA;
29b0d94b
                 if (bytestream2_get_buffer(gb, line_ptr, count * 2) != count * 2)
fb5c1aae
                     return AVERROR_INVALIDDATA;
42315dab
                 line_ptr += count * 2;
             } else {
                 count = -count;
29b0d94b
                 if (frame - line_ptr < count * 2)
fb5c1aae
                     return AVERROR_INVALIDDATA;
29b0d94b
                 v = bytestream2_get_le16(gb);
42315dab
                 for (i = 0; i < count; i++)
                     bytestream_put_le16(&line_ptr, v);
             }
         }
     }
 
     return 0;
 }
 
1adf54de
 static int decode_tdlt(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
1adf54de
     const uint8_t *frame_end = frame + width * height;
     uint32_t segments = bytestream2_get_le32(gb);
56c1b925
     int skip, copy;
1adf54de
 
     while (segments--) {
56c1b925
         if (bytestream2_get_bytes_left(gb) < 2)
1adf54de
             return AVERROR_INVALIDDATA;
56c1b925
         copy = bytestream2_get_byteu(gb) * 2;
         skip = bytestream2_get_byteu(gb) * 2;
         if (frame_end - frame < copy + skip ||
             bytestream2_get_bytes_left(gb) < copy)
1adf54de
             return AVERROR_INVALIDDATA;
56c1b925
         frame += skip;
         bytestream2_get_buffer(gb, frame, copy);
         frame += copy;
1adf54de
     }
 
     return 0;
42315dab
 }
 
29b0d94b
 static int decode_blck(GetByteContext *gb, uint8_t *frame, int width, int height)
42315dab
 {
     memset(frame, 0, width * height);
     return 0;
 }
 
 
29b0d94b
 typedef int (*chunk_decoder)(GetByteContext *gb, uint8_t *frame, int width, int height);
42315dab
 
 static const chunk_decoder decoder[8] = {
     decode_copy, decode_tsw1, decode_bdlt, decode_wdlt,
1adf54de
     decode_tdlt, decode_dsw1, decode_blck, decode_dds1,
42315dab
 };
 
 static const char* chunk_name[8] = {
1adf54de
     "COPY", "TSW1", "BDLT", "WDLT", "TDLT", "DSW1", "BLCK", "DDS1"
42315dab
 };
 
 static int dfa_decode_frame(AVCodecContext *avctx,
df9b9567
                             void *data, int *got_frame,
42315dab
                             AVPacket *avpkt)
 {
759001c5
     AVFrame *frame = data;
42315dab
     DfaContext *s = avctx->priv_data;
29b0d94b
     GetByteContext gb;
42315dab
     const uint8_t *buf = avpkt->data;
     uint32_t chunk_type, chunk_size;
     uint8_t *dst;
     int ret;
     int i, pal_elems;
1557f34b
     int version = avctx->extradata_size==2 ? AV_RL16(avctx->extradata) : 0;
42315dab
 
1ec94b0f
     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
42315dab
         return ret;
 
29b0d94b
     bytestream2_init(&gb, avpkt->data, avpkt->size);
     while (bytestream2_get_bytes_left(&gb) > 0) {
         bytestream2_skip(&gb, 4);
         chunk_size = bytestream2_get_le32(&gb);
         chunk_type = bytestream2_get_le32(&gb);
42315dab
         if (!chunk_type)
             break;
         if (chunk_type == 1) {
             pal_elems = FFMIN(chunk_size / 3, 256);
             for (i = 0; i < pal_elems; i++) {
29b0d94b
                 s->pal[i] = bytestream2_get_be24(&gb) << 2;
b12d92ef
                 s->pal[i] |= 0xFFU << 24 | (s->pal[i] >> 6) & 0x30303;
42315dab
             }
759001c5
             frame->palette_has_changed = 1;
42315dab
         } else if (chunk_type <= 9) {
29b0d94b
             if (decoder[chunk_type - 2](&gb, s->frame_buf, avctx->width, avctx->height)) {
42315dab
                 av_log(avctx, AV_LOG_ERROR, "Error decoding %s chunk\n",
                        chunk_name[chunk_type - 2]);
fb5c1aae
                 return AVERROR_INVALIDDATA;
42315dab
             }
         } else {
cc8163e1
             av_log(avctx, AV_LOG_WARNING,
                    "Ignoring unknown chunk type %"PRIu32"\n",
42315dab
                    chunk_type);
         }
         buf += chunk_size;
     }
 
     buf = s->frame_buf;
759001c5
     dst = frame->data[0];
42315dab
     for (i = 0; i < avctx->height; i++) {
1557f34b
         if(version == 0x100) {
             int j;
             for(j = 0; j < avctx->width; j++) {
                 dst[j] = buf[ (i&3)*(avctx->width /4) + (j/4) +
                              ((j&3)*(avctx->height/4) + (i/4))*avctx->width];
             }
         } else {
             memcpy(dst, buf, avctx->width);
             buf += avctx->width;
         }
759001c5
         dst += frame->linesize[0];
42315dab
     }
759001c5
     memcpy(frame->data[1], s->pal, sizeof(s->pal));
42315dab
 
df9b9567
     *got_frame = 1;
42315dab
 
     return avpkt->size;
 }
 
 static av_cold int dfa_decode_end(AVCodecContext *avctx)
 {
     DfaContext *s = avctx->priv_data;
 
     av_freep(&s->frame_buf);
 
     return 0;
 }
 
 AVCodec ff_dfa_decoder = {
ec6402b7
     .name           = "dfa",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Chronomaster DFA"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_DFA,
ec6402b7
     .priv_data_size = sizeof(DfaContext),
     .init           = dfa_decode_init,
     .close          = dfa_decode_end,
     .decode         = dfa_decode_frame,
def97856
     .capabilities   = AV_CODEC_CAP_DR1,
42315dab
 };