aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vector.c12
1 files changed, 8 insertions, 4 deletions
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;
}