Commit 70c449d6 authored by bellard's avatar bellard

added GIF image format (both read and write)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1541 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 796d2e17
......@@ -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);
......
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment