# HG changeset patch # User melanson # Date 1075958564 0 # Node ID d18a2b1fc18243b62d7286db2a6ed1959a50aefa # Parent f4f573c7dc565280da0b31260c200efb040f533f 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 diff -r f4f573c7dc56 -r d18a2b1fc182 mov.c --- 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 }, };