diff gif.c @ 46:890e9121a54d libavformat

added animated GIF decoder (pts and various disposal handling are missing)
author bellard
date Sun, 02 Feb 2003 19:16:51 +0000
parents 05318cf2e886
children 7c5d91c4ca14
line wrap: on
line diff
--- a/gif.c	Sun Feb 02 15:54:11 2003 +0000
+++ b/gif.c	Sun Feb 02 19:16:51 2003 +0000
@@ -367,9 +367,11 @@
     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;
 }