libavcodec/flicvideo.c
42cad81a
 /*
  * FLI/FLC Animation Video Decoder
e40f5d3c
  * Copyright (C) 2003, 2004 the ffmpeg project
42cad81a
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
42cad81a
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
42cad81a
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
42cad81a
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42cad81a
  */
 
 /**
ba87f080
  * @file
42cad81a
  * Autodesk Animator FLI/FLC Video Decoder
  * by Mike Melanson (melanson@pcisys.net)
  * for more information on the .fli/.flc file format and all of its many
  * variations, visit:
  *   http://www.compuphase.com/flic.htm
  *
515ae476
  * This decoder outputs PAL8/RGB555/RGB565 and maybe one day RGB24
  * colorspace data, depending on the FLC. To use this decoder, be
42cad81a
  * sure that your demuxer sends the FLI file header to the decoder via
  * the extradata chunk in AVCodecContext. The chunk should be 128 bytes
  * large. The only exception is for FLI files from the game "Magic Carpet",
  * in which the header is only 12 bytes.
  */
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
6a5d31ac
 #include "libavutil/intreadwrite.h"
42cad81a
 #include "avcodec.h"
b348c852
 #include "bytestream.h"
759001c5
 #include "internal.h"
b348c852
 #include "mathops.h"
42cad81a
 
 #define FLI_256_COLOR 4
 #define FLI_DELTA     7
 #define FLI_COLOR     11
 #define FLI_LC        12
 #define FLI_BLACK     13
 #define FLI_BRUN      15
 #define FLI_COPY      16
 #define FLI_MINI      18
515ae476
 #define FLI_DTA_BRUN  25
 #define FLI_DTA_COPY  26
 #define FLI_DTA_LC    27
 
 #define FLI_TYPE_CODE     (0xAF11)
 #define FLC_FLX_TYPE_CODE (0xAF12)
 #define FLC_DTA_TYPE_CODE (0xAF44) /* Marks an "Extended FLC" comes from Dave's Targa Animator (DTA) */
 #define FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE (0xAF13)
42cad81a
 
3c8c94b4
 #define CHECK_PIXEL_PTR(n) \
     if (pixel_ptr + n > pixel_limit) { \
cd187279
         av_log (s->avctx, AV_LOG_ERROR, "Invalid pixel_ptr = %d > pixel_limit = %d\n", \
3c8c94b4
         pixel_ptr + n, pixel_limit); \
cd187279
         return AVERROR_INVALIDDATA; \
3c8c94b4
     } \
 
42cad81a
 typedef struct FlicDecodeContext {
     AVCodecContext *avctx;
d100f9e7
     AVFrame *frame;
42cad81a
 
     unsigned int palette[256];
     int new_palette;
     int fli_type;  /* either 0xAF11 or 0xAF12, affects palette resolution */
 } FlicDecodeContext;
 
98a6fff9
 static av_cold int flic_decode_init(AVCodecContext *avctx)
42cad81a
 {
e4141433
     FlicDecodeContext *s = avctx->priv_data;
42cad81a
     unsigned char *fli_header = (unsigned char *)avctx->extradata;
515ae476
     int depth;
42cad81a
 
fca62f05
     if (avctx->extradata_size != 0 &&
         avctx->extradata_size != 12 &&
e4cc9f30
         avctx->extradata_size != 128 &&
cb7b0f35
         avctx->extradata_size != 256 &&
2e07f429
         avctx->extradata_size != 904 &&
e4cc9f30
         avctx->extradata_size != 1024) {
2e07f429
         av_log(avctx, AV_LOG_ERROR, "Unexpected extradata size %d\n", avctx->extradata_size);
367468f1
         return AVERROR_INVALIDDATA;
     }
 
42cad81a
     s->avctx = avctx;
 
     if (s->avctx->extradata_size == 12) {
         /* special case for magic carpet FLIs */
515ae476
         s->fli_type = FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE;
f55f27ba
         depth = 8;
e4cc9f30
     } else if (avctx->extradata_size == 1024) {
         uint8_t *ptr = avctx->extradata;
         int i;
 
         for (i = 0; i < 256; i++) {
             s->palette[i] = AV_RL32(ptr);
             ptr += 4;
         }
         depth = 8;
fca62f05
         /* FLI in MOV, see e.g. FFmpeg trac issue #626 */
2e07f429
     } else if (avctx->extradata_size == 0 ||
cb7b0f35
                avctx->extradata_size == 256 ||
2e07f429
         /* see FFmpeg ticket #1234 */
                avctx->extradata_size == 904) {
fca62f05
         s->fli_type = FLI_TYPE_CODE;
         depth = 8;
f55f27ba
     } else {
fca62f05
         s->fli_type = AV_RL16(&fli_header[4]);
f55f27ba
         depth = AV_RL16(&fli_header[12]);
     }
 
     if (depth == 0) {
         depth = 8; /* Some FLC generators set depth to zero, when they mean 8Bpp. Fix up here */
42cad81a
     }
 
515ae476
     if ((s->fli_type == FLC_FLX_TYPE_CODE) && (depth == 16)) {
         depth = 15; /* Original Autodesk FLX's say the depth is 16Bpp when it is really 15Bpp */
     }
 
     switch (depth) {
716d413c
         case 8  : avctx->pix_fmt = AV_PIX_FMT_PAL8; break;
         case 15 : avctx->pix_fmt = AV_PIX_FMT_RGB555; break;
         case 16 : avctx->pix_fmt = AV_PIX_FMT_RGB565; break;
         case 24 : avctx->pix_fmt = AV_PIX_FMT_BGR24; /* Supposedly BGR, but havent any files to test with */
ea9632b7
                   avpriv_request_sample(avctx, "24Bpp FLC/FLX");
bb9bc1fc
                   return AVERROR_PATCHWELCOME;
515ae476
         default :
cbc09a7d
                   av_log(avctx, AV_LOG_ERROR, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth);
bb9bc1fc
                   return AVERROR_INVALIDDATA;
115329f1
     }
515ae476
 
d100f9e7
     s->frame = av_frame_alloc();
     if (!s->frame)
         return AVERROR(ENOMEM);
 
42cad81a
     s->new_palette = 0;
 
     return 0;
 }
 
515ae476
 static int flic_decode_frame_8BPP(AVCodecContext *avctx,
df9b9567
                                   void *data, int *got_frame,
c27fc644
                                   const uint8_t *buf, int buf_size)
42cad81a
 {
e4141433
     FlicDecodeContext *s = avctx->priv_data;
42cad81a
 
b348c852
     GetByteContext g2;
42cad81a
     int pixel_ptr;
     int palette_ptr;
     unsigned char palette_idx1;
     unsigned char palette_idx2;
 
     unsigned int frame_size;
     int num_chunks;
 
     unsigned int chunk_size;
     int chunk_type;
 
bb9bc1fc
     int i, j, ret;
42cad81a
 
     int color_packets;
     int color_changes;
     int color_shift;
     unsigned char r, g, b;
 
     int lines;
     int compressed_lines;
     int starting_line;
     signed short line_packets;
     int y_ptr;
d8b45f79
     int byte_run;
42cad81a
     int pixel_skip;
     int pixel_countdown;
     unsigned char *pixels;
6e73cef6
     unsigned int pixel_limit;
115329f1
 
b348c852
     bytestream2_init(&g2, buf, buf_size);
 
fe3808ed
     if ((ret = ff_reget_buffer(avctx, s->frame)) < 0)
bb9bc1fc
         return ret;
42cad81a
 
d100f9e7
     pixels = s->frame->data[0];
     pixel_limit = s->avctx->height * s->frame->linesize[0];
1f024b88
     if (buf_size < 16 || buf_size > INT_MAX - (3 * 256 + FF_INPUT_BUFFER_PADDING_SIZE))
         return AVERROR_INVALIDDATA;
b348c852
     frame_size = bytestream2_get_le32(&g2);
1f024b88
     if (frame_size > buf_size)
         frame_size = buf_size;
b348c852
     bytestream2_skip(&g2, 2); /* skip the magic number */
     num_chunks = bytestream2_get_le16(&g2);
     bytestream2_skip(&g2, 8);  /* skip padding */
42cad81a
 
     frame_size -= 16;
 
     /* iterate through the chunks */
f5498ef3
     while ((frame_size >= 6) && (num_chunks > 0) &&
             bytestream2_get_bytes_left(&g2) >= 4) {
1f024b88
         int stream_ptr_after_chunk;
b348c852
         chunk_size = bytestream2_get_le32(&g2);
efd6cbc5
         if (chunk_size > frame_size) {
             av_log(avctx, AV_LOG_WARNING,
                    "Invalid chunk_size = %u > frame_size = %u\n", chunk_size, frame_size);
             chunk_size = frame_size;
         }
6a56f4e6
         stream_ptr_after_chunk = bytestream2_tell(&g2) - 4 + chunk_size;
1f024b88
 
b348c852
         chunk_type = bytestream2_get_le16(&g2);
42cad81a
 
         switch (chunk_type) {
         case FLI_256_COLOR:
         case FLI_COLOR:
115329f1
             /* check special case: If this file is from the Magic Carpet
              * game and uses 6-bit colors even though it reports 256-color
42cad81a
              * chunks in a 0xAF12-type file (fli_type is set to 0xAF13 during
              * initialization) */
515ae476
             if ((chunk_type == FLI_256_COLOR) && (s->fli_type != FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE))
42cad81a
                 color_shift = 0;
             else
                 color_shift = 2;
             /* set up the palette */
b348c852
             color_packets = bytestream2_get_le16(&g2);
42cad81a
             palette_ptr = 0;
             for (i = 0; i < color_packets; i++) {
                 /* first byte is how many colors to skip */
b348c852
                 palette_ptr += bytestream2_get_byte(&g2);
42cad81a
 
                 /* next byte indicates how many entries to change */
b348c852
                 color_changes = bytestream2_get_byte(&g2);
42cad81a
 
                 /* if there are 0 color changes, there are actually 256 */
                 if (color_changes == 0)
                     color_changes = 256;
 
6a56f4e6
                 if (bytestream2_tell(&g2) + color_changes * 3 > stream_ptr_after_chunk)
1f024b88
                     break;
 
42cad81a
                 for (j = 0; j < color_changes; j++) {
1e4051aa
                     unsigned int entry;
42cad81a
 
                     /* wrap around, for good measure */
0ecca7a4
                     if ((unsigned)palette_ptr >= 256)
42cad81a
                         palette_ptr = 0;
 
b348c852
                     r = bytestream2_get_byte(&g2) << color_shift;
                     g = bytestream2_get_byte(&g2) << color_shift;
                     b = bytestream2_get_byte(&g2) << color_shift;
b12d92ef
                     entry = 0xFFU << 24 | r << 16 | g << 8 | b;
105cf82a
                     if (color_shift == 2)
                         entry |= entry >> 6 & 0x30303;
1e4051aa
                     if (s->palette[palette_ptr] != entry)
                         s->new_palette = 1;
                     s->palette[palette_ptr++] = entry;
42cad81a
                 }
             }
             break;
 
         case FLI_DELTA:
             y_ptr = 0;
b348c852
             compressed_lines = bytestream2_get_le16(&g2);
42cad81a
             while (compressed_lines > 0) {
6a56f4e6
                 if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
1f024b88
                     break;
b348c852
                 line_packets = bytestream2_get_le16(&g2);
fce2200d
                 if ((line_packets & 0xC000) == 0xC000) {
                     // line skip opcode
42cad81a
                     line_packets = -line_packets;
d100f9e7
                     y_ptr += line_packets * s->frame->linesize[0];
fce2200d
                 } else if ((line_packets & 0xC000) == 0x4000) {
                     av_log(avctx, AV_LOG_ERROR, "Undefined opcode (%x) in DELTA_FLI\n", line_packets);
                 } else if ((line_packets & 0xC000) == 0x8000) {
                     // "last byte" opcode
d100f9e7
                     pixel_ptr= y_ptr + s->frame->linesize[0] - 1;
6e73cef6
                     CHECK_PIXEL_PTR(0);
                     pixels[pixel_ptr] = line_packets & 0xff;
42cad81a
                 } else {
                     compressed_lines--;
                     pixel_ptr = y_ptr;
6e73cef6
                     CHECK_PIXEL_PTR(0);
42cad81a
                     pixel_countdown = s->avctx->width;
                     for (i = 0; i < line_packets; i++) {
6a56f4e6
                         if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
1f024b88
                             break;
42cad81a
                         /* account for the skip bytes */
b348c852
                         pixel_skip = bytestream2_get_byte(&g2);
42cad81a
                         pixel_ptr += pixel_skip;
                         pixel_countdown -= pixel_skip;
b348c852
                         byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
42cad81a
                         if (byte_run < 0) {
                             byte_run = -byte_run;
b348c852
                             palette_idx1 = bytestream2_get_byte(&g2);
                             palette_idx2 = bytestream2_get_byte(&g2);
6e73cef6
                             CHECK_PIXEL_PTR(byte_run * 2);
42cad81a
                             for (j = 0; j < byte_run; j++, pixel_countdown -= 2) {
                                 pixels[pixel_ptr++] = palette_idx1;
                                 pixels[pixel_ptr++] = palette_idx2;
                             }
                         } else {
3c8c94b4
                             CHECK_PIXEL_PTR(byte_run * 2);
6a56f4e6
                             if (bytestream2_tell(&g2) + byte_run * 2 > stream_ptr_after_chunk)
1f024b88
                                 break;
42cad81a
                             for (j = 0; j < byte_run * 2; j++, pixel_countdown--) {
b348c852
                                 pixels[pixel_ptr++] = bytestream2_get_byte(&g2);
42cad81a
                             }
                         }
                     }
 
d100f9e7
                     y_ptr += s->frame->linesize[0];
42cad81a
                 }
             }
             break;
 
         case FLI_LC:
             /* line compressed */
b348c852
             starting_line = bytestream2_get_le16(&g2);
42cad81a
             y_ptr = 0;
d100f9e7
             y_ptr += starting_line * s->frame->linesize[0];
42cad81a
 
b348c852
             compressed_lines = bytestream2_get_le16(&g2);
42cad81a
             while (compressed_lines > 0) {
                 pixel_ptr = y_ptr;
6e73cef6
                 CHECK_PIXEL_PTR(0);
42cad81a
                 pixel_countdown = s->avctx->width;
6a56f4e6
                 if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
1f024b88
                     break;
b348c852
                 line_packets = bytestream2_get_byte(&g2);
42cad81a
                 if (line_packets > 0) {
                     for (i = 0; i < line_packets; i++) {
                         /* account for the skip bytes */
6a56f4e6
                         if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
afb2bac4
                             break;
b348c852
                         pixel_skip = bytestream2_get_byte(&g2);
42cad81a
                         pixel_ptr += pixel_skip;
                         pixel_countdown -= pixel_skip;
b348c852
                         byte_run = sign_extend(bytestream2_get_byte(&g2),8);
42cad81a
                         if (byte_run > 0) {
3c8c94b4
                             CHECK_PIXEL_PTR(byte_run);
6a56f4e6
                             if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
1f024b88
                                 break;
42cad81a
                             for (j = 0; j < byte_run; j++, pixel_countdown--) {
b348c852
                                 pixels[pixel_ptr++] = bytestream2_get_byte(&g2);
42cad81a
                             }
37e6f5f3
                         } else if (byte_run < 0) {
42cad81a
                             byte_run = -byte_run;
b348c852
                             palette_idx1 = bytestream2_get_byte(&g2);
3c8c94b4
                             CHECK_PIXEL_PTR(byte_run);
42cad81a
                             for (j = 0; j < byte_run; j++, pixel_countdown--) {
                                 pixels[pixel_ptr++] = palette_idx1;
                             }
                         }
                     }
                 }
 
d100f9e7
                 y_ptr += s->frame->linesize[0];
42cad81a
                 compressed_lines--;
             }
             break;
 
         case FLI_BLACK:
             /* set the whole frame to color 0 (which is usually black) */
             memset(pixels, 0,
d100f9e7
                 s->frame->linesize[0] * s->avctx->height);
42cad81a
             break;
 
         case FLI_BRUN:
             /* Byte run compression: This chunk type only occurs in the first
              * FLI frame and it will update the entire frame. */
             y_ptr = 0;
             for (lines = 0; lines < s->avctx->height; lines++) {
                 pixel_ptr = y_ptr;
                 /* disregard the line packets; instead, iterate through all
                  * pixels on a row */
b348c852
                  bytestream2_skip(&g2, 1);
42cad81a
                 pixel_countdown = s->avctx->width;
                 while (pixel_countdown > 0) {
6a56f4e6
                     if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
1f024b88
                         break;
b348c852
                     byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
ddfe1246
                     if (!byte_run) {
                         av_log(avctx, AV_LOG_ERROR, "Invalid byte run value.\n");
                         return AVERROR_INVALIDDATA;
                     }
 
42cad81a
                     if (byte_run > 0) {
b348c852
                         palette_idx1 = bytestream2_get_byte(&g2);
3c8c94b4
                         CHECK_PIXEL_PTR(byte_run);
42cad81a
                         for (j = 0; j < byte_run; j++) {
                             pixels[pixel_ptr++] = palette_idx1;
                             pixel_countdown--;
                             if (pixel_countdown < 0)
492d0e4c
                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
                                        pixel_countdown, lines);
42cad81a
                         }
                     } else {  /* copy bytes if byte_run < 0 */
                         byte_run = -byte_run;
3c8c94b4
                         CHECK_PIXEL_PTR(byte_run);
6a56f4e6
                         if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
1f024b88
                             break;
42cad81a
                         for (j = 0; j < byte_run; j++) {
b348c852
                             pixels[pixel_ptr++] = bytestream2_get_byte(&g2);
42cad81a
                             pixel_countdown--;
                             if (pixel_countdown < 0)
492d0e4c
                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
                                        pixel_countdown, lines);
42cad81a
                         }
                     }
                 }
 
d100f9e7
                 y_ptr += s->frame->linesize[0];
42cad81a
             }
             break;
 
         case FLI_COPY:
e40f5d3c
             /* copy the chunk (uncompressed frame) */
1f024b88
             if (chunk_size - 6 != s->avctx->width * s->avctx->height) {
e40f5d3c
                 av_log(avctx, AV_LOG_ERROR, "In chunk FLI_COPY : source data (%d bytes) " \
1f024b88
                        "has incorrect size, skipping chunk\n", chunk_size - 6);
b348c852
                 bytestream2_skip(&g2, chunk_size - 6);
42cad81a
             } else {
d100f9e7
                 for (y_ptr = 0; y_ptr < s->frame->linesize[0] * s->avctx->height;
                      y_ptr += s->frame->linesize[0]) {
b348c852
                     bytestream2_get_buffer(&g2, &pixels[y_ptr],
                                            s->avctx->width);
42cad81a
                 }
             }
             break;
 
         case FLI_MINI:
             /* some sort of a thumbnail? disregard this chunk... */
             break;
 
         default:
e40f5d3c
             av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type);
