]> git.sesse.net Git - vlc/commitdiff
rtmp: fixed description formatting and made default values more logical.
authorChris White <chris.white@pulseforce.com>
Wed, 15 Jul 2009 19:12:06 +0000 (21:12 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Wed, 15 Jul 2009 20:10:31 +0000 (22:10 +0200)
Signed-off-by: Rémi Duraffort <ivoire@videolan.org>
modules/access/rtmp/access.c

index e5b6c050283fa89d1ba9d14e15fdf4437907de43..c9a076b5fc0b132ae58f13389fb73887f8f50517 100644 (file)
     "value should be set in milliseconds." )
 
 #define SWFURL_TEXT N_("Default SWF Referrer URL")
-#define SWFURL_LONGTEXT N_("The SFW URL to use as referrer when connecting to"\
-                           "the server. This is the SWF file that contained"  \
+#define SWFURL_LONGTEXT N_("The SFW URL to use as referrer when connecting to "\
+                           "the server. This is the SWF file that contained "  \
                            "the stream.")
 
-#define PAGEURL_TEXT N_("Page Referrer URL")
-#define PAGEURL_LONGTEXT N_("Page URL to use as referrer when connecting to"  \
-                            "the server. This is the page housing the SWF"    \
+#define PAGEURL_TEXT N_("Default Page Referrer URL")
+#define PAGEURL_LONGTEXT N_("The Page URL to use as referrer when connecting to "  \
+                            "the server. This is the page housing the SWF "    \
                             "file.")
 
 static int  Open ( vlc_object_t * );
@@ -66,9 +66,9 @@ vlc_module_begin ()
 
     add_integer( "rtmp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
                  CACHING_LONGTEXT, true )
-    add_string( "rtmp-swfurl", "file:///mac.flv", NULL, SWFURL_TEXT,
+    add_string( "rtmp-swfurl", "file:///player.swf", NULL, SWFURL_TEXT,
                 SWFURL_LONGTEXT, true )
-    add_string( "rtmp-pageurl", "file:///mac.html", NULL, PAGEURL_TEXT,
+    add_string( "rtmp-pageurl", "file:///player.htm", NULL, PAGEURL_TEXT,
                 PAGEURL_LONGTEXT, true )
 
     set_capability( "access", 0 )