diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-10-05 17:24:31 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-10-05 17:24:31 +0200 |
commit | b563b465e8b3df367da7799e789d29e0009cb96a (patch) | |
tree | 2ddc718b8c4df52625f074f2810b7a7c21559665 /src/GainControl.h | |
parent | d59e9588660c1f7fe956aa2b97e3691070a4ce04 (diff) | |
download | dabmod-b563b465e8b3df367da7799e789d29e0009cb96a.tar.gz dabmod-b563b465e8b3df367da7799e789d29e0009cb96a.tar.bz2 dabmod-b563b465e8b3df367da7799e789d29e0009cb96a.zip |
Move typedef of complexf to Buffer.h
Diffstat (limited to 'src/GainControl.h')
-rw-r--r-- | src/GainControl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/GainControl.h b/src/GainControl.h index 04f6b58..d40a7d7 100644 --- a/src/GainControl.h +++ b/src/GainControl.h @@ -35,7 +35,6 @@ #include "RemoteControl.h" #include <sys/types.h> -#include <complex> #include <string> #include <mutex> @@ -43,9 +42,6 @@ # include <xmmintrin.h> #endif - -typedef std::complex<float> complexf; - enum class GainMode { GAIN_FIX = 0, GAIN_MAX = 1, GAIN_VAR = 2 }; class GainControl : public PipelinedModCodec, public RemoteControllable |