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
26a440b8
Commit
26a440b8
authored
May 26, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: remove Linux DVB device spin box
parent
ceeacab6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
12 deletions
+1
-12
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+0
-11
modules/gui/qt4/components/open_panels.hpp
modules/gui/qt4/components/open_panels.hpp
+1
-1
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
26a440b8
...
...
@@ -930,14 +930,9 @@ void CaptureOpenPanel::initialize()
dvbCard
->
setAlignment
(
Qt
::
AlignRight
);
#ifdef __linux__
dvbCard
->
setPrefix
(
"/dev/dvb/adapter"
);
dvbFE
=
new
QSpinBox
;
dvbFE
->
setPrefix
(
"/frontend"
);
#endif
dvbDevLayout
->
addWidget
(
dvbDeviceLabel
,
0
,
0
);
dvbDevLayout
->
addWidget
(
dvbCard
,
0
,
1
,
1
,
2
);
#ifdef __linux__
dvbDevLayout
->
addWidget
(
dvbFE
,
0
,
3
);
#endif
dvbc
=
new
QRadioButton
(
"DVB-C"
);
dvbs
=
new
QRadioButton
(
"DVB-S"
);
...
...
@@ -1017,9 +1012,6 @@ void CaptureOpenPanel::initialize()
/* DVB CONNECTs */
CuMRL
(
dvbCard
,
valueChanged
(
int
)
);
#ifdef __linux__
CuMRL
(
dvbFE
,
valueChanged
(
int
)
);
#endif
CuMRL
(
dvbFreq
,
valueChanged
(
int
)
);
CuMRL
(
dvbSrate
,
valueChanged
(
int
)
);
CuMRL
(
dvbQamBox
,
currentIndexChanged
(
int
)
);
...
...
@@ -1171,9 +1163,6 @@ void CaptureOpenPanel::updateMRL()
fileList
<<
mrl
;
mrl
=
""
;
mrl
+=
" :dvb-adapter="
+
QString
::
number
(
dvbCard
->
value
()
);
#ifdef __linux__
mrl
+=
" :dvb-device="
+
QString
::
number
(
dvbFE
->
value
()
);
#endif
break
;
case
SCREEN_DEVICE
:
fileList
<<
"screen://"
;
...
...
modules/gui/qt4/components/open_panels.hpp
View file @
26a440b8
...
...
@@ -214,7 +214,7 @@ private:
QRadioButton
*
dvbc
,
*
dvbs
,
*
dvbs2
,
*
dvbt
,
*
dvbt2
,
*
atsc
,
*
cqam
;
QLabel
*
dvbBandLabel
,
*
dvbSrateLabel
,
*
dvbModLabel
;
QComboBox
*
dvbQamBox
,
*
dvbPskBox
,
*
dvbBandBox
;
QSpinBox
*
dvbCard
,
*
dvbF
E
,
*
dvbF
req
,
*
dvbSrate
;
QSpinBox
*
dvbCard
,
*
dvbFreq
,
*
dvbSrate
;
QDoubleSpinBox
*
screenFPS
;
public
slots
:
...
...
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