diff ogg2.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents 19ceddeafe2e
children d18cc9a1fd02
line wrap: on
line diff
--- a/ogg2.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/ogg2.c	Sun Jul 09 23:40:53 2006 +0000
@@ -65,7 +65,7 @@
 }
 
 
-static AVOutputFormat ogg_oformat = {
+static AVOutputFormat ogg_muxer = {
     "ogg",
     "Ogg Vorbis",
     "audio/x-vorbis",
@@ -656,7 +656,7 @@
         return 0;
 }
 
-static AVInputFormat ogg_iformat = {
+static AVInputFormat ogg_demuxer = {
     "ogg",
     "Ogg",
     sizeof (ogg_t),
@@ -673,8 +673,8 @@
 ogg_init (void)
 {
 #if 0 // CONFIG_MUXERS
-    av_register_output_format (&ogg_oformat);
+    av_register_output_format (&ogg_muxer);
 #endif
-    av_register_input_format (&ogg_iformat);
+    av_register_input_format (&ogg_demuxer);
     return 0;
 }