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