[vlc-devel] [PATCH 1/2] equalizer: Use ISO frequencies as default instead of VLC frequencies

Ronald Wright logiconcepts819 at gmail.com
Sun Aug 18 18:16:53 CEST 2013


For a long time, VLC has used the old Winamp bands for the equalizer. A while
ago, the ISO bands were introduced as an alternative. These alternative bands
are logarithmically spaced, making them a better choice since the perception
of pitch is logarithmic. Therefore, the ISO bands should be the new default.
---
 modules/audio_filter/equalizer.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/audio_filter/equalizer.c b/modules/audio_filter/equalizer.c
index 47311f3..06b6b42 100644
--- a/modules/audio_filter/equalizer.c
+++ b/modules/audio_filter/equalizer.c
@@ -90,7 +90,7 @@ vlc_module_begin ()
                 BANDS_LONGTEXT, true )
     add_bool( "equalizer-2pass", false, TWOPASS_TEXT,
               TWOPASS_LONGTEXT, true )
-    add_bool( "equalizer-vlcfreqs", true, VLC_BANDS_TEXT,
+    add_bool( "equalizer-vlcfreqs", false, VLC_BANDS_TEXT,
               VLC_BANDS_LONGTEXT, true )
     add_float( "equalizer-preamp", 12.0f, PREAMP_TEXT,
                PREAMP_LONGTEXT, true )
-- 
1.7.10.4




More information about the vlc-devel mailing list