diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2005-08-17 20:58:15 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2005-08-17 20:58:15 +0000 |
| commit | 39cb5b7912840a5ce06b47c8936ee9005a545cd1 (patch) | |
| tree | 1dfa6c44e5b710187a818cfbcc98799e35ee1a60 /apps | |
| parent | 280d9cc00a6ca30b4cdd30629289d92efd132c3a (diff) | |
| download | rockbox-39cb5b7912840a5ce06b47c8936ee9005a545cd1.zip rockbox-39cb5b7912840a5ce06b47c8936ee9005a545cd1.tar.gz rockbox-39cb5b7912840a5ce06b47c8936ee9005a545cd1.tar.bz2 rockbox-39cb5b7912840a5ce06b47c8936ee9005a545cd1.tar.xz | |
iriver: Do correct ReplayGain calculation. Fixes distortion problems (and lowers playback volume).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7343 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ "move.l %%accext01, %[u]\n\t" \ "movclr.l %%acc0, %[t]\n\t" \ : [t] "=r" (t), [u] "=r" (u) : [a] "r" (x), [b] "r" (y)); \ - (t << 8) | (u & 0xff); \ + (t << 7) | ((u & 0xff) >> 1); \ }) #else |