From 778548ddda97293c33f012e0ad7c02fc98727a0b Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 24 Jan 2023 23:15:44 +0100 Subject: [PATCH] FT8 support: move analytic to private --- ft8/fft.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft8/fft.h b/ft8/fft.h index d93fdbccd..285c0b14b 100644 --- a/ft8/fft.h +++ b/ft8/fft.h @@ -80,7 +80,6 @@ public: std::vector> one_fft_c(const std::vector &samples, int i0, int block, const char *why); std::vector> one_fft_cc(const std::vector> &samples, int i0, int block, const char *why); std::vector> one_ifft_cc(const std::vector> &bins, const char *why); - std::vector> analytic(const std::vector &x, const char *why); std::vector hilbert_shift(const std::vector &x, float hz0, float hz1, int rate); protected: @@ -90,6 +89,7 @@ protected: static FFTEngine *m_instance; private: + std::vector> analytic(const std::vector &x, const char *why); void fft_stats(); QMutex m_plansmu; QMutex m_plansmu2;