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
31943c2c
Commit
31943c2c
authored
Apr 11, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* replaced NULL with empty strings when providing no help for an option
parent
089c011a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
modules/audio_filter/param_eq.c
modules/audio_filter/param_eq.c
+13
-13
No files found.
modules/audio_filter/param_eq.c
View file @
31943c2c
...
...
@@ -52,32 +52,32 @@ vlc_module_begin();
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AFILTER
);
add_float
(
"param-eq-lowf"
,
100
,
NULL
,
N_
(
"Low freq (Hz)"
),
NULL
,
VLC_FALSE
);
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)"
),
NULL
,
VLC_FALSE
);
add_float
(
"param-eq-highf"
,
10000
,
NULL
,
N_
(
"High freq (Hz)"
),
NULL
,
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)"
),
NULL
,
VLC_FALSE
);
add_float
(
"param-eq-f1"
,
300
,
NULL
,
N_
(
"Freq 1 (Hz)"
),
NULL
,
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)"
),
NULL
,
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"
),
NULL
,
VLC_FALSE
);
add_float
(
"param-eq-f2"
,
1000
,
NULL
,
N_
(
"Freq 2 (Hz)"
),
NULL
,
VLC_FALSE
);
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)"
),
NULL
,
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"
),
NULL
,
VLC_FALSE
);
add_float
(
"param-eq-f3"
,
3000
,
NULL
,
N_
(
"Freq 3 (Hz)"
),
NULL
,
VLC_FALSE
);
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)"
),
NULL
,
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"
),
NULL
,
VLC_FALSE
);
N_
(
"Freq 3 Q"
),
""
,
VLC_FALSE
);
set_callbacks
(
Open
,
Close
);
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