diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2008-09-12 13:52:20 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2008-09-12 13:52:20 +0000 |
commit | fe16b7a12606d389684f9708973fbb2e0ec3e6c8 (patch) | |
tree | 924da46edb74cf6de910551bd2568b51487d824c /src/init.c | |
parent | 6a4be601746f6a84fc70434a61b16bea86b6c147 (diff) | |
download | LibXtract-fe16b7a12606d389684f9708973fbb2e0ec3e6c8.tar.gz LibXtract-fe16b7a12606d389684f9708973fbb2e0ec3e6c8.tar.bz2 LibXtract-fe16b7a12606d389684f9708973fbb2e0ec3e6c8.zip |
- Committing ancient change left on HD. Relates to FFTW fft type
Diffstat (limited to 'src/init.c')
-rw-r--r-- | src/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,7 +187,7 @@ int xtract_init_fft(int N, int feature_name){ if(fft_plans.dct_plan != NULL) fftwf_destroy_plan(fft_plans.dct_plan); fft_plans.dct_plan = - fftwf_plan_r2r_1d(N, input, output, FFTW_REDFT00, optimisation); + fftwf_plan_r2r_1d(N, input, output, FFTW_REDFT10, optimisation); case XTRACT_MFCC: if(fft_plans.dct_plan != NULL) fftwf_destroy_plan(fft_plans.dct_plan); |