Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
608c0306
Commit
608c0306
authored
Sep 22, 2009
by
Francois Cartegnie
Committed by
Rémi Denis-Courmont
Sep 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: hide live555 module options when disabled
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
7fcd1c91
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+10
-1
modules/gui/qt4/ui/sprefs_input.ui
modules/gui/qt4/ui/sprefs_input.ui
+5
-5
No files found.
modules/gui/qt4/components/simple_preferences.cpp
View file @
608c0306
...
...
@@ -412,7 +412,16 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
CONFIG_GENERIC_NO_BOOL
(
"ffmpeg-pp-q"
,
Integer
,
ui
.
ppLabel
,
PostProcLevel
);
CONFIG_GENERIC
(
"avi-index"
,
IntegerList
,
ui
.
aviLabel
,
AviRepair
);
CONFIG_GENERIC
(
"rtsp-tcp"
,
Bool
,
NULL
,
RTSP_TCPBox
);
/* live555 module prefs */
CONFIG_GENERIC
(
"rtsp-tcp"
,
Bool
,
NULL
,
live555TransportRTSP_TCPRadio
);
if
(
!
module_exists
(
"live555"
)
)
{
ui
.
live555TransportRTSP_TCPRadio
->
hide
();
ui
.
live555TransportHTTPRadio
->
hide
();
ui
.
live555TransportLabel
->
hide
();
}
#ifdef WIN32
CONFIG_GENERIC
(
"prefer-system-codecs"
,
Bool
,
NULL
,
systemCodecBox
);
#else
...
...
modules/gui/qt4/ui/sprefs_input.ui
View file @
608c0306
...
...
@@ -157,7 +157,7 @@
<item
row=
"2"
column=
"1"
>
<layout
class=
"QHBoxLayout"
name=
"horizontalLayout"
>
<item>
<widget
class=
"QRadioButton"
name=
"
HTTP
"
>
<widget
class=
"QRadioButton"
name=
"
live555TransportHTTPRadio
"
>
<property
name=
"text"
>
<string>
HTTP (default)
</string>
</property>
...
...
@@ -170,7 +170,7 @@
</widget>
</item>
<item>
<widget
class=
"QRadioButton"
name=
"
RTSP_TCPBox
"
>
<widget
class=
"QRadioButton"
name=
"
live555TransportRTSP_TCPRadio
"
>
<property
name=
"text"
>
<string>
RTP over RTSP (TCP)
</string>
</property>
...
...
@@ -179,9 +179,9 @@
</layout>
</item>
<item
row=
"2"
column=
"0"
>
<widget
class=
"QLabel"
name=
"l
abel_3
"
>
<widget
class=
"QLabel"
name=
"l
ive555TransportLabel
"
>
<property
name=
"text"
>
<string>
S
tream transport
</string>
<string>
Live555 s
tream transport
</string>
</property>
</widget>
</item>
...
...
@@ -316,7 +316,7 @@
<tabstop>
cachingCombo
</tabstop>
<tabstop>
PostProcLevel
</tabstop>
<tabstop>
AviRepair
</tabstop>
<tabstop>
RTSP_TCPBox
</tabstop>
<tabstop>
live555TransportRTSP_TCPRadio
</tabstop>
<tabstop>
systemCodecBox
</tabstop>
</tabstops>
<resources/>
...
...
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