diff gif.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents e89500dd9064
children d18cc9a1fd02
line wrap: on
line diff
--- a/gif.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/gif.c	Sun Jul 09 23:40:53 2006 +0000
@@ -414,7 +414,7 @@
     return 0;
 }
 
-static AVOutputFormat gif_oformat = {
+static AVOutputFormat gif_muxer = {
     "gif",
     "GIF Animation",
     "image/gif",
@@ -427,11 +427,11 @@
     gif_write_trailer,
 };
 
-extern AVInputFormat gif_iformat;
+extern AVInputFormat gif_demuxer;
 
 int gif_init(void)
 {
-    av_register_output_format(&gif_oformat);
-    av_register_input_format(&gif_iformat);
+    av_register_output_format(&gif_muxer);
+    av_register_input_format(&gif_demuxer);
     return 0;
 }