changeset 2332:31754b406cd6

fixed a decoder bug introduced in r2316.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Tue, 22 Jan 2008 11:44:00 +0900
parents 5b37a9f2d0cc
children 1a4f8ea5eb2a
files src/aac/libfaad2/cfft.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)