42cad81a
             break;
         }
 
6a56f4e6
         if (stream_ptr_after_chunk - bytestream2_tell(&g2) > 0)
             bytestream2_skip(&g2, stream_ptr_after_chunk - bytestream2_tell(&g2));
1f024b88
 
42cad81a
         frame_size -= chunk_size;
         num_chunks--;
     }
 
     /* by the end of the chunk, the stream ptr should equal the frame
e4cc9f30
      * size (minus 1 or 2, possibly); if it doesn't, issue a warning */
     if (bytestream2_get_bytes_left(&g2) > 2)
e40f5d3c
         av_log(avctx, AV_LOG_ERROR, "Processed FLI chunk where chunk size = %d " \
b348c852
                "and final chunk ptr = %d\n", buf_size,
                buf_size - bytestream2_get_bytes_left(&g2));
42cad81a
 
     /* make the palette available on the way out */
d100f9e7
     memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE);
1e4051aa
     if (s->new_palette) {
d100f9e7
         s->frame->palette_has_changed = 1;
42cad81a
         s->new_palette = 0;
     }
 
d100f9e7
     if ((ret = av_frame_ref(data, s->frame)) < 0)
759001c5
         return ret;
 
df9b9567
     *got_frame = 1;
42cad81a
 
     return buf_size;
 }
 
