diff yuv4mpeg.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents 6992dd78ff68
children d18cc9a1fd02
line wrap: on
line diff
--- a/yuv4mpeg.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/yuv4mpeg.c	Sun Jul 09 23:40:53 2006 +0000
@@ -171,7 +171,7 @@
     return 0;
 }
 
-AVOutputFormat yuv4mpegpipe_oformat = {
+AVOutputFormat yuv4mpegpipe_muxer = {
     "yuv4mpegpipe",
     "YUV4MPEG pipe format",
     "",
@@ -393,7 +393,7 @@
         return 0;
 }
 
-AVInputFormat yuv4mpegpipe_iformat = {
+AVInputFormat yuv4mpegpipe_demuxer = {
     "yuv4mpegpipe",
     "YUV4MPEG pipe format",
     sizeof(struct frame_attributes),
@@ -406,9 +406,9 @@
 
 int yuv4mpeg_init(void)
 {
-    av_register_input_format(&yuv4mpegpipe_iformat);
+    av_register_input_format(&yuv4mpegpipe_demuxer);
 #ifdef CONFIG_MUXERS
-    av_register_output_format(&yuv4mpegpipe_oformat);
+    av_register_output_format(&yuv4mpegpipe_muxer);
 #endif //CONFIG_MUXERS
     return 0;
 }