OSDN Git Service

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