diff rm.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents 8f78a071554d
children d18cc9a1fd02
line wrap: on
line diff
--- a/rm.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/rm.c	Sun Jul 09 23:40:53 2006 +0000
@@ -1122,7 +1122,7 @@
     return dts;
 }
 
-static AVInputFormat rm_iformat = {
+static AVInputFormat rm_demuxer = {
     "rm",
     "rm format",
     sizeof(RMContext),
@@ -1135,7 +1135,7 @@
 };
 
 #ifdef CONFIG_MUXERS
-static AVOutputFormat rm_oformat = {
+static AVOutputFormat rm_muxer = {
     "rm",
     "rm format",
     "application/vnd.rn-realmedia",
@@ -1151,9 +1151,9 @@
 
 int rm_init(void)
 {
-    av_register_input_format(&rm_iformat);
+    av_register_input_format(&rm_demuxer);
 #ifdef CONFIG_MUXERS
-    av_register_output_format(&rm_oformat);
+    av_register_output_format(&rm_muxer);
 #endif //CONFIG_MUXERS
     return 0;
 }