# HG changeset patch # User Yoshiki Yazawa # Date 1200969840 -32400 # Node ID 31754b406cd61c8af1c2a28ccf2f3538222e5de5 # Parent 5b37a9f2d0cc005563d7c5365b39171ac81d8fb6 fixed a decoder bug introduced in r2316. diff -r 5b37a9f2d0cc -r 31754b406cd6 src/aac/libfaad2/cfft.c --- a/src/aac/libfaad2/cfft.c Sun Jan 20 14:53:47 2008 +0100 +++ b/src/aac/libfaad2/cfft.c Tue Jan 22 11:44:00 2008 +0900 @@ -849,12 +849,12 @@ void cfftf(cfft_info *cfft, complex_t *c) { - cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)&(cfft->tab), -1); + cfftf1neg(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)cfft->tab, -1); } void cfftb(cfft_info *cfft, complex_t *c) { - cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)&(cfft->tab), +1); + cfftf1pos(cfft->n, c, cfft->work, (const uint16_t*)cfft->ifac, (const complex_t*)(void*)cfft->tab, +1); } static void cffti1(uint16_t n, complex_t *wa, uint16_t *ifac)