diff options
Diffstat (limited to 'apps/codecs/libfaad/bits.c')
| -rw-r--r-- | apps/codecs/libfaad/bits.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |