diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2012-07-27 19:08:23 -0400 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2012-08-01 22:02:19 -0400 |
commit | 91c86d3cf8064b3ff28c66a48d3e0c7187df1ab8 (patch) | |
tree | fa46df22ba8b6eb647b8a29fa255549666807af0 /libavcodec/avcodec.h | |
parent | b9df3f4f6ce06257f439174c37936599008d426a (diff) | |
download | ffmpeg-91c86d3cf8064b3ff28c66a48d3e0c7187df1ab8.tar.gz |
Canopus Lossless decoder
At the moment it only does BGR24, but I plan to add the rest after.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
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 fb16c8380d..7a7400d6c6 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -274,6 +274,7 @@ enum CodecID { CODEC_ID_YUV4 = MKBETAG('Y','U','V','4'), CODEC_ID_SANM = MKBETAG('S','A','N','M'), CODEC_ID_PAF_VIDEO = MKBETAG('P','A','F','V'), + CODEC_ID_CLLC = MKBETAG('C','L','L','C'), /* various PCM "codecs" */ CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs |