[SCM] libav/experimental: added GIF image format (both read and write)
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:35:13 UTC 2013
The following commit has been merged in the experimental branch:
commit cdc90af00835297b8d5f3f06c47cf2c53267c3a3
Author: Fabrice Bellard <fabrice at bellard.org>
Date: Mon Feb 3 22:53:10 2003 +0000
added GIF image format (both read and write)
Originally committed as revision 1541 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index ce1a87c..6303dc2 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 e4b5700..a6c2f25 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 */
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list