Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
f9ca2028
Commit
f9ca2028
authored
Jul 15, 2009
by
Chris White
Committed by
Rémi Duraffort
Jul 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtmp: fixed description formatting and made default values more logical.
Signed-off-by:
Rémi Duraffort
<
ivoire@videolan.org
>
parent
564cbe7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
modules/access/rtmp/access.c
modules/access/rtmp/access.c
+7
-7
No files found.
modules/access/rtmp/access.c
View file @
f9ca2028
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment