]> git.sesse.net Git - ffmpeg/blob - libavcodec/flicvideo.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / flicvideo.c
1 /*
2  * FLI/FLC Animation Video Decoder
3  * Copyright (C) 2003, 2004 the ffmpeg project
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Autodesk Animator FLI/FLC Video Decoder
25  * by Mike Melanson (melanson@pcisys.net)
26  * for more information on the .fli/.flc file format and all of its many
27  * variations, visit:
28  *   http://www.compuphase.com/flic.htm
29  *
30  * This decoder outputs PAL8/RGB555/RGB565 and maybe one day RGB24
31  * colorspace data, depending on the FLC. To use this decoder, be
32  * sure that your demuxer sends the FLI file header to the decoder via
33  * the extradata chunk in AVCodecContext. The chunk should be 128 bytes
34  * large. The only exception is for FLI files from the game "Magic Carpet",
35  * in which the header is only 12 bytes.
36  */
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41
42 #include "libavutil/intreadwrite.h"
43 #include "avcodec.h"
44 #include "bytestream.h"
45 #include "mathops.h"
46
47 #define FLI_256_COLOR 4
48 #define FLI_DELTA     7
49 #define FLI_COLOR     11
50 #define FLI_LC        12
51 #define FLI_BLACK     13
52 #define FLI_BRUN      15
53 #define FLI_COPY      16
54 #define FLI_MINI      18
55 #define FLI_DTA_BRUN  25
56 #define FLI_DTA_COPY  26
57 #define FLI_DTA_LC    27
58
59 #define FLI_TYPE_CODE     (0xAF11)
60 #define FLC_FLX_TYPE_CODE (0xAF12)
61 #define FLC_DTA_TYPE_CODE (0xAF44) /* Marks an "Extended FLC" comes from Dave's Targa Animator (DTA) */
62 #define FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE (0xAF13)
63
64 #define CHECK_PIXEL_PTR(n) \
65     if (pixel_ptr + n > pixel_limit) { \
66         av_log (s->avctx, AV_LOG_ERROR, "Invalid pixel_ptr = %d > pixel_limit = %d\n", \
67         pixel_ptr + n, pixel_limit); \
68         return AVERROR_INVALIDDATA; \
69     } \
70
71 typedef struct FlicDecodeContext {
72     AVCodecContext *avctx;
73     AVFrame frame;
74
75     unsigned int palette[256];
76     int new_palette;
77     int fli_type;  /* either 0xAF11 or 0xAF12, affects palette resolution */
78 } FlicDecodeContext;
79
80 static av_cold int flic_decode_init(AVCodecContext *avctx)
81 {
82     FlicDecodeContext *s = avctx->priv_data;
83     unsigned char *fli_header = (unsigned char *)avctx->extradata;
84     int depth;
85
86     if (avctx->extradata_size != 12 &&
87         avctx->extradata_size != 128) {
88         av_log(avctx, AV_LOG_ERROR, "Expected extradata of 12 or 128 bytes\n");
89         return AVERROR_INVALIDDATA;
90     }
91
92     s->avctx = avctx;
93
94     s->fli_type = AV_RL16(&fli_header[4]); /* Might be overridden if a Magic Carpet FLC */
95
96     depth = 0;
97     if (s->avctx->extradata_size == 12) {
98         /* special case for magic carpet FLIs */
99         s->fli_type = FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE;
100         depth = 8;
101     } else {
102         depth = AV_RL16(&fli_header[12]);
103     }
104
105     if (depth == 0) {
106         depth = 8; /* Some FLC generators set depth to zero, when they mean 8Bpp. Fix up here */
107     }
108
109     if ((s->fli_type == FLC_FLX_TYPE_CODE) && (depth == 16)) {
110         depth = 15; /* Original Autodesk FLX's say the depth is 16Bpp when it is really 15Bpp */
111     }
112
113     switch (depth) {
114         case 8  : avctx->pix_fmt = PIX_FMT_PAL8; break;
115         case 15 : avctx->pix_fmt = PIX_FMT_RGB555; break;
116         case 16 : avctx->pix_fmt = PIX_FMT_RGB565; break;
117         case 24 : avctx->pix_fmt = PIX_FMT_BGR24; /* Supposedly BGR, but havent any files to test with */
118                   av_log(avctx, AV_LOG_ERROR, "24Bpp FLC/FLX is unsupported due to no test files.\n");
119                   return -1;
120         default :
121                   av_log(avctx, AV_LOG_ERROR, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth);
122                   return -1;
123     }
124
125     avcodec_get_frame_defaults(&s->frame);
126     s->frame.data[0] = NULL;
127     s->new_palette = 0;
128
129     return 0;
130 }
131
132 static int flic_decode_frame_8BPP(AVCodecContext *avctx,
133                                   void *data, int *data_size,
134                                   const uint8_t *buf, int buf_size)
135 {
136     FlicDecodeContext *s = avctx->priv_data;
137
138     GetByteContext g2;
139     int pixel_ptr;
140     int palette_ptr;
141     unsigned char palette_idx1;
142     unsigned char palette_idx2;
143
144     unsigned int frame_size;
145     int num_chunks;
146
147     unsigned int chunk_size;
148     int chunk_type;
149
150     int i, j;
151
152     int color_packets;
153     int color_changes;
154     int color_shift;
155     unsigned char r, g, b;
156
157     int lines;
158     int compressed_lines;
159     int starting_line;
160     signed short line_packets;
161     int y_ptr;
162     int byte_run;
163     int pixel_skip;
164     int pixel_countdown;
165     unsigned char *pixels;
166     unsigned int pixel_limit;
167
168     bytestream2_init(&g2, buf, buf_size);
169
170     s->frame.reference = 3;
171     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
172     if (avctx->reget_buffer(avctx, &s->frame) < 0) {
173         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
174         return -1;
175     }
176
177     pixels = s->frame.data[0];
178     pixel_limit = s->avctx->height * s->frame.linesize[0];
179     if (buf_size < 16 || buf_size > INT_MAX - (3 * 256 + FF_INPUT_BUFFER_PADDING_SIZE))
180         return AVERROR_INVALIDDATA;
181     frame_size = bytestream2_get_le32(&g2);
182     if (frame_size > buf_size)
183         frame_size = buf_size;
184     bytestream2_skip(&g2, 2); /* skip the magic number */
185     num_chunks = bytestream2_get_le16(&g2);
186     bytestream2_skip(&g2, 8);  /* skip padding */
187
188     frame_size -= 16;
189
190     /* iterate through the chunks */
191     while ((frame_size >= 6) && (num_chunks > 0)) {
192         int stream_ptr_after_chunk;
193         chunk_size = bytestream2_get_le32(&g2);
194         if (chunk_size > frame_size) {
195             av_log(avctx, AV_LOG_WARNING,
196                    "Invalid chunk_size = %u > frame_size = %u\n", chunk_size, frame_size);
197             chunk_size = frame_size;
198         }
199         stream_ptr_after_chunk = bytestream2_tell(&g2) - 4 + chunk_size;
200
201         chunk_type = bytestream2_get_le16(&g2);
202
203         switch (chunk_type) {
204         case FLI_256_COLOR:
205         case FLI_COLOR:
206             /* check special case: If this file is from the Magic Carpet
207              * game and uses 6-bit colors even though it reports 256-color
208              * chunks in a 0xAF12-type file (fli_type is set to 0xAF13 during
209              * initialization) */
210             if ((chunk_type == FLI_256_COLOR) && (s->fli_type != FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE))
211                 color_shift = 0;
212             else
213                 color_shift = 2;
214             /* set up the palette */
215             color_packets = bytestream2_get_le16(&g2);
216             palette_ptr = 0;
217             for (i = 0; i < color_packets; i++) {
218                 /* first byte is how many colors to skip */
219                 palette_ptr += bytestream2_get_byte(&g2);
220
221                 /* next byte indicates how many entries to change */
222                 color_changes = bytestream2_get_byte(&g2);
223
224                 /* if there are 0 color changes, there are actually 256 */
225                 if (color_changes == 0)
226                     color_changes = 256;
227
228                 if (bytestream2_tell(&g2) + color_changes * 3 > stream_ptr_after_chunk)
229                     break;
230
231                 for (j = 0; j < color_changes; j++) {
232                     unsigned int entry;
233
234                     /* wrap around, for good measure */
235                     if ((unsigned)palette_ptr >= 256)
236                         palette_ptr = 0;
237
238                     r = bytestream2_get_byte(&g2) << color_shift;
239                     g = bytestream2_get_byte(&g2) << color_shift;
240                     b = bytestream2_get_byte(&g2) << color_shift;
241                     entry = 0xFF << 24 | r << 16 | g << 8 | b;
242                     if (color_shift == 2)
243                         entry |= entry >> 6 & 0x30303;
244                     if (s->palette[palette_ptr] != entry)
245                         s->new_palette = 1;
246                     s->palette[palette_ptr++] = entry;
247                 }
248             }
249             break;
250
251         case FLI_DELTA:
252             y_ptr = 0;
253             compressed_lines = bytestream2_get_le16(&g2);
254             while (compressed_lines > 0) {
255                 if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
256                     break;
257                 line_packets = bytestream2_get_le16(&g2);
258                 if ((line_packets & 0xC000) == 0xC000) {
259                     // line skip opcode
260                     line_packets = -line_packets;
261                     y_ptr += line_packets * s->frame.linesize[0];
262                 } else if ((line_packets & 0xC000) == 0x4000) {
263                     av_log(avctx, AV_LOG_ERROR, "Undefined opcode (%x) in DELTA_FLI\n", line_packets);
264                 } else if ((line_packets & 0xC000) == 0x8000) {
265                     // "last byte" opcode
266                     pixel_ptr= y_ptr + s->frame.linesize[0] - 1;
267                     CHECK_PIXEL_PTR(0);
268                     pixels[pixel_ptr] = line_packets & 0xff;
269                 } else {
270                     compressed_lines--;
271                     pixel_ptr = y_ptr;
272                     CHECK_PIXEL_PTR(0);
273                     pixel_countdown = s->avctx->width;
274                     for (i = 0; i < line_packets; i++) {
275                         if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
276                             break;
277                         /* account for the skip bytes */
278                         pixel_skip = bytestream2_get_byte(&g2);
279                         pixel_ptr += pixel_skip;
280                         pixel_countdown -= pixel_skip;
281                         byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
282                         if (byte_run < 0) {
283                             byte_run = -byte_run;
284                             palette_idx1 = bytestream2_get_byte(&g2);
285                             palette_idx2 = bytestream2_get_byte(&g2);
286                             CHECK_PIXEL_PTR(byte_run * 2);
287                             for (j = 0; j < byte_run; j++, pixel_countdown -= 2) {
288                                 pixels[pixel_ptr++] = palette_idx1;
289                                 pixels[pixel_ptr++] = palette_idx2;
290                             }
291                         } else {
292                             CHECK_PIXEL_PTR(byte_run * 2);
293                             if (bytestream2_tell(&g2) + byte_run * 2 > stream_ptr_after_chunk)
294                                 break;
295                             for (j = 0; j < byte_run * 2; j++, pixel_countdown--) {
296                                 pixels[pixel_ptr++] = bytestream2_get_byte(&g2);
297                             }
298                         }
299                     }
300
301                     y_ptr += s->frame.linesize[0];
302                 }
303             }
304             break;
305
306         case FLI_LC:
307             /* line compressed */
308             starting_line = bytestream2_get_le16(&g2);
309             y_ptr = 0;
310             y_ptr += starting_line * s->frame.linesize[0];
311
312             compressed_lines = bytestream2_get_le16(&g2);
313             while (compressed_lines > 0) {
314                 pixel_ptr = y_ptr;
315                 CHECK_PIXEL_PTR(0);
316                 pixel_countdown = s->avctx->width;
317                 if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
318                     break;
319                 line_packets = bytestream2_get_byte(&g2);
320                 if (line_packets > 0) {
321                     for (i = 0; i < line_packets; i++) {
322                         /* account for the skip bytes */
323                         if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
324                             break;
325                         pixel_skip = bytestream2_get_byte(&g2);
326                         pixel_ptr += pixel_skip;
327                         pixel_countdown -= pixel_skip;
328                         byte_run = sign_extend(bytestream2_get_byte(&g2),8);
329                         if (byte_run > 0) {
330                             CHECK_PIXEL_PTR(byte_run);
331                             if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
332                                 break;
333                             for (j = 0; j < byte_run; j++, pixel_countdown--) {
334                                 pixels[pixel_ptr++] = bytestream2_get_byte(&g2);
335                             }
336                         } else if (byte_run < 0) {
337                             byte_run = -byte_run;
338                             palette_idx1 = bytestream2_get_byte(&g2);
339                             CHECK_PIXEL_PTR(byte_run);
340                             for (j = 0; j < byte_run; j++, pixel_countdown--) {
341                                 pixels[pixel_ptr++] = palette_idx1;
342                             }
343                         }
344                     }
345                 }
346
347                 y_ptr += s->frame.linesize[0];
348                 compressed_lines--;
349             }
350             break;
351
352         case FLI_BLACK:
353             /* set the whole frame to color 0 (which is usually black) */
354             memset(pixels, 0,
355                 s->frame.linesize[0] * s->avctx->height);
356             break;
357
358         case FLI_BRUN:
359             /* Byte run compression: This chunk type only occurs in the first
360              * FLI frame and it will update the entire frame. */
361             y_ptr = 0;
362             for (lines = 0; lines < s->avctx->height; lines++) {
363                 pixel_ptr = y_ptr;
364                 /* disregard the line packets; instead, iterate through all
365                  * pixels on a row */
366                  bytestream2_skip(&g2, 1);
367                 pixel_countdown = s->avctx->width;
368                 while (pixel_countdown > 0) {
369                     if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
370                         break;
371                     byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
372                     if (byte_run > 0) {
373                         palette_idx1 = bytestream2_get_byte(&g2);
374                         CHECK_PIXEL_PTR(byte_run);
375                         for (j = 0; j < byte_run; j++) {
376                             pixels[pixel_ptr++] = palette_idx1;
377                             pixel_countdown--;
378                             if (pixel_countdown < 0)
379                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
380                                        pixel_countdown, lines);
381                         }
382                     } else {  /* copy bytes if byte_run < 0 */
383                         byte_run = -byte_run;
384                         CHECK_PIXEL_PTR(byte_run);
385                         if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
386                             break;
387                         for (j = 0; j < byte_run; j++) {
388                             pixels[pixel_ptr++] = bytestream2_get_byte(&g2);
389                             pixel_countdown--;
390                             if (pixel_countdown < 0)
391                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
392                                        pixel_countdown, lines);
393                         }
394                     }
395                 }
396
397                 y_ptr += s->frame.linesize[0];
398             }
399             break;
400
401         case FLI_COPY:
402             /* copy the chunk (uncompressed frame) */
403             if (chunk_size - 6 != s->avctx->width * s->avctx->height) {
404                 av_log(avctx, AV_LOG_ERROR, "In chunk FLI_COPY : source data (%d bytes) " \
405                        "has incorrect size, skipping chunk\n", chunk_size - 6);
406                 bytestream2_skip(&g2, chunk_size - 6);
407             } else {
408                 for (y_ptr = 0; y_ptr < s->frame.linesize[0] * s->avctx->height;
409                      y_ptr += s->frame.linesize[0]) {
410                     bytestream2_get_buffer(&g2, &pixels[y_ptr],
411                                            s->avctx->width);
412                 }
413             }
414             break;
415
416         case FLI_MINI:
417             /* some sort of a thumbnail? disregard this chunk... */
418             break;
419
420         default:
421             av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type);
422             break;
423         }
424
425         if (stream_ptr_after_chunk - bytestream2_tell(&g2) > 0)
426             bytestream2_skip(&g2, stream_ptr_after_chunk - bytestream2_tell(&g2));
427
428         frame_size -= chunk_size;
429         num_chunks--;
430     }
431
432     /* by the end of the chunk, the stream ptr should equal the frame
433      * size (minus 1, possibly); if it doesn't, issue a warning */
434     if ((bytestream2_get_bytes_left(&g2) != 0) &&
435         (bytestream2_get_bytes_left(&g2) != 1))
436         av_log(avctx, AV_LOG_ERROR, "Processed FLI chunk where chunk size = %d " \
437                "and final chunk ptr = %d\n", buf_size,
438                buf_size - bytestream2_get_bytes_left(&g2));
439
440     /* make the palette available on the way out */
441     memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
442     if (s->new_palette) {
443         s->frame.palette_has_changed = 1;
444         s->new_palette = 0;
445     }
446
447     *data_size=sizeof(AVFrame);
448     *(AVFrame*)data = s->frame;
449
450     return buf_size;
451 }
452
453 static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
454                                       void *data, int *data_size,
455                                       const uint8_t *buf, int buf_size)
456 {
457     /* Note, the only difference between the 15Bpp and 16Bpp */
458     /* Format is the pixel format, the packets are processed the same. */
459     FlicDecodeContext *s = avctx->priv_data;
460
461     GetByteContext g2;
462     int pixel_ptr;
463     unsigned char palette_idx1;
464
465     unsigned int frame_size;
466     int num_chunks;
467
468     unsigned int chunk_size;
469     int chunk_type;
470
471     int i, j;
472
473     int lines;
474     int compressed_lines;
475     signed short line_packets;
476     int y_ptr;
477     int byte_run;
478     int pixel_skip;
479     int pixel_countdown;
480     unsigned char *pixels;
481     int pixel;
482     unsigned int pixel_limit;
483
484     bytestream2_init(&g2, buf, buf_size);
485
486     s->frame.reference = 3;
487     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
488     if (avctx->reget_buffer(avctx, &s->frame) < 0) {
489         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
490         return -1;
491     }
492
493     pixels = s->frame.data[0];
494     pixel_limit = s->avctx->height * s->frame.linesize[0];
495
496     frame_size = bytestream2_get_le32(&g2);
497     bytestream2_skip(&g2, 2);  /* skip the magic number */
498     num_chunks = bytestream2_get_le16(&g2);
499     bytestream2_skip(&g2, 8);  /* skip padding */
500     if (frame_size > buf_size)
501         frame_size = buf_size;
502
503     frame_size -= 16;
504
505     /* iterate through the chunks */
506     while ((frame_size > 0) && (num_chunks > 0)) {
507         int stream_ptr_after_chunk;
508         chunk_size = bytestream2_get_le32(&g2);
509         if (chunk_size > frame_size) {
510             av_log(avctx, AV_LOG_WARNING,
511                    "Invalid chunk_size = %u > frame_size = %u\n", chunk_size, frame_size);
512             chunk_size = frame_size;
513         }
514         stream_ptr_after_chunk = bytestream2_tell(&g2) - 4 + chunk_size;
515
516         chunk_type = bytestream2_get_le16(&g2);
517
518
519         switch (chunk_type) {
520         case FLI_256_COLOR:
521         case FLI_COLOR:
522             /* For some reason, it seems that non-palettized flics do
523              * include one of these chunks in their first frame.
524              * Why I do not know, it seems rather extraneous. */
525 /*            av_log(avctx, AV_LOG_ERROR, "Unexpected Palette chunk %d in non-paletised FLC\n",chunk_type);*/
526             bytestream2_skip(&g2, chunk_size - 6);
527             break;
528
529         case FLI_DELTA:
530         case FLI_DTA_LC:
531             y_ptr = 0;
532             compressed_lines = bytestream2_get_le16(&g2);
533             while (compressed_lines > 0) {
534                 if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
535                     break;
536                 line_packets = bytestream2_get_le16(&g2);
537                 if (line_packets < 0) {
538                     line_packets = -line_packets;
539                     y_ptr += line_packets * s->frame.linesize[0];
540                 } else {
541                     compressed_lines--;
542                     pixel_ptr = y_ptr;
543                     CHECK_PIXEL_PTR(0);
544                     pixel_countdown = s->avctx->width;
545                     for (i = 0; i < line_packets; i++) {
546                         /* account for the skip bytes */
547                         if (bytestream2_tell(&g2) + 2 > stream_ptr_after_chunk)
548                             break;
549                         pixel_skip = bytestream2_get_byte(&g2);
550                         pixel_ptr += (pixel_skip*2); /* Pixel is 2 bytes wide */
551                         pixel_countdown -= pixel_skip;
552                         byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
553                         if (byte_run < 0) {
554                             byte_run = -byte_run;
555                             pixel    = bytestream2_get_le16(&g2);
556                             CHECK_PIXEL_PTR(2 * byte_run);
557                             for (j = 0; j < byte_run; j++, pixel_countdown -= 2) {
558                                 *((signed short*)(&pixels[pixel_ptr])) = pixel;
559                                 pixel_ptr += 2;
560                             }
561                         } else {
562                             if (bytestream2_tell(&g2) + 2*byte_run > stream_ptr_after_chunk)
563                                 break;
564                             CHECK_PIXEL_PTR(2 * byte_run);
565                             for (j = 0; j < byte_run; j++, pixel_countdown--) {
566                                 *((signed short*)(&pixels[pixel_ptr])) = bytestream2_get_le16(&g2);
567                                 pixel_ptr += 2;
568                             }
569                         }
570                     }
571
572                     y_ptr += s->frame.linesize[0];
573                 }
574             }
575             break;
576
577         case FLI_LC:
578             av_log(avctx, AV_LOG_ERROR, "Unexpected FLI_LC chunk in non-paletised FLC\n");
579             bytestream2_skip(&g2, chunk_size - 6);
580             break;
581
582         case FLI_BLACK:
583             /* set the whole frame to 0x0000 which is black in both 15Bpp and 16Bpp modes. */
584             memset(pixels, 0x0000,
585                    s->frame.linesize[0] * s->avctx->height);
586             break;
587
588         case FLI_BRUN:
589             y_ptr = 0;
590             for (lines = 0; lines < s->avctx->height; lines++) {
591                 pixel_ptr = y_ptr;
592                 /* disregard the line packets; instead, iterate through all
593                  * pixels on a row */
594                 bytestream2_skip(&g2, 1);
595                 pixel_countdown = (s->avctx->width * 2);
596
597                 while (pixel_countdown > 0) {
598                     if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
599                         break;
600                     byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
601                     if (byte_run > 0) {
602                         palette_idx1 = bytestream2_get_byte(&g2);
603                         CHECK_PIXEL_PTR(byte_run);
604                         for (j = 0; j < byte_run; j++) {
605                             pixels[pixel_ptr++] = palette_idx1;
606                             pixel_countdown--;
607                             if (pixel_countdown < 0)
608                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) (linea%d)\n",
609                                        pixel_countdown, lines);
610                         }
611                     } else {  /* copy bytes if byte_run < 0 */
612                         byte_run = -byte_run;
613                         if (bytestream2_tell(&g2) + byte_run > stream_ptr_after_chunk)
614                             break;
615                         CHECK_PIXEL_PTR(byte_run);
616                         for (j = 0; j < byte_run; j++) {
617                             palette_idx1 = bytestream2_get_byte(&g2);
618                             pixels[pixel_ptr++] = palette_idx1;
619                             pixel_countdown--;
620                             if (pixel_countdown < 0)
621                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d) at line %d\n",
622                                        pixel_countdown, lines);
623                         }
624                     }
625                 }
626
627                 /* Now FLX is strange, in that it is "byte" as opposed to "pixel" run length compressed.
628                  * This does not give us any good oportunity to perform word endian conversion
629                  * during decompression. So if it is required (i.e., this is not a LE target, we do
630                  * a second pass over the line here, swapping the bytes.
631                  */
632 #if HAVE_BIGENDIAN
633                 pixel_ptr = y_ptr;
634                 pixel_countdown = s->avctx->width;
635                 while (pixel_countdown > 0) {
636                     *((signed short*)(&pixels[pixel_ptr])) = AV_RL16(&buf[pixel_ptr]);
637                     pixel_ptr += 2;
638                 }
639 #endif
640                 y_ptr += s->frame.linesize[0];
641             }
642             break;
643
644         case FLI_DTA_BRUN:
645             y_ptr = 0;
646             for (lines = 0; lines < s->avctx->height; lines++) {
647                 pixel_ptr = y_ptr;
648                 /* disregard the line packets; instead, iterate through all
649                  * pixels on a row */
650                 bytestream2_skip(&g2, 1);
651                 pixel_countdown = s->avctx->width; /* Width is in pixels, not bytes */
652
653                 while (pixel_countdown > 0) {
654                     if (bytestream2_tell(&g2) + 1 > stream_ptr_after_chunk)
655                         break;
656                     byte_run = sign_extend(bytestream2_get_byte(&g2), 8);
657                     if (byte_run > 0) {
658                         pixel    = bytestream2_get_le16(&g2);
659                         CHECK_PIXEL_PTR(2 * byte_run);
660                         for (j = 0; j < byte_run; j++) {
661                             *((signed short*)(&pixels[pixel_ptr])) = pixel;
662                             pixel_ptr += 2;
663                             pixel_countdown--;
664                             if (pixel_countdown < 0)
665                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
666                                        pixel_countdown);
667                         }
668                     } else {  /* copy pixels if byte_run < 0 */
669                         byte_run = -byte_run;
670                         if (bytestream2_tell(&g2) + 2 * byte_run > stream_ptr_after_chunk)
671                             break;
672                         CHECK_PIXEL_PTR(2 * byte_run);
673                         for (j = 0; j < byte_run; j++) {
674                             *((signed short*)(&pixels[pixel_ptr])) = bytestream2_get_le16(&g2);
675                             pixel_ptr  += 2;
676                             pixel_countdown--;
677                             if (pixel_countdown < 0)
678                                 av_log(avctx, AV_LOG_ERROR, "pixel_countdown < 0 (%d)\n",
679                                        pixel_countdown);
680                         }
681                     }
682                 }
683
684                 y_ptr += s->frame.linesize[0];
685             }
686             break;
687
688         case FLI_COPY:
689         case FLI_DTA_COPY:
690             /* copy the chunk (uncompressed frame) */
691             if (chunk_size - 6 > (unsigned int)(s->avctx->width * s->avctx->height)*2) {
692                 av_log(avctx, AV_LOG_ERROR, "In chunk FLI_COPY : source data (%d bytes) " \
693                        "bigger than image, skipping chunk\n", chunk_size - 6);
694                 bytestream2_skip(&g2, chunk_size - 6);
695             } else {
696
697                 for (y_ptr = 0; y_ptr < s->frame.linesize[0] * s->avctx->height;
698                      y_ptr += s->frame.linesize[0]) {
699
700                     pixel_countdown = s->avctx->width;
701                     pixel_ptr = 0;
702                     while (pixel_countdown > 0) {
703                       *((signed short*)(&pixels[y_ptr + pixel_ptr])) = bytestream2_get_le16(&g2);
704                       pixel_ptr += 2;
705                       pixel_countdown--;
706                     }
707                 }
708             }
709             break;
710
711         case FLI_MINI:
712             /* some sort of a thumbnail? disregard this chunk... */
713             bytestream2_skip(&g2, chunk_size - 6);
714             break;
715
716         default:
717             av_log(avctx, AV_LOG_ERROR, "Unrecognized chunk type: %d\n", chunk_type);
718             break;
719         }
720
721         frame_size -= chunk_size;
722         num_chunks--;
723     }
724
725     /* by the end of the chunk, the stream ptr should equal the frame
726      * size (minus 1, possibly); if it doesn't, issue a warning */
727     if ((bytestream2_get_bytes_left(&g2) != 0) && (bytestream2_get_bytes_left(&g2) != 1))
728         av_log(avctx, AV_LOG_ERROR, "Processed FLI chunk where chunk size = %d " \
729                "and final chunk ptr = %d\n", buf_size, bytestream2_tell(&g2));
730
731
732     *data_size=sizeof(AVFrame);
733     *(AVFrame*)data = s->frame;
734
735     return buf_size;
736 }
737
738 static int flic_decode_frame_24BPP(AVCodecContext *avctx,
739                                    void *data, int *data_size,
740                                    const uint8_t *buf, int buf_size)
741 {
742   av_log(avctx, AV_LOG_ERROR, "24Bpp FLC Unsupported due to lack of test files.\n");
743   return -1;
744 }
745
746 static int flic_decode_frame(AVCodecContext *avctx,
747                              void *data, int *data_size,
748                              AVPacket *avpkt)
749 {
750     const uint8_t *buf = avpkt->data;
751     int buf_size = avpkt->size;
752     if (avctx->pix_fmt == PIX_FMT_PAL8) {
753       return flic_decode_frame_8BPP(avctx, data, data_size,
754                                     buf, buf_size);
755     }
756     else if ((avctx->pix_fmt == PIX_FMT_RGB555) ||
757              (avctx->pix_fmt == PIX_FMT_RGB565)) {
758       return flic_decode_frame_15_16BPP(avctx, data, data_size,
759                                         buf, buf_size);
760     }
761     else if (avctx->pix_fmt == PIX_FMT_BGR24) {
762       return flic_decode_frame_24BPP(avctx, data, data_size,
763                                      buf, buf_size);
764     }
765
766     /* Should not get  here, ever as the pix_fmt is processed */
767     /* in flic_decode_init and the above if should deal with */
768     /* the finite set of possibilites allowable by here. */
769     /* But in case we do, just error out. */
770     av_log(avctx, AV_LOG_ERROR, "Unknown FLC format, my science cannot explain how this happened.\n");
771     return -1;
772 }
773
774
775 static av_cold int flic_decode_end(AVCodecContext *avctx)
776 {
777     FlicDecodeContext *s = avctx->priv_data;
778
779     if (s->frame.data[0])
780         avctx->release_buffer(avctx, &s->frame);
781
782     return 0;
783 }
784
785 AVCodec ff_flic_decoder = {
786     .name           = "flic",
787     .type           = AVMEDIA_TYPE_VIDEO,
788     .id             = CODEC_ID_FLIC,
789     .priv_data_size = sizeof(FlicDecodeContext),
790     .init           = flic_decode_init,
791     .close          = flic_decode_end,
792     .decode         = flic_decode_frame,
793     .capabilities   = CODEC_CAP_DR1,
794     .long_name = NULL_IF_CONFIG_SMALL("Autodesk Animator Flic video"),
795 };