Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
e060a750
Commit
e060a750
authored
Mar 16, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Db -> dB . patch by Ari Constancio
parent
aca23528
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
11 deletions
+6
-11
modules/audio_filter/param_eq.c
modules/audio_filter/param_eq.c
+6
-11
No files found.
modules/audio_filter/param_eq.c
View file @
e060a750
/*****************************************************************************
* param_eq.c:
*****************************************************************************
* Copyright
(C)
2006 the VideoLAN team
* Copyright
©
2006 the VideoLAN team
* $Id$
*
* Authors: Antti Huovilainen
...
...
@@ -51,29 +51,24 @@ vlc_module_begin();
set_subcategory
(
SUBCAT_AUDIO_AFILTER
);
add_float
(
"param-eq-lowf"
,
100
,
NULL
,
N_
(
"Low freq (Hz)"
),
""
,
VLC_FALSE
);
/// \bug Db -> dB
add_float_with_range
(
"param-eq-lowgain"
,
0
,
-
20
.
0
,
20
.
0
,
NULL
,
N_
(
"Low freq gain (
Db
)"
),
""
,
VLC_FALSE
);
N_
(
"Low freq gain (
dB
)"
),
""
,
VLC_FALSE
);
add_float
(
"param-eq-highf"
,
10000
,
NULL
,
N_
(
"High freq (Hz)"
),
""
,
VLC_FALSE
);
/// \bug Db -> dB
add_float_with_range
(
"param-eq-highgain"
,
0
,
-
20
.
0
,
20
.
0
,
NULL
,
N_
(
"High freq gain (
Db
)"
),
""
,
VLC_FALSE
);
N_
(
"High freq gain (
dB
)"
),
""
,
VLC_FALSE
);
add_float
(
"param-eq-f1"
,
300
,
NULL
,
N_
(
"Freq 1 (Hz)"
),
""
,
VLC_FALSE
);
/// \bug Db -> dB
add_float_with_range
(
"param-eq-gain1"
,
0
,
-
20
.
0
,
20
.
0
,
NULL
,
N_
(
"Freq 1 gain (
Db
)"
),
""
,
VLC_FALSE
);
N_
(
"Freq 1 gain (
dB
)"
),
""
,
VLC_FALSE
);
add_float_with_range
(
"param-eq-q1"
,
3
,
0
.
1
,
100
.
0
,
NULL
,
N_
(
"Freq 1 Q"
),
""
,
VLC_FALSE
);
add_float
(
"param-eq-f2"
,
1000
,
NULL
,
N_
(
"Freq 2 (Hz)"
),
""
,
VLC_FALSE
);
/// \bug Db -> dB
add_float_with_range
(
"param-eq-gain2"
,
0
,
-
20
.
0
,
20
.
0
,
NULL
,
N_
(
"Freq 2 gain (
Db
)"
),
""
,
VLC_FALSE
);
N_
(
"Freq 2 gain (
dB
)"
),
""
,
VLC_FALSE
);
add_float_with_range
(
"param-eq-q2"
,
3
,
0
.
1
,
100
.
0
,
NULL
,
N_
(
"Freq 2 Q"
),
""
,
VLC_FALSE
);
add_float
(
"param-eq-f3"
,
3000
,
NULL
,
N_
(
"Freq 3 (Hz)"
),
""
,
VLC_FALSE
);
/// \bug Db -> dB
add_float_with_range
(
"param-eq-gain3"
,
0
,
-
20
.
0
,
20
.
0
,
NULL
,
N_
(
"Freq 3 gain (
Db
)"
),
""
,
VLC_FALSE
);
N_
(
"Freq 3 gain (
dB
)"
),
""
,
VLC_FALSE
);
add_float_with_range
(
"param-eq-q3"
,
3
,
0
.
1
,
100
.
0
,
NULL
,
N_
(
"Freq 3 Q"
),
""
,
VLC_FALSE
);
...
...
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