1b47fafd
 static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
df9b9567
                                       void *data, int *got_frame,
c27fc644
                                       const uint8_t *buf, int buf_size)
515ae476
 {
     /* Note, the only difference between the 15Bpp and 16Bpp */
     /* Format is the pixel format, the packets are processed the same. */
e4141433
     FlicDecodeContext *s = avctx->priv_data;
515ae476
 
b348c852
     GetByteContext g2;
515ae476
     int pixel_ptr;
     unsigned char palette_idx1;
 
     unsigned int frame_size;
     int num_chunks;
 
     unsigned int chunk_size;
     int chunk_type;
 
bb9bc1fc
     int i, j, ret;
515ae476
 
     int lines;
     int compressed_lines;
     signed short line_packets;
     int y_ptr;
d8b45f79
     int byte_run;
515ae476
     int pixel_skip;
     int pixel_countdown;
     unsigned char *pixels;
     int pixel;
6e73cef6
     unsigned int pixel_limit;
515ae476
 
b348c852
     bytestream2_init(&g2, buf, buf_size);
 
fe3808ed
     if ((ret = ff_reget_buffer(avctx, s->frame)) < 0)
bb9bc1fc
         return ret;
515ae476
 
d100f9e7
     pixels = s->frame->data[0];
     pixel_limit = s->avctx->height * s->frame->linesize[0];
515ae476
 
b348c852
     frame_size = bytestream2_get_le32(&g2);
     bytestream2_skip(&g2, 2);  /* skip the magic number */
     num_chunks = bytestream2_get_le16(&g2);
     bytestream2_skip(&g2, 8);  /* skip padding */
30b996d4
     if (frame_size > buf_size)
         frame_size = buf_size;
515ae476
 
     frame_size -= 16;
 
     /* iterate through the chunks */
f5498ef3
     while ((frame_size > 0) && (num_chunks > 0) &&
             bytestream2_get_bytes_left(&g2) >= 4) {
30b996d4
         int stream_ptr_after_chunk;
b348c852
         chunk_size = bytestream2_get_le32(&g2);
30b996d4
         if (chunk_size > frame_size) {
             av_log(avctx, AV_LOG_WARNING,
                    "Invalid chunk_size = %u > frame_size = %u\n", chunk_size, frame_size);
             chunk_size = frame_size;
         }
6a56f4e6
         stream_ptr_after_chunk = bytestream2_tell(&g2) - 4 + chunk_size;
30b996d4
 
b348c852
         chunk_type = bytestream2_get_le16(&g2);
515ae476
 
30b996d4
 
515ae476
         switch (chunk_type) {
         case FLI_256_COLOR:
         case FLI_COLOR:
2cab6401
             /* For some reason, it seems that non-palettized flics do
              * include one of these chunks in their first frame.
              * Why I do not know, it seems rather extraneous. */
1218777f
             av_dlog(avctx,
                     "Unexpected Palette chunk %d in non-palettized FLC\n",
                     chunk_type);
b348c852
             bytestream2_skip(&g2, chunk_size - 6);
515ae476
             break;
 
         case FLI_DELTA:
         case FLI_DTA_LC:
             y_ptr = 0;
b348c852
             compressed_lines = bytestream2_get_le16(&g2);
515ae476
             while (compressed_lines > 0) {
6a56f4e6
                 if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
30b996d4
                     break;
b348c852
                 line_packets = bytestream2_get_le16(&g2);
515ae476
                 if (line_packets < 0) {
                     line_packets = -line_packets;
d100f9e7
                     y_ptr += line_packets * s->frame->linesize[0];
515ae476
                 } else {
                     compressed_lines--;
                     pixel_ptr = y_ptr;
6e73cef6
                     CHECK_PIXEL_PTR(0);
515ae476
                     pixel_countdown = s->avctx->width;
                     for (i = 0; i < line_packets; i++) {
                         /* account for the skip bytes */
6a56f4e6
                         if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
30b996d4
                             break;
b348c852
                         pixel_skip = bytestream2_get_byte(&g2);
515ae476
                         pixel_ptr += (pixel_skip*2); /* Pixel is 2 bytes wide */
                         pixel_countdown -= pixel_skip;
b348c852
                         byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
515ae476
                         if (byte_run < 0) {
                             byte_run = -byte_run;
b348c852
                             pixel    = bytestream2_get_le16(&g2);
6e73cef6
                             CHECK_PIXEL_PTR(2 * byte_run);
515ae476
                             for (j = 0; j < byte_run; j++, pixel_countdown -= 2) {
                                 *((signed short*)(&pixels[pixel_ptr])) = pixel;
                                 pixel_ptr += 2;
                             }
                         } else {
6a56f4e6
                             if (bytestream2_tell(&g2) + 2*byte_run > stream_ptr_after_chunk)
30b996d4
                                 break;
6e73cef6
                             CHECK_PIXEL_PTR(2 * byte_run);
515ae476
                             for (j = 0; j < byte_run; j++, pixel_countdown--) {
b348c852
                                 *((signed short*)(&pixels[pixel_ptr])) = bytestream2_get_le16(&g2);
515ae476
                                 pixel_ptr += 2;
                             }
                         }
                     }
 
d100f9e7
                     y_ptr += s->frame->linesize[0];
515ae476
                 }
             }
             break;
 
         case FLI_LC:
a5f88736
             av_log(avctx, AV_LOG_ERROR, "Unexpected FLI_LC chunk in non-palettized FLC\n");
b348c852
             bytestream2_skip(&g2, chunk_size - 6);
515ae476
             break;
 
         case FLI_BLACK:
c61e1098
             /* set the whole frame to 0x0000 which is black in both 15Bpp and 16Bpp modes. */
515ae476
             memset(pixels, 0x0000,
d100f9e7
                    s->frame->linesize[0] * s->avctx->height);
515ae476
             break;
 
         case FLI_BRUN:
             y_ptr = 0;
             for (lines = 0; lines < s->avctx->height; lines++) {
                 pixel_ptr = y_ptr;
                 /* disregard the line packets; instead, iterate through all
                  * pixels on a row */
b348c852
                 bytestream2_skip(&g2, 1);
515ae476
                 pixel_countdown = (s->avctx->width * 2);
115329f1
 
515ae476
                 while (pixel_countdown > 0) {
6a56f4e6
                     if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
30b996d4
                         break;
b348c852
                     byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
515ae476
                     if (byte_run > 0) {
b348c852
                         palette_idx1 = bytestream2_get_byte(&g2);
515ae476
                         CHECK_PIXEL_PTR(byte_run);
                         for (j = 0; j < byte_run; j++) {
                             pixels[pixel_ptr++] = palette_idx1;
                             pixel_countdown--;
                             if (pixel_countdown < 0)
492d0e4c
                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) (linea%d)\n",
                                        pixel_countdown, lines);
515ae476
                         }
                     } else {  /* copy bytes if byte_run < 0 */
                         byte_run = -byte_run;
6a56f4e6
                         if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
30b996d4
                             break;
515ae476
                         CHECK_PIXEL_PTR(byte_run);
                         for (j = 0; j < byte_run; j++) {
b348c852
                             palette_idx1 = bytestream2_get_byte(&g2);
515ae476
                             pixels[pixel_ptr++] = palette_idx1;
                             pixel_countdown--;
                             if (pixel_countdown < 0)
492d0e4c
                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
                                        pixel_countdown, lines);
515ae476
                         }
                     }
                 }
 
                 /* Now FLX is strange, in that it is "byte" as opposed to "pixel" run length compressed.
511cf612
                  * This does not give us any good opportunity to perform word endian conversion
755bfeab
                  * during decompression. So if it is required (i.e., this is not a LE target, we do
515ae476
                  * a second pass over the line here, swapping the bytes.
                  */
63613fe6
 #if HAVE_BIGENDIAN
e1659f0c
                 pixel_ptr = y_ptr;
                 pixel_countdown = s->avctx->width;
                 while (pixel_countdown > 0) {
fead30d4
                     *((signed short*)(&pixels[pixel_ptr])) = AV_RL16(&buf[pixel_ptr]);
515ae476
                     pixel_ptr += 2;
e1659f0c
                 }
dfdf9e78
 #endif
d100f9e7
                 y_ptr += s->frame->linesize[0];
515ae476
             }
             break;
 
         case FLI_DTA_BRUN:
             y_ptr = 0;
             for (lines = 0; lines < s->avctx->height; lines++) {
                 pixel_ptr = y_ptr;
                 /* disregard the line packets; instead, iterate through all
                  * pixels on a row */
b348c852
                 bytestream2_skip(&g2, 1);
515ae476
                 pixel_countdown = s->avctx->width; /* Width is in pixels, not bytes */
115329f1
 
515ae476
                 while (pixel_countdown > 0) {
6a56f4e6
                     if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
30b996d4
                         break;
b348c852
                     byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
515ae476
                     if (byte_run > 0) {
b348c852
                         pixel    = bytestream2_get_le16(&g2);
6e73cef6
                         CHECK_PIXEL_PTR(2 * byte_run);
515ae476
                         for (j = 0; j < byte_run; j++) {
                             *((signed short*)(&pixels[pixel_ptr])) = pixel;
115329f1
                             pixel_ptr += 2;
515ae476
                             pixel_countdown--;
                             if (pixel_countdown < 0)
                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
                                        pixel_countdown);
                         }
                     } else {  /* copy pixels if byte_run < 0 */
                         byte_run = -byte_run;
6a56f4e6
                         if (bytestream2_tell(&g2) + 2 * byte_run > stream_ptr_after_chunk)
30b996d4
                             break;
6e73cef6
                         CHECK_PIXEL_PTR(2 * byte_run);
515ae476
                         for (j = 0; j < byte_run; j++) {
b348c852
                             *((signed short*)(&pixels[pixel_ptr])) = bytestream2_get_le16(&g2);
515ae476
                             pixel_ptr  += 2;
                             pixel_countdown--;
                             if (pixel_countdown < 0)
                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
                                        pixel_countdown);
                         }
                     }
                 }
 
