diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-10-11 16:57:00 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-10-11 16:57:00 +0000 |
commit | 72450e50a58fdcc088708cf01c38de5dd5d2eb20 (patch) | |
tree | 7b65981c1a3b5927e06427597f245ed2d797234e /libavcodec/avcodec.h | |
parent | 2b5269b51cfdc35715202bff33d59f8a8d02df03 (diff) | |
download | ffmpeg-72450e50a58fdcc088708cf01c38de5dd5d2eb20.tar.gz |
support for Delphine Software .cin files demuxing / audio and video decoding, by Gregory Montoir %cyx A users P sourceforge P net%
Originally committed as revision 6659 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 933c461afd..61924bce6f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -145,6 +145,7 @@ enum CodecID { CODEC_ID_VP6, CODEC_ID_VP6F, CODEC_ID_TARGA, + CODEC_ID_DSICINVIDEO, /* various pcm "codecs" */ CODEC_ID_PCM_S16LE= 0x10000, @@ -228,6 +229,7 @@ enum CodecID { CODEC_ID_SMACKAUDIO, CODEC_ID_QCELP, CODEC_ID_WAVPACK, + CODEC_ID_DSICINAUDIO, /* subtitle codecs */ CODEC_ID_DVD_SUBTITLE= 0x17000, @@ -2294,6 +2296,8 @@ extern AVCodec cavs_decoder; extern AVCodec vmnc_decoder; extern AVCodec wavpack_decoder; extern AVCodec targa_decoder; +extern AVCodec dsicinvideo_decoder; +extern AVCodec dsicinaudio_decoder; /* pcm codecs */ #define PCM_CODEC(id, name) \ |