summaryrefslogtreecommitdiff
path: root/apps/dsp.c
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-12-08 01:45:04 +0000
committerThom Johansen <thomj@rockbox.org>2007-12-08 01:45:04 +0000
commit39e2de8f1b75c1fe12b99fab49d7e34ea2d91563 (patch)
treebd57f9802ecd2981dd5658f144f250c8581a28c3 /apps/dsp.c
parent4c4b3a314aa5ba39f55a90faa6887ebcb29398c3 (diff)
downloadrockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.zip
rockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.tar.gz
rockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.tar.bz2
rockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.tar.xz
Crossfeed settings used to be stored inverted in the cfg file for legacy reasons, change that and kill some identical formatting functions while we're at it. NOTE TO CROSSFEED USERS: this will completely garble your crossfeed settings, write them down if you want to keep them.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15895 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/dsp.c')
-rw-r--r--apps/dsp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 1e0ae1f..3c2d7f6 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -758,27 +758,27 @@ void dsp_set_crossfeed(bool enable)
void dsp_set_crossfeed_direct_gain(int gain)
{
- crossfeed_data.gain = get_replaygain_int(gain * -10) << 7;
+ crossfeed_data.gain = get_replaygain_int(gain * 10) << 7;
/* If gain is negative, the calculation overflowed and we need to clamp */
if (crossfeed_data.gain < 0)
crossfeed_data.gain = 0x7fffffff;
}
-/* Both gains should be below 0 dB (when inverted) */
+/* Both gains should be below 0 dB */
void dsp_set_crossfeed_cross_params(long lf_gain, long hf_gain, long cutoff)
{
int32_t *c = crossfeed_data.coefs;
- long scaler = get_replaygain_int(lf_gain * -10) << 7;
+ long scaler = get_replaygain_int(lf_gain * 10) << 7;
cutoff = 0xffffffff/NATIVE_FREQUENCY*cutoff;
hf_gain -= lf_gain;
- /* Divide cutoff by sqrt(10^(-hf_gain/20)) to place cutoff at the -3 dB
+ /* Divide cutoff by sqrt(10^(hf_gain/20)) to place cutoff at the -3 dB
* point instead of shelf midpoint. This is for compatibility with the old
* crossfeed shelf filter and should be removed if crossfeed settings are
* ever made incompatible for any other good reason.
*/
- cutoff = DIV64(cutoff, get_replaygain_int(-hf_gain*5), 24);
- filter_shelf_coefs(cutoff, -hf_gain, false, c);
+ cutoff = DIV64(cutoff, get_replaygain_int(hf_gain*5), 24);
+ filter_shelf_coefs(cutoff, hf_gain, false, c);
/* Scale coefs by LF gain and shift them to s0.31 format. We have no gains
* over 1 and can do this safely
*/