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
69cdf172
Commit
69cdf172
authored
Dec 31, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Equalizer: namespace initial values
parent
6e9c9a93
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+1
-7
modules/gui/qt4/components/extended_panels.hpp
modules/gui/qt4/components/extended_panels.hpp
+9
-2
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
69cdf172
...
...
@@ -1364,13 +1364,7 @@ void Compressor::setValues()
/**********************************************************************
* Spatializer
**********************************************************************/
typedef
struct
{
const
char
*
psz_name
;
const
char
*
psz_desc
;
}
spat_controls_t
;
static
const
spat_controls_t
spat_controls
[]
=
const
Spatializer
::
spat_controls_t
Spatializer
::
spat_controls
[]
=
{
{
"spatializer-roomsize"
,
_
(
"Size"
)
},
{
"spatializer-width"
,
_
(
"Width"
)
},
...
...
modules/gui/qt4/components/extended_panels.hpp
View file @
69cdf172
...
...
@@ -156,15 +156,22 @@ private slots:
class
Spatializer
:
public
QWidget
{
Q_OBJECT
public:
Spatializer
(
intf_thread_t
*
,
QWidget
*
);
private:
typedef
struct
{
const
char
*
psz_name
;
const
char
*
psz_desc
;
}
spat_controls_t
;
static
const
spat_controls_t
spat_controls
[
NUM_SP_CTRL
];
QSlider
*
spatCtrl
[
NUM_SP_CTRL
];
QLabel
*
ctrl_texts
[
NUM_SP_CTRL
];
QLabel
*
ctrl_readout
[
NUM_SP_CTRL
];
float
controlVars
[
5
];
float
oldControlVars
[
5
];
float
controlVars
[
NUM_SP_CTRL
];
float
oldControlVars
[
NUM_SP_CTRL
];
QGroupBox
*
spatializerBox
;
...
...
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