[vlc-commits] [Git][videolan/vlc][master] param_eq: fix incorrect filter type for high frequency band

Steve Lhomme (@robUx4) gitlab at videolan.org
Fri Dec 12 15:30:48 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
18059c50 by felisevan at 2025-12-12T15:00:52+00:00
param_eq: fix incorrect filter type for high frequency band

- - - - -


1 changed file:

- modules/audio_filter/param_eq.c


Changes:

=====================================
modules/audio_filter/param_eq.c
=====================================
@@ -147,7 +147,7 @@ static int Open( vlc_object_t *p_this )
                      i_samplerate, p_sys->coeffs+2*5);
     CalcShelfEQCoeffs(p_sys->f_lowf, 1, p_sys->f_lowgain, 0,
                       i_samplerate, p_sys->coeffs+3*5);
-    CalcShelfEQCoeffs(p_sys->f_highf, 1, p_sys->f_highgain, 0,
+    CalcShelfEQCoeffs(p_sys->f_highf, 1, p_sys->f_highgain, 1,
                       i_samplerate, p_sys->coeffs+4*5);
     p_sys->p_state = (float*)calloc( p_filter->fmt_in.audio.i_channels*5*4,
                                      sizeof(float) );



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/18059c509cd0856b31463c322c084f1ccd695ab7

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/18059c509cd0856b31463c322c084f1ccd695ab7
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list