diff options
author | Alyssa Milburn <amilburn@zall.org> | 2020-01-05 19:41:14 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-02-15 10:55:33 +0100 |
commit | 732d77dc500e01fb8ca2e11bf0f9836e65a0f3b7 (patch) | |
tree | 3e84f1f1f78ea4daedec0fbc09648a93db58268d /libavcodec/avcodec.h | |
parent | 55755b4ab27a94bfa1d91e494441dc2168164d19 (diff) | |
download | ffmpeg-732d77dc500e01fb8ca2e11bf0f9836e65a0f3b7.tar.gz |
avcodec: add cdtoons decoder
This adds a decoder for Broderbund's sprite-based QuickTime CDToons
codec, based on the decoder I wrote for ScummVM.
Signed-off-by: Alyssa Milburn <amilburn@zall.org>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index dc5807324f..8cbcd3b1d0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -460,6 +460,7 @@ enum AVCodecID { AV_CODEC_ID_IMM5, AV_CODEC_ID_MVDV, AV_CODEC_ID_MVHA, + AV_CODEC_ID_CDTOONS, /* various PCM "codecs" */ AV_CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs |