diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-02-05 05:22:44 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-02-05 05:22:44 +0000 |
commit | 070ed1bc43405053f38ffdcbd3d33ee4f587b399 (patch) | |
tree | cafc418cdbddc64c60950ccff24f336210eaf3b6 /libavcodec/avcodec.h | |
parent | a412a03beeb8309baf816c2ec14db85650028e47 (diff) | |
download | ffmpeg-070ed1bc43405053f38ffdcbd3d33ee4f587b399.tar.gz |
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 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 9b0e1a04c8..342065a221 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -93,6 +93,7 @@ enum CodecID { CODEC_ID_VMDAUDIO, CODEC_ID_MSZH, CODEC_ID_ZLIB, + CODEC_ID_QTRLE, /* various pcm "codecs" */ CODEC_ID_PCM_S16LE, @@ -1700,6 +1701,7 @@ extern AVCodec ra_288_decoder; extern AVCodec roq_dpcm_decoder; extern AVCodec interplay_dpcm_decoder; extern AVCodec xan_dpcm_decoder; +extern AVCodec qtrle_decoder; /* pcm codecs */ #define PCM_CODEC(id, name) \ |