Mercurial > libavformat.hg
diff mov.c @ 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 | e73e7b5f2599 |
children | 845f9de2c883 |
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 }, };