mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-03-18 09:06:07 +08:00
spectrogram : remove old FFT algorithm
Reuse the one embedded within ggwave through a static function
This commit is contained in:
@@ -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
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user