Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
8a67cac4
Commit
8a67cac4
authored
Sep 01, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use RTP sout for RTP
parent
7440827a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
modules/gui/wxwidgets/dialogs/streamout.cpp
modules/gui/wxwidgets/dialogs/streamout.cpp
+1
-1
modules/gui/wxwidgets/dialogs/wizard.cpp
modules/gui/wxwidgets/dialogs/wizard.cpp
+2
-2
modules/gui/wxwidgets/streamdata.cpp
modules/gui/wxwidgets/streamdata.cpp
+3
-3
No files found.
modules/gui/wxwidgets/dialogs/streamout.cpp
View file @
8a67cac4
...
...
@@ -357,7 +357,7 @@ void SoutDialog::UpdateMRL()
if
(
access_checkboxes
[
RTP_ACCESS_OUT
]
->
IsChecked
()
)
{
if
(
!
dup_opts
.
IsEmpty
()
)
dup_opts
+=
wxT
(
","
);
dup_opts
+=
wxT
(
"dst=
std{access=rtp,
mux="
);
dup_opts
+=
wxT
(
"dst=
rtp{
mux="
);
dup_opts
+=
encapsulation
+
wxT
(
",dst="
);
wxString
rtp_addr
=
net_addrs
[
RTP_ACCESS_OUT
]
->
GetLineText
(
0
);
...
...
modules/gui/wxwidgets/dialogs/wizard.cpp
View file @
8a67cac4
...
...
@@ -1611,8 +1611,8 @@ void WizardDialog::Run()
/* Add brackets automatically for IPv6 if they are missing */
v6
=
(
address
[
0
]
!=
'['
)
&&
(
strchr
(
address
,
':'
)
!=
NULL
);
asprintf
(
&
psz_opt
,
":sout=#
standard{mux=%s,dst=%s%s%s,access=%s%s}"
,
mux
,
v6
?
"["
:
""
,
address
,
v6
?
"]"
:
""
,
method
,
":sout=#
%smux=%s,dst=%s%s%s%s}"
,
method
,
mux
,
v6
?
"["
:
""
,
address
,
v6
?
"]"
:
""
,
psz_sap_option
?:
""
);
if
(
psz_sap_option
)
free
(
psz_sap_option
);
}
...
...
modules/gui/wxwidgets/streamdata.cpp
View file @
8a67cac4
...
...
@@ -119,10 +119,10 @@ const struct codec acodecs_array[] =
const
struct
method
methods_array
[]
=
{
{
"rtp"
,
N_
(
"RTP Unicast"
),
N_
(
"Stream to a single computer."
),
{
"rtp
{
"
,
N_
(
"RTP Unicast"
),
N_
(
"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"
),
{
"rtp
{
"
,
N_
(
"RTP Multicast"
),
N_
(
"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 the 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 private use, enter an address beginning with 239.255."
),
{
MUX_TS
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
}
},
{
"
http
"
,
"HTTP"
,
{
"
std{access=http,
"
,
"HTTP"
,
N_
(
"Stream to several computers. This method is "
"less efficient, as the server needs to send the "
"stream several times."
),
...
...
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