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
5027135e
Commit
5027135e
authored
Nov 26, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: fix default port numbers in streaming wizard
parent
a68b3396
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/qt4/components/sout/sout_widgets.cpp
modules/gui/qt4/components/sout/sout_widgets.cpp
+3
-3
No files found.
modules/gui/qt4/components/sout/sout_widgets.cpp
View file @
5027135e
...
...
@@ -196,7 +196,7 @@ MMSHDestBox::MMSHDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
MMSHPort
->
setAlignment
(
Qt
::
AlignRight
|
Qt
::
AlignTrailing
|
Qt
::
AlignVCenter
);
MMSHPort
->
setMinimum
(
1
);
MMSHPort
->
setMaximum
(
65535
);
MMSHPort
->
setValue
(
1234
);
MMSHPort
->
setValue
(
8080
);
layout
->
addWidget
(
MMSHEdit
,
1
,
1
,
1
,
1
);
layout
->
addWidget
(
MMSHPort
,
2
,
1
,
1
,
1
);
...
...
@@ -286,7 +286,7 @@ RTPDestBox::RTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
RTPPort
->
setAlignment
(
Qt
::
AlignRight
|
Qt
::
AlignTrailing
|
Qt
::
AlignVCenter
);
RTPPort
->
setMinimum
(
1
);
RTPPort
->
setMaximum
(
65535
);
RTPPort
->
setValue
(
123
4
);
RTPPort
->
setValue
(
500
4
);
RTPPortAudio
=
new
QSpinBox
(
this
);
RTPPortAudio
->
setMaximumSize
(
QSize
(
90
,
16777215
));
...
...
@@ -362,7 +362,7 @@ ICEDestBox::ICEDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
ICEPort
->
setAlignment
(
Qt
::
AlignRight
|
Qt
::
AlignTrailing
|
Qt
::
AlignVCenter
);
ICEPort
->
setMinimum
(
1
);
ICEPort
->
setMaximum
(
65535
);
ICEPort
->
setValue
(
1234
);
ICEPort
->
setValue
(
8000
);
layout
->
addWidget
(
ICEEdit
,
1
,
1
,
1
,
1
);
layout
->
addWidget
(
ICEPort
,
2
,
1
,
1
,
1
);
...
...
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