summaryrefslogtreecommitdiffhomepage
path: root/fft.h
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2019-02-17 12:55:13 +0100
committerRoland Stigge <stigge@antcom.de>2019-02-17 12:55:13 +0100
commitfef594c82518a8fe4c96794852c1fc849c0ed3b3 (patch)
tree2efbedc8b126a77d91633ce8b9201dc4a7db764c /fft.h
parent1a219839034e9b11a4771fb84c90d4a2667365ce (diff)
Added tunerdemo
Diffstat (limited to 'fft.h')
-rw-r--r--fft.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/fft.h b/fft.h
index 8c1e161..980b4b3 100644
--- a/fft.h
+++ b/fft.h
@@ -44,17 +44,6 @@ private:
std::unique_ptr<Impl> mImpl;
}; // class IFFT
-class AutoCorrelation {
-public:
- AutoCorrelation(int size);
- ~AutoCorrelation();
- std::vector<std::complex<double>> operator()(const std::vector<std::complex<double>> &v) const;
-
-private:
- struct Impl;
- std::unique_ptr<Impl> mImpl;
-}; // class AutoCorrelation
-
std::vector<double> magnitudes(std::vector<std::complex<double>>& v);
} // namespace RIT