1
0
Fork 0

Don't compile the FFT code if FFTW is enabled

This commit is contained in:
Thomas Goyne 2014-05-22 17:44:37 -07:00
parent e0b8c21590
commit 692b354713
2 changed files with 2 additions and 5 deletions

View File

@ -36,6 +36,7 @@
#include "fft.h"
#ifndef WITH_FFTW3
#include <cmath>
void FFT::DoTransform (size_t n_samples,float *input,float *output_r,float *output_i,bool inverse) {
@ -166,3 +167,4 @@ float FFT::FrequencyAtIndex (unsigned int baseFreq, unsigned int n_samples, unsi
return (-(float)(n_samples-index) / (float)n_samples * baseFreq);
}
}
#endif

View File

@ -27,11 +27,6 @@
//
// Aegisub Project http://www.aegisub.org/
/// @file fft.h
/// @see fft.cpp
/// @ingroup utility
///
#include <cstdlib>
class FFT {