2 * FLI/FLC Animation Video Decoder
3 * Copyright (C) 2003, 2004 the ffmpeg project
5 * This file is part of FFmpeg.
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.
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.
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
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
28 * http://www.compuphase.com/flic.htm
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.
46 #define FLI_256_COLOR 4
54 #define FLI_DTA_BRUN 25
55 #define FLI_DTA_COPY 26
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)
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); \
70 typedef struct FlicDecodeContext {
71 AVCodecContext
*avctx
;
74 unsigned int palette
[256];
76 int fli_type
; /* either 0xAF11 or 0xAF12, affects palette resolution */
79 static av_cold
int flic_decode_init(AVCodecContext
*avctx
)
81 FlicDecodeContext
*s
= avctx
->priv_data
;
82 unsigned char *fli_header
= (unsigned char *)avctx
->extradata
;
87 s
->fli_type
= AV_RL16(&fli_header
[4]); /* Might be overridden if a Magic Carpet FLC */
90 if (s
->avctx
->extradata_size
== 12) {
91 /* special case for magic carpet FLIs */
92 s
->fli_type
= FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE
;
94 } else if (s
->avctx
->extradata_size
!= 128) {
95 av_log(avctx
, AV_LOG_ERROR
, "Expected extradata of 12 or 128 bytes\n");
98 depth
= AV_RL16(&fli_header
[12]);
102 depth
= 8; /* Some FLC generators set depth to zero, when they mean 8Bpp. Fix up here */
105 if ((s
->fli_type
== FLC_FLX_TYPE_CODE
) && (depth
== 16)) {
106 depth
= 15; /* Original Autodesk FLX's say the depth is 16Bpp when it is really 15Bpp */
110 case 8 : avctx
->pix_fmt
= PIX_FMT_PAL8
; break;
111 case 15 : avctx
->pix_fmt
= PIX_FMT_RGB555
; break;
112 case 16 : avctx
->pix_fmt
= PIX_FMT_RGB565
; break;
113 case 24 : avctx
->pix_fmt
= PIX_FMT_BGR24
; /* Supposedly BGR, but havent any files to test with */
114 av_log(avctx
, AV_LOG_ERROR
, "24Bpp FLC/FLX is unsupported due to no test files.\n");
118 av_log(avctx
, AV_LOG_ERROR
, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth
);
122 s
->frame
.data
[0] = NULL
;
128 static int flic_decode_frame_8BPP(AVCodecContext
*avctx
,
129 void *data
, int *data_size
,
130 const uint8_t *buf
, int buf_size
)
132 FlicDecodeContext
*s
= avctx
->priv_data
;
135 int stream_ptr_after_color_chunk
;
138 unsigned char palette_idx1
;
139 unsigned char palette_idx2
;
141 unsigned int frame_size
;
144 unsigned int chunk_size
;
152 unsigned char r
, g
, b
;
155 int compressed_lines
;
157 signed short line_packets
;
162 unsigned char *pixels
;
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");
172 pixels
= s
->frame
.data
[0];
173 pixel_limit
= s
->avctx
->height
* s
->frame
.linesize
[0];
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 */
182 /* iterate through the chunks */
183 while ((frame_size
> 0) && (num_chunks
> 0)) {
184 chunk_size
= AV_RL32(&buf
[stream_ptr
]);
186 chunk_type
= AV_RL16(&buf
[stream_ptr
]);
189 switch (chunk_type
) {
192 stream_ptr_after_color_chunk
= stream_ptr
+ chunk_size
- 6;
194 /* check special case: If this file is from the Magic Carpet
195 * game and uses 6-bit colors even though it reports 256-color
196 * chunks in a 0xAF12-type file (fli_type is set to 0xAF13 during
198 if ((chunk_type
== FLI_256_COLOR
) && (s
->fli_type
!= FLC_MAGIC_CARPET_SYNTHETIC_TYPE_CODE
))
202 /* set up the palette */
203 color_packets
= AV_RL16(&buf
[stream_ptr
]);
206 for (i
= 0; i
< color_packets
; i
++) {
207 /* first byte is how many colors to skip */
208 palette_ptr
+= buf
[stream_ptr
++];
210 /* next byte indicates how many entries to change */
211 color_changes
= buf
[stream_ptr
++];
213 /* if there are 0 color changes, there are actually 256 */
214 if (color_changes
== 0)
217 for (j
= 0; j
< color_changes
; j
++) {
220 /* wrap around, for good measure */
221 if ((unsigned)palette_ptr
>= 256)
224 r
= buf
[stream_ptr
++] << color_shift
;
225 g
= buf
[stream_ptr
++] << color_shift
;
226 b
= buf
[stream_ptr
++] << color_shift
;
227 entry
= (r
<< 16) | (g
<< 8) | b
;
228 if (s
->palette
[palette_ptr
] != entry
)
230 s
->palette
[palette_ptr
++] = entry
;
234 /* color chunks sometimes have weird 16-bit alignment issues;
235 * therefore, take the hardline approach and set the stream_ptr
236 * to the value calculated w.r.t. the size specified by the color
238 stream_ptr
= stream_ptr_after_color_chunk
;
244 compressed_lines
= AV_RL16(&buf
[stream_ptr
]);
246 while (compressed_lines
> 0) {
247 line_packets
= AV_RL16(&buf
[stream_ptr
]);
249 if ((line_packets
& 0xC000) == 0xC000) {
251 line_packets
= -line_packets
;
252 y_ptr
+= line_packets
* s
->frame
.linesize
[0];
253 } else if ((line_packets
& 0xC000) == 0x4000) {
254 av_log(avctx
, AV_LOG_ERROR
, "Undefined opcode (%x) in DELTA_FLI\n", line_packets
);
255 } else if ((line_packets
& 0xC000) == 0x8000) {
256 // "last byte" opcode
257 pixels
[y_ptr
+ s
->frame
.linesize
[0] - 1] = line_packets
& 0xff;
261 pixel_countdown
= s
->avctx
->width
;
262 for (i
= 0; i
< line_packets
; i
++) {
263 /* account for the skip bytes */
264 pixel_skip
= buf
[stream_ptr
++];
265 pixel_ptr
+= pixel_skip
;
266 pixel_countdown
-= pixel_skip
;
267 byte_run
= (signed char)(buf
[stream_ptr
++]);
269 byte_run
= -byte_run
;
270 palette_idx1
= buf
[stream_ptr
++];
271 palette_idx2
= buf
[stream_ptr
++];
272 CHECK_PIXEL_PTR(byte_run
);
273 for (j
= 0; j
< byte_run
; j
++, pixel_countdown
-= 2) {
274 pixels
[pixel_ptr
++] = palette_idx1
;
275 pixels
[pixel_ptr
++] = palette_idx2
;
278 CHECK_PIXEL_PTR(byte_run
* 2);
279 for (j
= 0; j
< byte_run
* 2; j
++, pixel_countdown
--) {
280 palette_idx1
= buf
[stream_ptr
++];
281 pixels
[pixel_ptr
++] = palette_idx1
;
286 y_ptr
+= s
->frame
.linesize
[0];
292 /* line compressed */
293 starting_line
= AV_RL16(&buf
[stream_ptr
]);
296 y_ptr
+= starting_line
* s
->frame
.linesize
[0];
298 compressed_lines
= AV_RL16(&buf
[stream_ptr
]);
300 while (compressed_lines
> 0) {
302 pixel_countdown
= s
->avctx
->width
;
303 line_packets
= buf
[stream_ptr
++];
304 if (line_packets
> 0) {
305 for (i
= 0; i
< line_packets
; i
++) {
306 /* account for the skip bytes */
307 pixel_skip
= buf
[stream_ptr
++];
308 pixel_ptr
+= pixel_skip
;
309 pixel_countdown
-= pixel_skip
;
310 byte_run
= (signed char)(buf
[stream_ptr
++]);
312 CHECK_PIXEL_PTR(byte_run
);
313 for (j
= 0; j
< byte_run
; j
++, pixel_countdown
--) {
314 palette_idx1
= buf
[stream_ptr
++];
315 pixels
[pixel_ptr
++] = palette_idx1
;
317 } else if (byte_run
< 0) {
318 byte_run
= -byte_run
;
319 palette_idx1
= buf
[stream_ptr
++];
320 CHECK_PIXEL_PTR(byte_run
);
321 for (j
= 0; j
< byte_run
; j
++, pixel_countdown
--) {
322 pixels
[pixel_ptr
++] = palette_idx1
;
328 y_ptr
+= s
->frame
.linesize
[0];
334 /* set the whole frame to color 0 (which is usually black) */
336 s
->frame
.linesize
[0] * s
->avctx
->height
);
340 /* Byte run compression: This chunk type only occurs in the first
341 * FLI frame and it will update the entire frame. */
343 for (lines
= 0; lines
< s
->avctx
->height
; lines
++) {
345 /* disregard the line packets; instead, iterate through all
348 pixel_countdown
= s
->avctx
->width
;
349 while (pixel_countdown
> 0) {
350 byte_run
= (signed char)(buf
[stream_ptr
++]);
352 palette_idx1
= buf
[stream_ptr
++];
353 CHECK_PIXEL_PTR(byte_run
);
354 for (j
= 0; j
< byte_run
; j
++) {
355 pixels
[pixel_ptr
++] = palette_idx1
;
357 if (pixel_countdown
< 0)
358 av_log(avctx
, AV_LOG_ERROR
, "pixel_countdown < 0 (%d) at line %d\n",
359 pixel_countdown
, lines
);
361 } else { /* copy bytes if byte_run < 0 */
362 byte_run
= -byte_run
;
363 CHECK_PIXEL_PTR(byte_run
);
364 for (j
= 0; j
< byte_run
; j
++) {
365 palette_idx1
= buf
[stream_ptr
++];
366 pixels
[pixel_ptr
++] = palette_idx1
;
368 if (pixel_countdown
< 0)
369 av_log(avctx
, AV_LOG_ERROR
, "pixel_countdown < 0 (%d) at line %d\n",
370 pixel_countdown
, lines
);
375 y_ptr
+= s
->frame
.linesize
[0];
380 /* copy the chunk (uncompressed frame) */
381 if (chunk_size
- 6 > s
->avctx
->width
* s
->avctx
->height
) {
382 av_log(avctx
, AV_LOG_ERROR
, "In chunk FLI_COPY : source data (%d bytes) " \
383 "bigger than image, skipping chunk\n", chunk_size
- 6);
384 stream_ptr
+= chunk_size
- 6;
386 for (y_ptr
= 0; y_ptr
< s
->frame
.linesize
[0] * s
->avctx
->height
;
387 y_ptr
+= s
->frame
.linesize
[0]) {
388 memcpy(&pixels
[y_ptr
], &buf
[stream_ptr
],
390 stream_ptr
+= s
->avctx
->width
;
396 /* some sort of a thumbnail? disregard this chunk... */
397 stream_ptr
+= chunk_size
- 6;
401 av_log(avctx
, AV_LOG_ERROR
, "Unrecognized chunk type: %d\n", chunk_type
);
405 frame_size
-= chunk_size
;
409 /* by the end of the chunk, the stream ptr should equal the frame
410 * size (minus 1, possibly); if it doesn't, issue a warning */
411 if ((stream_ptr
!= buf_size
) && (stream_ptr
!= buf_size
- 1))
412 av_log(avctx
, AV_LOG_ERROR
, "Processed FLI chunk where chunk size = %d " \
413 "and final chunk ptr = %d\n", buf_size
, stream_ptr
);
415 /* make the palette available on the way out */
416 memcpy(s
->frame
.data
[1], s
->palette
, AVPALETTE_SIZE
);
417 if (s
->new_palette
) {
418 s
->frame
.palette_has_changed
= 1;
422 *data_size
=sizeof(AVFrame
);
423 *(AVFrame
*)data
= s
->frame
;
428 static int flic_decode_frame_15_16BPP(AVCodecContext
*avctx
,
429 void *data
, int *data_size
,
430 const uint8_t *buf
, int buf_size
)
432 /* Note, the only difference between the 15Bpp and 16Bpp */
433 /* Format is the pixel format, the packets are processed the same. */
434 FlicDecodeContext
*s
= avctx
->priv_data
;
438 unsigned char palette_idx1
;
440 unsigned int frame_size
;
443 unsigned int chunk_size
;
449 int compressed_lines
;
450 signed short line_packets
;
455 unsigned char *pixels
;
459 s
->frame
.reference
= 1;
460 s
->frame
.buffer_hints
= FF_BUFFER_HINTS_VALID
| FF_BUFFER_HINTS_PRESERVE
| FF_BUFFER_HINTS_REUSABLE
;
461 if (avctx
->reget_buffer(avctx
, &s
->frame
) < 0) {
462 av_log(avctx
, AV_LOG_ERROR
, "reget_buffer() failed\n");
466 pixels
= s
->frame
.data
[0];
467 pixel_limit
= s
->avctx
->height
* s
->frame
.linesize
[0];
469 frame_size
= AV_RL32(&buf
[stream_ptr
]);
470 stream_ptr
+= 6; /* skip the magic number */
471 num_chunks
= AV_RL16(&buf
[stream_ptr
]);
472 stream_ptr
+= 10; /* skip padding */
476 /* iterate through the chunks */
477 while ((frame_size
> 0) && (num_chunks
> 0)) {
478 chunk_size
= AV_RL32(&buf
[stream_ptr
]);
480 chunk_type
= AV_RL16(&buf
[stream_ptr
]);
483 switch (chunk_type
) {
486 /* For some reason, it seems that non-palettized flics do
487 * include one of these chunks in their first frame.
488 * Why I do not know, it seems rather extraneous. */
489 /* av_log(avctx, AV_LOG_ERROR, "Unexpected Palette chunk %d in non-paletised FLC\n",chunk_type);*/
490 stream_ptr
= stream_ptr
+ chunk_size
- 6;
496 compressed_lines
= AV_RL16(&buf
[stream_ptr
]);
498 while (compressed_lines
> 0) {
499 line_packets
= AV_RL16(&buf
[stream_ptr
]);
501 if (line_packets
< 0) {
502 line_packets
= -line_packets
;
503 y_ptr
+= line_packets
* s
->frame
.linesize
[0];
507 pixel_countdown
= s
->avctx
->width
;
508 for (i
= 0; i
< line_packets
; i
++) {
509 /* account for the skip bytes */
510 pixel_skip
= buf
[stream_ptr
++];
511 pixel_ptr
+= (pixel_skip
*2); /* Pixel is 2 bytes wide */
512 pixel_countdown
-= pixel_skip
;
513 byte_run
= (signed char)(buf
[stream_ptr
++]);
515 byte_run
= -byte_run
;
516 pixel
= AV_RL16(&buf
[stream_ptr
]);
518 CHECK_PIXEL_PTR(byte_run
);
519 for (j
= 0; j
< byte_run
; j
++, pixel_countdown
-= 2) {
520 *((signed short*)(&pixels
[pixel_ptr
])) = pixel
;
524 CHECK_PIXEL_PTR(byte_run
);
525 for (j
= 0; j
< byte_run
; j
++, pixel_countdown
--) {
526 *((signed short*)(&pixels
[pixel_ptr
])) = AV_RL16(&buf
[stream_ptr
]);
533 y_ptr
+= s
->frame
.linesize
[0];
539 av_log(avctx
, AV_LOG_ERROR
, "Unexpected FLI_LC chunk in non-paletised FLC\n");
540 stream_ptr
= stream_ptr
+ chunk_size
- 6;
544 /* set the whole frame to 0x0000 which is black in both 15Bpp and 16Bpp modes. */
545 memset(pixels
, 0x0000,
546 s
->frame
.linesize
[0] * s
->avctx
->height
);
551 for (lines
= 0; lines
< s
->avctx
->height
; lines
++) {
553 /* disregard the line packets; instead, iterate through all
556 pixel_countdown
= (s
->avctx
->width
* 2);
558 while (pixel_countdown
> 0) {
559 byte_run
= (signed char)(buf
[stream_ptr
++]);
561 palette_idx1
= buf
[stream_ptr
++];
562 CHECK_PIXEL_PTR(byte_run
);
563 for (j
= 0; j
< byte_run
; j
++) {
564 pixels
[pixel_ptr
++] = palette_idx1
;
566 if (pixel_countdown
< 0)
567 av_log(avctx
, AV_LOG_ERROR
, "pixel_countdown < 0 (%d) (linea%d)\n",
568 pixel_countdown
, lines
);
570 } else { /* copy bytes if byte_run < 0 */
571 byte_run
= -byte_run
;
572 CHECK_PIXEL_PTR(byte_run
);
573 for (j
= 0; j
< byte_run
; j
++) {
574 palette_idx1
= buf
[stream_ptr
++];
575 pixels
[pixel_ptr
++] = palette_idx1
;
577 if (pixel_countdown
< 0)
578 av_log(avctx
, AV_LOG_ERROR
, "pixel_countdown < 0 (%d) at line %d\n",
579 pixel_countdown
, lines
);
584 /* Now FLX is strange, in that it is "byte" as opposed to "pixel" run length compressed.
585 * This does not give us any good oportunity to perform word endian conversion
586 * during decompression. So if it is required (i.e., this is not a LE target, we do
587 * a second pass over the line here, swapping the bytes.
589 #ifdef WORDS_BIGENDIAN
591 pixel_countdown
= s
->avctx
->width
;
592 while (pixel_countdown
> 0) {
593 *((signed short*)(&pixels
[pixel_ptr
])) = AV_RL16(&buf
[pixel_ptr
]);
597 y_ptr
+= s
->frame
.linesize
[0];
603 for (lines
= 0; lines
< s
->avctx
->height
; lines
++) {
605 /* disregard the line packets; instead, iterate through all
608 pixel_countdown
= s
->avctx
->width
; /* Width is in pixels, not bytes */
610 while (pixel_countdown
> 0) {
611 byte_run
= (signed char)(buf
[stream_ptr
++]);
613 pixel
= AV_RL16(&buf
[stream_ptr
]);
615 CHECK_PIXEL_PTR(byte_run
);
616 for (j
= 0; j
< byte_run
; j
++) {
617 *((signed short*)(&pixels
[pixel_ptr
])) = pixel
;
620 if (pixel_countdown
< 0)
621 av_log(avctx
, AV_LOG_ERROR
, "pixel_countdown < 0 (%d)\n",
624 } else { /* copy pixels if byte_run < 0 */
625 byte_run
= -byte_run
;
626 CHECK_PIXEL_PTR(byte_run
);
627 for (j
= 0; j
< byte_run
; j
++) {
628 *((signed short*)(&pixels
[pixel_ptr
])) = AV_RL16(&buf
[stream_ptr
]);
632 if (pixel_countdown
< 0)
633 av_log(avctx
, AV_LOG_ERROR
, "pixel_countdown < 0 (%d)\n",
639 y_ptr
+= s
->frame
.linesize
[0];
645 /* copy the chunk (uncompressed frame) */
646 if (chunk_size
- 6 > (unsigned int)(s
->avctx
->width
* s
->avctx
->height
)*2) {
647 av_log(avctx
, AV_LOG_ERROR
, "In chunk FLI_COPY : source data (%d bytes) " \
648 "bigger than image, skipping chunk\n", chunk_size
- 6);
649 stream_ptr
+= chunk_size
- 6;
652 for (y_ptr
= 0; y_ptr
< s
->frame
.linesize
[0] * s
->avctx
->height
;
653 y_ptr
+= s
->frame
.linesize
[0]) {
655 pixel_countdown
= s
->avctx
->width
;
657 while (pixel_countdown
> 0) {
658 *((signed short*)(&pixels
[y_ptr
+ pixel_ptr
])) = AV_RL16(&buf
[stream_ptr
+pixel_ptr
]);
662 stream_ptr
+= s
->avctx
->width
*2;
668 /* some sort of a thumbnail? disregard this chunk... */
669 stream_ptr
+= chunk_size
- 6;
673 av_log(avctx
, AV_LOG_ERROR
, "Unrecognized chunk type: %d\n", chunk_type
);
677 frame_size
-= chunk_size
;
681 /* by the end of the chunk, the stream ptr should equal the frame
682 * size (minus 1, possibly); if it doesn't, issue a warning */
683 if ((stream_ptr
!= buf_size
) && (stream_ptr
!= buf_size
- 1))
684 av_log(avctx
, AV_LOG_ERROR
, "Processed FLI chunk where chunk size = %d " \
685 "and final chunk ptr = %d\n", buf_size
, stream_ptr
);
688 *data_size
=sizeof(AVFrame
);
689 *(AVFrame
*)data
= s
->frame
;
694 static int flic_decode_frame_24BPP(AVCodecContext
*avctx
,
695 void *data
, int *data_size
,
696 const uint8_t *buf
, int buf_size
)
698 av_log(avctx
, AV_LOG_ERROR
, "24Bpp FLC Unsupported due to lack of test files.\n");
702 static int flic_decode_frame(AVCodecContext
*avctx
,
703 void *data
, int *data_size
,
704 const uint8_t *buf
, int buf_size
)
706 if (avctx
->pix_fmt
== PIX_FMT_PAL8
) {
707 return flic_decode_frame_8BPP(avctx
, data
, data_size
,
710 else if ((avctx
->pix_fmt
== PIX_FMT_RGB555
) ||
711 (avctx
->pix_fmt
== PIX_FMT_RGB565
)) {
712 return flic_decode_frame_15_16BPP(avctx
, data
, data_size
,
715 else if (avctx
->pix_fmt
== PIX_FMT_BGR24
) {
716 return flic_decode_frame_24BPP(avctx
, data
, data_size
,
720 /* Should not get here, ever as the pix_fmt is processed */
721 /* in flic_decode_init and the above if should deal with */
722 /* the finite set of possibilites allowable by here. */
723 /* But in case we do, just error out. */
724 av_log(avctx
, AV_LOG_ERROR
, "Unknown FLC format, my science cannot explain how this happened.\n");
729 static av_cold
int flic_decode_end(AVCodecContext
*avctx
)
731 FlicDecodeContext
*s
= avctx
->priv_data
;
733 if (s
->frame
.data
[0])
734 avctx
->release_buffer(avctx
, &s
->frame
);
739 AVCodec flic_decoder
= {
743 sizeof(FlicDecodeContext
),
753 .long_name
= "Autodesk Animator Flic video",