1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Magnus Holmgren 2005-08-17 20:58:15 +00:00
parent 280d9cc00a
commit 39cb5b7912

View file

@ -66,7 +66,7 @@
"move.l %%accext01, %[u]\n\t" \ "move.l %%accext01, %[u]\n\t" \
"movclr.l %%acc0, %[t]\n\t" \ "movclr.l %%acc0, %[t]\n\t" \
: [t] "=r" (t), [u] "=r" (u) : [a] "r" (x), [b] "r" (y)); \ : [t] "=r" (t), [u] "=r" (u) : [a] "r" (x), [b] "r" (y)); \
(t << 8) | (u & 0xff); \ (t << 7) | ((u & 0xff) >> 1); \
}) })
#else #else