Mercurial > hg > libxtract
changeset 66:af594496da53
Fixed incorrect symbols in FFTless placeholder functions, and made them return a value.
author | Dan Stowell <danstowell@gmail.com> |
---|---|
date | Tue, 13 Mar 2007 10:14:32 +0000 |
parents | 83b8f9ce827a |
children | 2c2ea9326c30 |
files | src/vector.c |
diffstat | 1 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/vector.c Mon Mar 12 19:13:48 2007 +0000 +++ b/src/vector.c Tue Mar 13 10:14:32 2007 +0000 @@ -184,25 +184,29 @@ 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; }