spectrogram : remove old FFT algorithm

Reuse the one embedded within ggwave through a static function
This commit is contained in:
Georgi Gerganov
2022-07-11 18:21:20 +03:00
parent 867eb1dfbb
commit d3d096ec2d
4 changed files with 41 additions and 96 deletions

View File

@@ -1300,6 +1300,12 @@ bool GGWave::computeFFTR(const float * src, float * dst, int N) {
return true;
}
bool GGWave::computeFFTR(const float * src, float * dst, int N, int * ip, float * w) {
FFT(src, dst, N, ip, w);
return true;
}
//
// GGWave::Resampler
//