From c794c1feae25eadca68da15606051922b2bb364d Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Thu, 1 Jul 2010 21:39:55 +0000 Subject: 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 --- apps/codecs/libfaad/bits.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/codecs/libfaad/bits.c') diff --git a/apps/codecs/libfaad/bits.c b/apps/codecs/libfaad/bits.c index f1a3623..8c70a86 100644 --- a/apps/codecs/libfaad/bits.c +++ b/apps/codecs/libfaad/bits.c @@ -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; -- cgit v1.1