changeset 358:d18a2b1fc182 libavformat

initial commit for Quicktime Animation (RLE) video decoder; bit depths 32, 24, and 16 are working; 8bpp is partially working; 4, 2, and 1 bpp are not supported yet
author melanson
date Thu, 05 Feb 2004 05:22:44 +0000
parents f4f573c7dc56
children e9232aa21976
files mov.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mov.c	Sun Feb 01 13:06:46 2004 +0000
+++ b/mov.c	Thu Feb 05 05:22:44 2004 +0000
@@ -105,6 +105,7 @@
     { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') }, /* Cinepak */
     { CODEC_ID_8BPS, MKTAG('8', 'B', 'P', 'S') }, /* Planar RGB (8BPS) */
     { CODEC_ID_SMC, MKTAG('s', 'm', 'c', ' ') }, /* Apple Graphics (SMC) */
+    { CODEC_ID_QTRLE, MKTAG('r', 'l', 'e', ' ') }, /* Apple Animation (RLE) */
     { CODEC_ID_NONE, 0 },
 };