1
0
Fork 0
forked from len0rd/rockbox

Replace limiter with dynamic range compressor

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22832 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jeffrey Goode 2009-09-25 15:46:38 +00:00
parent b9a17dd0ce
commit cf19ba5599
21 changed files with 577 additions and 507 deletions

View file

@ -956,7 +956,11 @@ void settings_apply(bool read_disk)
dsp_dither_enable(global_settings.dithering_enabled);
dsp_timestretch_enable(global_settings.timestretch_enabled);
dsp_set_limiter(global_settings.limiter_level);
dsp_set_compressor(global_settings.compressor_threshold,
global_settings.compressor_ratio,
global_settings.compressor_makeup_gain,
global_settings.compressor_knee,
global_settings.compressor_release_time);
#endif
#ifdef HAVE_SPDIF_POWER