Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
98125d8a
Commit
98125d8a
authored
Jul 24, 2014
by
logiconcepts819
Committed by
Jean-Baptiste Kempf
Jul 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
equalizer: Fix bug in preset loading
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
72d1a6b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/audio_filter/equalizer.c
modules/audio_filter/equalizer.c
+1
-1
No files found.
modules/audio_filter/equalizer.c
View file @
98125d8a
...
...
@@ -345,7 +345,7 @@ static int EqzInit( filter_t *p_filter, int i_rate )
var_Get
(
p_aout
,
"equalizer-preamp"
,
&
val3
);
/* Load the preset only if equalizer-bands is not set. */
if
(
val2
.
psz_string
!
=
NULL
&&
*
val2
.
psz_string
!
=
'\0'
)
if
(
val2
.
psz_string
=
=
NULL
||
*
val2
.
psz_string
=
=
'\0'
)
PresetCallback
(
VLC_OBJECT
(
p_aout
),
NULL
,
val1
,
val1
,
p_sys
);
free
(
val1
.
psz_string
);
BandsCallback
(
VLC_OBJECT
(
p_aout
),
NULL
,
val2
,
val2
,
p_sys
);
...
...
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