diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-30 13:48:48 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-30 13:48:48 +0000 |
commit | 84ed36da85b65b3b135f4dc06589454190fd4572 (patch) | |
tree | 9a2dff40ca468d150e4dcc115aa6733232183198 /libavcodec/avcodec.h | |
parent | 9c5d7c568b882f78f1b5c84a3b8e7c44a527054d (diff) | |
download | ffmpeg-84ed36da85b65b3b135f4dc06589454190fd4572.tar.gz |
IMC decoder
Originally committed as revision 6839 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2ad9917e94..5fa6d8a93d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -37,8 +37,8 @@ extern "C" { #define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_TOSTRING(s) #s -#define LIBAVCODEC_VERSION_INT ((51<<16)+(22<<8)+0) -#define LIBAVCODEC_VERSION 51.22.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(23<<8)+0) +#define LIBAVCODEC_VERSION 51.23.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -233,6 +233,7 @@ enum CodecID { CODEC_ID_QCELP, CODEC_ID_WAVPACK, CODEC_ID_DSICINAUDIO, + CODEC_ID_IMC, /* subtitle codecs */ CODEC_ID_DVD_SUBTITLE= 0x17000, @@ -2304,6 +2305,7 @@ extern AVCodec dsicinvideo_decoder; extern AVCodec dsicinaudio_decoder; extern AVCodec tiertexseqvideo_decoder; extern AVCodec tiff_decoder; +extern AVCodec imc_decoder; /* pcm codecs */ #define PCM_CODEC(id, name) \ |