diff au.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents e3a585883bbd
children d18cc9a1fd02
line wrap: on
line diff
--- a/au.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/au.c	Sun Jul 09 23:40:53 2006 +0000
@@ -178,7 +178,7 @@
     return 0;
 }
 
-static AVInputFormat au_iformat = {
+static AVInputFormat au_demuxer = {
     "au",
     "SUN AU Format",
     0,
@@ -190,7 +190,7 @@
 };
 
 #ifdef CONFIG_MUXERS
-static AVOutputFormat au_oformat = {
+static AVOutputFormat au_muxer = {
     "au",
     "SUN AU Format",
     "audio/basic",
@@ -206,9 +206,9 @@
 
 int au_init(void)
 {
-    av_register_input_format(&au_iformat);
+    av_register_input_format(&au_demuxer);
 #ifdef CONFIG_MUXERS
-    av_register_output_format(&au_oformat);
+    av_register_output_format(&au_muxer);
 #endif //CONFIG_MUXERS
     return 0;
 }