]> git.sesse.net Git - vlc/commitdiff
* reverted [12957]. UDP-support is a must. don't remove it from the interface by...
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 28 Oct 2005 19:42:50 +0000 (19:42 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 28 Oct 2005 19:42:50 +0000 (19:42 +0000)
modules/gui/wxwidgets/streamdata.cpp
modules/gui/wxwidgets/wizard.cpp

index 9a061d6a81851d4c4aee37e47a4a7fecc519d4c5..98374388121ee3514c3dd5a9e3e8c6d023f69c01 100644 (file)
@@ -119,10 +119,10 @@ const struct codec acodecs_array[] =
 
 const struct method methods_array[] =
 {
-    {"rtp",N_("RTP Unicast"), N_("Use this to stream to a single computer."),
+    {"udp:",N_("UDP Unicast"), N_("Use this to stream to a single computer."),
      N_("Enter the address of the computer to stream to."),
      { MUX_TS, -1,-1,-1,-1,-1,-1,-1,-1 } },
-    {"rtp",N_("RTP Multicast"),
+    {"udp:",N_("UDP Multicast"),
      N_("Use this to stream to a dynamic group of computers on a "
      "multicast-enabled network. This is the most efficient method "
      "to stream to several computers, but it does not work over Internet."),
@@ -130,7 +130,7 @@ const struct method methods_array[] =
      "This must be an IP address between 224.0.0.0 an 239.255.255.255. "
      "For a private use, enter an address beginning with 239.255."),
      { MUX_TS, -1,-1,-1,-1,-1,-1,-1,-1 } },
-    {"http","HTTP",
+    {"http://","HTTP",
      N_("Use this to stream to several computers. This method is "
      "less efficient, as the server needs to send the "
      "stream several times."),
index 77590c8ca9a8456b5ca2c1c9731922d3d879bc51..5f228633a0694015e8f170ad362ce4047145cad0 100644 (file)
@@ -168,7 +168,7 @@ END_EVENT_TABLE()
               "If you don't know what it means, or if you want to stream on " \
               "your local network only, leave this setting to 1." )
 
-#define SAP _("When streaming using RTP, you can announce your streams " \
+#define SAP _("When streaming using UDP, you can announce your streams " \
               "using the SAP/SDP announcing protocol. This way, the clients " \
               "won't have to type in the multicast address, it will appear " \
               "in their playlist if they enable the SAP extra interface.\n" \
@@ -1177,7 +1177,7 @@ void wizEncapPage::OnWizardPageChanging(wxWizardEvent& event)
 
     if( p_parent->GetAction() == ACTION_STREAM )
     {
-        if( strstr( p_parent->method, "rtp" ))
+        if( strstr( p_parent->method, "udp" ))
         {
             ((wizStreamingExtraPage *)GetNext())->sap_checkbox->Enable();
             ((wizStreamingExtraPage *)GetNext())->sap_text->Enable(false);