shithub: aacenc

Download patch

ref: 8fbfb7b31852f2413ad0d7ef017e5d26ba0e5d21
parent: defc721f401790c220e785f7c0746bc37ea5b971
author: knik <knik>
date: Wed Aug 21 12:53:42 EDT 2002

new fft function names

--- a/libfaac/filtbank.c
+++ b/libfaac/filtbank.c
@@ -22,7 +22,7 @@
  *                                                                           *
  ****************************************************************************/
 /*
- * $Id: filtbank.c,v 1.9 2001/09/04 18:39:35 menno Exp $
+ * $Id: filtbank.c,v 1.10 2002/08/21 16:53:42 knik Exp $
  */
 
 /*
@@ -458,10 +458,10 @@
     /* Perform in-place complex FFT of length N/4 */
     switch (N) {
     case 256:
-        srfft(xr, xi, 6);
+        fft(xr, xi, 6);
         break;
     case 2048:
-        srfft(xr, xi, 9);
+        fft(xr, xi, 9);
     }
 
     /* prepare for recurrence relations in post-twiddle */
@@ -530,10 +530,10 @@
     /* Perform in-place complex IFFT of length N/4 */
     switch (N) {
     case 256:
-        srifft(xr, xi, 6);
+        ffti(xr, xi, 6);
         break;
     case 2048:
-        srifft(xr, xi, 9);
+        ffti(xr, xi, 9);
     }
 
     /* prepare for recurrence relations in post-twiddle */