d100f9e7
                 y_ptr += s->frame->linesize[0];
515ae476
             }
             break;
 
         case FLI_COPY:
         case FLI_DTA_COPY:
             /* copy the chunk (uncompressed frame) */
             if (chunk_size - 6 > (unsigned int)(s->avctx->width * s->avctx->height)*2) {
                 av_log(avctx, AV_LOG_ERROR, "In chunk FLI_COPY : source data (%d bytes) " \
                        "bigger than image, skipping chunk\n", chunk_size - 6);
b348c852
                 bytestream2_skip(&g2, chunk_size - 6);
515ae476
             } else {
115329f1
 
d100f9e7
                 for (y_ptr = 0; y_ptr < s->frame->linesize[0] * s->avctx->height;
                      y_ptr += s->frame->linesize[0]) {
515ae476
 
                     pixel_countdown = s->avctx->width;
                     pixel_ptr = 0;
                     while (pixel_countdown > 0) {
b348c852
                       *((signed short*)(&pixels[y_ptr + pixel_ptr])) = bytestream2_get_le16(&g2);
515ae476
                       pixel_ptr += 2;
                       pixel_countdown--;
115329f1
                     }
515ae476
                 }
             }
             break;
 
         case FLI_MINI:
             /* some sort of a thumbnail? disregard this chunk... */
b348c852
             bytestream2_skip(&g2, chunk_size - 6);
515ae476
             break;
 
         default:
             av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type);
             break;
         }
 
         frame_size -= chunk_size;
         num_chunks--;
     }
 
     /* by the end of the chunk, the stream ptr should equal the frame
      * size (minus 1, possibly); if it doesn't, issue a warning */
b348c852
     if ((bytestream2_get_bytes_left(&g2) != 0) && (bytestream2_get_bytes_left(&g2) != 1))
515ae476
         av_log(avctx, AV_LOG_ERROR, "Processed FLI chunk where chunk size = %d " \
b348c852
                "and final chunk ptr = %d\n", buf_size, bytestream2_tell(&g2));
515ae476
 
d100f9e7
     if ((ret = av_frame_ref(data, s->frame)) < 0)
759001c5
         return ret;
515ae476
 
df9b9567
     *got_frame = 1;
515ae476
 
     return buf_size;
 }
 
 static int flic_decode_frame_24BPP(AVCodecContext *avctx,
df9b9567
                                    void *data, int *got_frame,
c27fc644
                                    const uint8_t *buf, int buf_size)
515ae476
 {
   av_log(avctx, AV_LOG_ERROR, "24Bpp FLC Unsupported due to lack of test files.\n");
bb9bc1fc
   return AVERROR_PATCHWELCOME;
515ae476
 }
 
 static int flic_decode_frame(AVCodecContext *avctx,
df9b9567
                              void *data, int *got_frame,
7a00bbad
                              AVPacket *avpkt)
