diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-02 23:13:34 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-02 23:13:34 +0000 |
commit | 93481fe5fe092d2646a2ae6cccc4ffaaec5b0297 (patch) | |
tree | b84c7fe66c648b5246b19fd25deaa92c307aeecc /libavcodec/avcodec.h | |
parent | 1984f5cdc97a256014770ae2de45ea47476b894d (diff) | |
download | ffmpeg-93481fe5fe092d2646a2ae6cccc4ffaaec5b0297.tar.gz |
change gif muxer to simple gif encoder
Originally committed as revision 6874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5fa6d8a93d..7909946753 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)+(23<<8)+0) -#define LIBAVCODEC_VERSION 51.23.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(24<<8)+0) +#define LIBAVCODEC_VERSION 51.24.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -2138,6 +2138,7 @@ extern AVCodec mp3lame_encoder; extern AVCodec oggvorbis_encoder; extern AVCodec faac_encoder; extern AVCodec flac_encoder; +extern AVCodec gif_encoder; extern AVCodec xvid_encoder; extern AVCodec mpeg1video_encoder; extern AVCodec mpeg2video_encoder; |