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