From 708f5508adfdeb5763a5fb918488e83e20324437 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Thu, 3 Mar 2011 07:23:25 +0000 Subject: [PATCH] Fix peak handling in replaygain (FS#11981). This bug was introduced with r29388 and is caused by calling convert_gain() for peak values. This results in very low output volume if 'Prevent Clipping' is enabled. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29509 a1c6a512-1295-4272-9138-f99709370657 --- apps/dsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dsp.c b/apps/dsp.c index c462fc37a6..5910504122 100644 --- a/apps/dsp.c +++ b/apps/dsp.c @@ -1485,12 +1485,12 @@ intptr_t dsp_configure(struct dsp_config *dsp, int setting, intptr_t value) case DSP_SET_TRACK_PEAK: if (dsp == &AUDIO_DSP) - dsp_set_gain_var(&track_peak, convert_gain(value)); + dsp_set_gain_var(&track_peak, value); break; case DSP_SET_ALBUM_PEAK: if (dsp == &AUDIO_DSP) - dsp_set_gain_var(&album_peak, convert_gain(value)); + dsp_set_gain_var(&album_peak, value); break; default: