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
5f1e2f74
Commit
5f1e2f74
authored
Jan 28, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spatializer: do not conflict with libvlccore options
parent
3f8d4e61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
modules/audio_filter/spatializer/spatializer.cpp
modules/audio_filter/spatializer/spatializer.cpp
+6
-5
No files found.
modules/audio_filter/spatializer/spatializer.cpp
View file @
5f1e2f74
...
...
@@ -70,11 +70,12 @@ vlc_module_begin ()
set_callbacks
(
Open
,
Close
)
add_shortcut
(
"spatializer"
)
add_float
(
"roomsize"
,
1.05
,
NULL
,
ROOMSIZE_TEXT
,
ROOMSIZE_LONGTEXT
,
true
)
add_float
(
"width"
,
10.0
,
NULL
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
true
)
add_float
(
"wet"
,
3.0
,
NULL
,
WET_TEXT
,
WET_LONGTEXT
,
true
)
add_float
(
"dry"
,
2.0
,
NULL
,
DRY_TEXT
,
DRY_LONGTEXT
,
true
)
add_float
(
"damp"
,
1.0
,
NULL
,
DAMP_TEXT
,
DAMP_LONGTEXT
,
true
)
add_float
(
"spatializer-roomsize"
,
1.05
,
NULL
,
ROOMSIZE_TEXT
,
ROOMSIZE_LONGTEXT
,
true
)
add_float
(
"spatializer-width"
,
10.
,
NULL
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
true
)
add_float
(
"spatializer-wet"
,
3.
,
NULL
,
WET_TEXT
,
WET_LONGTEXT
,
true
)
add_float
(
"spatializer-dry"
,
2.
,
NULL
,
DRY_TEXT
,
DRY_LONGTEXT
,
true
)
add_float
(
"spatializer-damp"
,
1.
,
NULL
,
DAMP_TEXT
,
DAMP_LONGTEXT
,
true
)
vlc_module_end
()
/*****************************************************************************
...
...
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