From ce919d7f2178c4dc71d121cc716480e311e756af Mon Sep 17 00:00:00 2001 From: Dan Stowell Date: Tue, 13 Mar 2007 10:14:32 +0000 Subject: Fixed incorrect symbols in FFTless placeholder functions, and made them return a value. --- src/vector.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/vector.c') diff --git a/src/vector.c b/src/vector.c index aa11e6a..b6b9308 100644 --- a/src/vector.c +++ b/src/vector.c @@ -184,25 +184,29 @@ int xtract_dct(const float *data, const int N, const void *argv, float *result){ int xtract_magnitude_spectrum(const float *data, const int N, const void *argv, float *result){ - NEEDS_FFTW; + XTRACT_NEEDS_FFTW; + return XTRACT_NO_RESULT; } int xtract_autocorrelation_fft(const float *data, const int N, const void *argv, float *result){ - NEEDS_FFTW; + XTRACT_NEEDS_FFTW; + return XTRACT_NO_RESULT; } int xtract_mfcc(const float *data, const int N, const void *argv, float *result){ - NEEDS_FFTW; + XTRACT_NEEDS_FFTW; + return XTRACT_NO_RESULT; } int xtract_dct(const float *data, const int N, const void *argv, float *result){ - NEEDS_FFTW; + XTRACT_NEEDS_FFTW; + return XTRACT_NO_RESULT; } -- cgit v1.2.3