diff rtp.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents 22a86dfd052d
children d18cc9a1fd02
line wrap: on
line diff
--- a/rtp.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/rtp.c	Sun Jul 09 23:40:53 2006 +0000
@@ -860,7 +860,7 @@
     return 0;
 }
 
-AVOutputFormat rtp_mux = {
+AVOutputFormat rtp_muxer = {
     "rtp",
     "RTP output format",
     NULL,
@@ -875,6 +875,6 @@
 
 int rtp_init(void)
 {
-    av_register_output_format(&rtp_mux);
+    av_register_output_format(&rtp_muxer);
     return 0;
 }