diff rtsp.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents d3aff2c607f9
children d18cc9a1fd02
line wrap: on
line diff
--- a/rtsp.c	Sun Jul 09 10:33:49 2006 +0000
+++ b/rtsp.c	Sun Jul 09 23:40:53 2006 +0000
@@ -1245,7 +1245,7 @@
     return 0;
 }
 
-AVInputFormat rtsp_demux = {
+AVInputFormat rtsp_demuxer = {
     "rtsp",
     "RTSP input format",
     sizeof(RTSPState),
@@ -1346,7 +1346,7 @@
 }
 
 
-static AVInputFormat sdp_demux = {
+static AVInputFormat sdp_demuxer = {
     "sdp",
     "SDP",
     sizeof(RTSPState),
@@ -1410,7 +1410,7 @@
         return 0;
 }
 
-AVInputFormat redir_demux = {
+AVInputFormat redir_demuxer = {
     "redir",
     "Redirector format",
     0,
@@ -1422,8 +1422,8 @@
 
 int rtsp_init(void)
 {
-    av_register_input_format(&rtsp_demux);
-    av_register_input_format(&redir_demux);
-    av_register_input_format(&sdp_demux);
+    av_register_input_format(&rtsp_demuxer);
+    av_register_input_format(&redir_demuxer);
+    av_register_input_format(&sdp_demuxer);
     return 0;
 }