closes #9
pitch detection runs on known schedule
fixed erratic pitch detection on launch
This commit is contained in:
michalcourson
2025-11-09 11:16:59 -05:00
parent e89620df27
commit 3c6616d1ec
6 changed files with 177 additions and 174 deletions

View File

@ -50,8 +50,8 @@ against another DSP framework, you need to define t_float, and you need to
include Ron Mayer's fft or similar functionality. */
#include "mayer_fft.h"
#define REALFFT mayer_realfft
#define REALIFFT mayer_realifft
#define REALFFT fft.realfft
#define REALIFFT fft.realifft
/***********************************************************************/
@ -104,6 +104,7 @@ private:
t_float fidelity;
t_float biasfactor;
t_float minrms;
MayerFFT fft;
};
#endif // #ifndef Helmholtz_H