summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-02-05 05:22:44 +0000
committerMike Melanson <mike@multimedia.cx>2004-02-05 05:22:44 +0000
commit070ed1bc43405053f38ffdcbd3d33ee4f587b399 (patch)
treecafc418cdbddc64c60950ccff24f336210eaf3b6 /libavformat
parenta412a03beeb8309baf816c2ec14db85650028e47 (diff)
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 Originally committed as revision 2748 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index b684e68c52..707a49c489 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -105,6 +105,7 @@ static const CodecTag mov_video_tags[] = {
{ 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 },
};