Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6e8c4e7c
Commit
6e8c4e7c
authored
Mar 04, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ephemeral default ports for RTP, instead of clashing with raw UDP.
Signed-off-by:
Rémi Denis-Courmont
<
rem@videolan.org
>
parent
8e19781e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
NEWS
NEWS
+2
-2
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+3
-3
No files found.
NEWS
View file @
6e8c4e7c
...
...
@@ -30,8 +30,8 @@ Important notes:
These new commands are also available in the telnet interface.
* The "rtp" access output module has been removed:
Please use the RTP stream output instead, e.g.:
Old: '#std{access=rtp,
dst=239.255.1.2
,sap}'
New: '#rtp{
dst=239.255.1.2
,sap}'
Old: '#std{access=rtp,
mux=ts,dst=239.255.1.2:5004
,sap}'
New: '#rtp{
mux=ts,dst=239.255.1.2,port=5004
,sap}'
* You now need to append --m3u-extvlcopt to your command line to enable
EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
of options is available to m3u playlists (CVE-2007-6683).
...
...
modules/stream_out/rtp.c
View file @
6e8c4e7c
...
...
@@ -173,11 +173,11 @@ vlc_module_begin();
add_string
(
SOUT_CFG_PREFIX
"proto"
,
"udp"
,
NULL
,
PROTO_TEXT
,
PROTO_LONGTEXT
,
VLC_FALSE
);
change_string_list
(
ppsz_protos
,
ppsz_protocols
,
NULL
);
add_integer
(
SOUT_CFG_PREFIX
"port"
,
123
4
,
NULL
,
PORT_TEXT
,
add_integer
(
SOUT_CFG_PREFIX
"port"
,
5000
4
,
NULL
,
PORT_TEXT
,
PORT_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"port-audio"
,
123
0
,
NULL
,
PORT_AUDIO_TEXT
,
add_integer
(
SOUT_CFG_PREFIX
"port-audio"
,
5000
0
,
NULL
,
PORT_AUDIO_TEXT
,
PORT_AUDIO_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"port-video"
,
123
2
,
NULL
,
PORT_VIDEO_TEXT
,
add_integer
(
SOUT_CFG_PREFIX
"port-video"
,
5000
2
,
NULL
,
PORT_VIDEO_TEXT
,
PORT_VIDEO_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"ttl"
,
0
,
NULL
,
TTL_TEXT
,
...
...
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