From d2c6791eeadfe0465485b214af4c74c79815517d Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 8 Nov 2016 17:30:10 +0100 Subject: [PATCH] Use IntHalfbandFilterST in decimators --- sdrbase/dsp/decimators.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sdrbase/dsp/decimators.h b/sdrbase/dsp/decimators.h index 4aa41c3e2..9d6b177dd 100644 --- a/sdrbase/dsp/decimators.h +++ b/sdrbase/dsp/decimators.h @@ -19,7 +19,7 @@ #include "dsp/dsptypes.h" #ifdef USE_SSE4_1 -#include "dsp/inthalfbandfiltereo1.h" +#include "dsp/inthalfbandfilterst.h" #else #include "dsp/inthalfbandfilterdb.h" #endif @@ -125,12 +125,12 @@ public: private: #ifdef USE_SSE4_1 - IntHalfbandFilterEO1 m_decimator2; // 1st stages - IntHalfbandFilterEO1 m_decimator4; // 2nd stages - IntHalfbandFilterEO1 m_decimator8; // 3rd stages - IntHalfbandFilterEO1 m_decimator16; // 4th stages - IntHalfbandFilterEO1 m_decimator32; // 5th stages - IntHalfbandFilterEO1 m_decimator64; // 6th stages + IntHalfbandFilterST m_decimator2; // 1st stages + IntHalfbandFilterST m_decimator4; // 2nd stages + IntHalfbandFilterST m_decimator8; // 3rd stages + IntHalfbandFilterST m_decimator16; // 4th stages + IntHalfbandFilterST m_decimator32; // 5th stages + IntHalfbandFilterST m_decimator64; // 6th stages #else IntHalfbandFilterDB m_decimator2; // 1st stages IntHalfbandFilterDB m_decimator4; // 2nd stages