From 12b64a225296e1c356a2bd69909abc541deb714c Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Sun, 2 Feb 2003 19:16:51 +0000 Subject: added animated GIF decoder (pts and various disposal handling are missing) Originally committed as revision 1533 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/gif.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat/gif.c') diff --git a/libavformat/gif.c b/libavformat/gif.c index 6becf52a49..5791502fda 100644 --- a/libavformat/gif.c +++ b/libavformat/gif.c @@ -367,9 +367,11 @@ static AVOutputFormat gif_oformat = { gif_write_packet, gif_write_trailer, }; +extern AVInputFormat gif_iformat; int gif_init(void) { av_register_output_format(&gif_oformat); + av_register_input_format(&gif_iformat); return 0; } -- cgit v1.2.3