[vlc-devel] commit: rtmp: fixed description formatting and made default values more logical. ( Chris White )
git version control
git at videolan.org
Wed Jul 15 22:17:55 CEST 2009
vlc | branch: master | Chris White <chris.white at pulseforce.com> | Wed Jul 15 21:12:06 2009 +0200| [f9ca202868f039c54b55294436a299006e74ab5c] | committer: Rémi Duraffort
rtmp: fixed description formatting and made default values more logical.
Signed-off-by: Rémi Duraffort <ivoire at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f9ca202868f039c54b55294436a299006e74ab5c
---
modules/access/rtmp/access.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/modules/access/rtmp/access.c b/modules/access/rtmp/access.c
index e5b6c05..c9a076b 100644
--- a/modules/access/rtmp/access.c
+++ b/modules/access/rtmp/access.c
@@ -46,13 +46,13 @@
"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 )
More information about the vlc-devel
mailing list