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/allcodecs.c | |
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/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 39b670da10..cc0644e6df 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -68,6 +68,9 @@ void avcodec_register_all(void) #ifdef CONFIG_FLAC_ENCODER register_avcodec(&flac_encoder); #endif +#ifdef CONFIG_GIF_ENCODER + register_avcodec(&gif_encoder); +#endif #ifdef CONFIG_XVID #ifdef CONFIG_XVID_ENCODER register_avcodec(&xvid_encoder); |