changeset 52:2a60f406fccc libavformat

added GIF image format (both read and write)
author bellard
date Mon, 03 Feb 2003 22:53:10 +0000
parents 7c5d91c4ca14
children fb671d87824e
files allformats.c avformat.h
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/allformats.c	Mon Feb 03 22:52:38 2003 +0000
+++ b/allformats.c	Mon Feb 03 22:53:10 2003 +0000
@@ -77,6 +77,7 @@
     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);
--- a/avformat.h	Mon Feb 03 22:52:38 2003 +0000
+++ b/avformat.h	Mon Feb 03 22:53:10 2003 +0000
@@ -237,6 +237,7 @@
 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 */