515ae476
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
     int buf_size = avpkt->size;
716d413c
     if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
df9b9567
       return flic_decode_frame_8BPP(avctx, data, got_frame,
515ae476
                                     buf, buf_size);
     }
716d413c
     else if ((avctx->pix_fmt == AV_PIX_FMT_RGB555) ||
              (avctx->pix_fmt == AV_PIX_FMT_RGB565)) {
df9b9567
       return flic_decode_frame_15_16BPP(avctx, data, got_frame,
515ae476
                                         buf, buf_size);
115329f1
     }
716d413c
     else if (avctx->pix_fmt == AV_PIX_FMT_BGR24) {
df9b9567
       return flic_decode_frame_24BPP(avctx, data, got_frame,
515ae476
                                      buf, buf_size);
     }
 
755bfeab
     /* Should not get  here, ever as the pix_fmt is processed */
515ae476
     /* in flic_decode_init and the above if should deal with */
     /* the finite set of possibilites allowable by here. */
755bfeab
     /* But in case we do, just error out. */
     av_log(avctx, AV_LOG_ERROR, "Unknown FLC format, my science cannot explain how this happened.\n");
a9d970a0
     return AVERROR_BUG;
115329f1
 }
515ae476
 
 
98a6fff9
 static av_cold int flic_decode_end(AVCodecContext *avctx)
42cad81a
 {
     FlicDecodeContext *s = avctx->priv_data;
 
d100f9e7
     av_frame_free(&s->frame);
42cad81a
 
     return 0;
 }
 
e7e2df27
 AVCodec ff_flic_decoder = {
ec6402b7
     .name           = "flic",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("Autodesk Animator Flic video"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_FLIC,
ec6402b7
     .priv_data_size = sizeof(FlicDecodeContext),
     .init           = flic_decode_init,
     .close          = flic_decode_end,
     .decode         = flic_decode_frame,
     .capabilities   = CODEC_CAP_DR1,
42cad81a
 };