diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-02-03 22:53:10 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-02-03 22:53:10 +0000 |
commit | cdc90af00835297b8d5f3f06c47cf2c53267c3a3 (patch) | |
tree | 126b4212e16325dcf5bae0d58c54bb2b2045c7db | |
parent | ba19f84810d3393b4a00aacd3b61a2803d108849 (diff) | |
download | ffmpeg-cdc90af00835297b8d5f3f06c47cf2c53267c3a3.tar.gz |
added GIF image format (both read and write)
Originally committed as revision 1541 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/allformats.c | 1 | ||||
-rw-r--r-- | libavformat/avformat.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index ce1a87ceeb..6303dc2b18 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -77,6 +77,7 @@ void av_register_all(void) av_register_image_format(&yuv_image_format); av_register_image_format(&png_image_format); av_register_image_format(&jpeg_image_format); + av_register_image_format(&gif_image_format); /* file protocols */ register_protocol(&file_protocol); diff --git a/libavformat/avformat.h b/libavformat/avformat.h index e4b57003ac..a6c2f25835 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -237,6 +237,7 @@ extern AVImageFormat pgmyuv_image_format; extern AVImageFormat yuv_image_format; extern AVImageFormat png_image_format; extern AVImageFormat jpeg_image_format; +extern AVImageFormat gif_image_format; /* XXX: use automatic init with either ELF sections or C file parser */ /* modules */ |