[FFmpeg-cvslog] r9861 - trunk/libavcodec/fft-test.c

mhoffman subversion
Wed Aug 1 22:44:09 CEST 2007


Author: mhoffman
Date: Wed Aug  1 22:44:08 2007
New Revision: 9861

Log:
making reference models have the same API

Modified:
   trunk/libavcodec/fft-test.c

Modified: trunk/libavcodec/fft-test.c
==============================================================================
--- trunk/libavcodec/fft-test.c	(original)
+++ trunk/libavcodec/fft-test.c	Wed Aug  1 22:44:08 2007
@@ -95,8 +95,9 @@ void fft_ref(FFTComplex *tabr, FFTComple
     }
 }
 
-void imdct_ref(float *out, float *in, int n)
+void imdct_ref(float *out, float *in, int nbits)
 {
+    int n = 1<<nbits;
     int k, i, a;
     double sum, f;
 
@@ -112,8 +113,9 @@ void imdct_ref(float *out, float *in, in
 }
 
 /* NOTE: no normalisation by 1 / N is done */
-void mdct_ref(float *output, float *input, int n)
+void mdct_ref(float *output, float *input, int nbits)
 {
+    int n = 1<<nbits;
     int k, i;
     double a, s;
 
@@ -246,11 +248,11 @@ int main(int argc, char **argv)
 
     if (do_mdct) {
         if (do_inverse) {
-            imdct_ref((float *)tab_ref, (float *)tab1, fft_size);
+            imdct_ref((float *)tab_ref, (float *)tab1, fft_nbits);
             ff_imdct_calc(m, tab2, (float *)tab1, tabtmp);
             check_diff((float *)tab_ref, tab2, fft_size);
         } else {
-            mdct_ref((float *)tab_ref, (float *)tab1, fft_size);
+            mdct_ref((float *)tab_ref, (float *)tab1, fft_nbits);
 
             ff_mdct_calc(m, tab2, (float *)tab1, tabtmp);
 




More information about the ffmpeg-cvslog mailing list