diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-10-22 15:05:03 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-10-22 15:05:03 +0000 |
commit | 06d392a7cc93dcab84c225d7e8cb7030d537581f (patch) | |
tree | cf0e34b35809d71976cd3036ffab3b8a3b233082 /libavcodec/avcodec.h | |
parent | b92f5a6b31c8c08b08f84dccd89c1cfa98695444 (diff) | |
download | ffmpeg-06d392a7cc93dcab84c225d7e8cb7030d537581f.tar.gz |
change gif demuxer to gif decoder
Originally committed as revision 6760 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 724f4e743f..dafedbaf1b 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)+(20<<8)+0) -#define LIBAVCODEC_VERSION 51.20.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(21<<8)+0) +#define LIBAVCODEC_VERSION 51.21.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -148,6 +148,7 @@ enum CodecID { CODEC_ID_DSICINVIDEO, CODEC_ID_TIERTEXSEQVIDEO, CODEC_ID_TIFF, + CODEC_ID_GIF, /* various pcm "codecs" */ CODEC_ID_PCM_S16LE= 0x10000, @@ -2177,6 +2178,7 @@ extern AVCodec sonic_ls_encoder; extern AVCodec svq1_encoder; extern AVCodec x264_encoder; +extern AVCodec gif_decoder; extern AVCodec h263_decoder; extern AVCodec h261_decoder; extern AVCodec mpeg4_decoder; |