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
00fa05ae
Commit
00fa05ae
authored
Oct 25, 2005
by
Marian Durkovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use RTP for wizard, since it's capable of packet reordering.
parent
7c4d12ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
modules/gui/wxwidgets/streamdata.cpp
modules/gui/wxwidgets/streamdata.cpp
+3
-3
modules/gui/wxwidgets/wizard.cpp
modules/gui/wxwidgets/wizard.cpp
+3
-3
No files found.
modules/gui/wxwidgets/streamdata.cpp
View file @
00fa05ae
...
...
@@ -119,10 +119,10 @@ const struct codec acodecs_array[] =
const
struct
method
methods_array
[]
=
{
{
"
udp:"
,
N_
(
"UD
P Unicast"
),
N_
(
"Use this to stream to a single computer."
),
{
"
rtp"
,
N_
(
"RT
P Unicast"
),
N_
(
"Use this to 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
}
},
{
"
udp:"
,
N_
(
"UD
P Multicast"
),
{
"
rtp"
,
N_
(
"RT
P Multicast"
),
N_
(
"Use this to 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 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 a private use, enter an address beginning with 239.255."
),
{
MUX_TS
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
}
},
{
"http
://
"
,
"HTTP"
,
{
"http"
,
"HTTP"
,
N_
(
"Use this to stream to several computers. This method is "
"less efficient, as the server needs to send the "
"stream several times."
),
...
...
modules/gui/wxwidgets/wizard.cpp
View file @
00fa05ae
...
...
@@ -115,7 +115,7 @@ END_EVENT_TABLE()
#define PARTIAL _("Use this to read only a part of the stream. " \
"You must be able to control the incoming stream " \
"(for example, a file or a disc, but not a
n
UDP " \
"(for example, a file or a disc, but not a
RTP/
UDP " \
"network stream.)\n" \
"Enter the starting and ending times (in seconds).")
...
...
@@ -168,7 +168,7 @@ END_EVENT_TABLE()
"If you don't know what it means, or if you want to stream on " \
"your local network only, leave this setting to 1." )
#define SAP _("When streaming using
UD
P, you can announce your streams " \
#define SAP _("When streaming using
RT
P, you can announce your streams " \
"using the SAP/SDP announcing protocol. This way, the clients " \
"won't have to type in the multicast address, it will appear " \
"in their playlist if they enable the SAP extra interface.\n" \
...
...
@@ -1177,7 +1177,7 @@ void wizEncapPage::OnWizardPageChanging(wxWizardEvent& event)
if
(
p_parent
->
GetAction
()
==
ACTION_STREAM
)
{
if
(
strstr
(
p_parent
->
method
,
"
ud
p"
))
if
(
strstr
(
p_parent
->
method
,
"
rt
p"
))
{
((
wizStreamingExtraPage
*
)
GetNext
())
->
sap_checkbox
->
Enable
();
((
wizStreamingExtraPage
*
)
GetNext
())
->
sap_text
->
Enable
(
false
);
...
...
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