1
0
Fork 0
forked from len0rd/rockbox

Fix red and yellow. Needed to remove one codebook from IRAM due to full IRAM on iPod4G.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27226 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2010-07-01 21:39:55 +00:00
parent 52f17dfe9d
commit c794c1feae
2 changed files with 3 additions and 3 deletions

View file

@ -138,13 +138,13 @@ void faad_rewindbits(bitfile *ld)
tmp = ld->start[0];
#ifndef ARCH_IS_BIG_ENDIAN
BSWAP(tmp);
tmp = BSWAP(tmp);
#endif
ld->bufa = tmp;
tmp = ld->start[1];
#ifndef ARCH_IS_BIG_ENDIAN
BSWAP(tmp);
tmp = BSWAP(tmp);
#endif
ld->bufb = tmp;
ld->bits_left = 32;