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
f34e1895
Commit
f34e1895
authored
Nov 30, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: try to improve sout protocol names
parent
260319c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/dialogs/sout.cpp
+10
-10
No files found.
modules/gui/qt4/dialogs/sout.cpp
View file @
f34e1895
...
...
@@ -73,9 +73,9 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, const QString&
ui
.
destBox
->
addItem
(
qtr
(
"File"
)
);
ui
.
destBox
->
addItem
(
"HTTP"
);
ui
.
destBox
->
addItem
(
"M
MS
"
);
ui
.
destBox
->
addItem
(
"
UDP
"
);
ui
.
destBox
->
addItem
(
"
RTP
"
);
ui
.
destBox
->
addItem
(
"M
S-WMSP (MMSH)
"
);
ui
.
destBox
->
addItem
(
"
RTP / Transport Stream
"
);
ui
.
destBox
->
addItem
(
"
UDP (legacy)
"
);
ui
.
destBox
->
addItem
(
"IceCast"
);
BUTTONACT
(
ui
.
addButton
,
addDest
()
);
...
...
@@ -160,22 +160,22 @@ void SoutDialog::addDest( )
case
2
:
{
MMSHDestBox
*
mdb
=
new
MMSHDestBox
(
this
);
index
=
ui
.
destTab
->
addTab
(
mdb
,
"
MMSH
"
);
index
=
ui
.
destTab
->
addTab
(
mdb
,
"
WMSP
"
);
CONNECT
(
mdb
,
mrlUpdated
(),
this
,
updateMRL
()
);
}
break
;
case
3
:
{
UDPDestBox
*
udb
=
new
UD
PDestBox
(
this
);
index
=
ui
.
destTab
->
addTab
(
udb
,
"UDP
"
);
CONNECT
(
u
db
,
mrlUpdated
(),
this
,
updateMRL
()
);
RTPDestBox
*
rdb
=
new
RT
PDestBox
(
this
);
index
=
ui
.
destTab
->
addTab
(
rdb
,
"RTP/TS
"
);
CONNECT
(
r
db
,
mrlUpdated
(),
this
,
updateMRL
()
);
}
break
;
case
4
:
{
RTPDestBox
*
rdb
=
new
RT
PDestBox
(
this
);
index
=
ui
.
destTab
->
addTab
(
rdb
,
"RT
P"
);
CONNECT
(
r
db
,
mrlUpdated
(),
this
,
updateMRL
()
);
UDPDestBox
*
udb
=
new
UD
PDestBox
(
this
);
index
=
ui
.
destTab
->
addTab
(
udb
,
"UD
P"
);
CONNECT
(
u
db
,
mrlUpdated
(),
this
,
updateMRL
()
);
}
break
;
case
5
:
...
...
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