From b2bc5eaebd040cca3c453cf093555a448011b2bb Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 1 Nov 2016 03:37:01 +0100 Subject: [PATCH] Tx ph.2: AMMod interpolator: optimize further the number of taps per phase in polyphase filter --- plugins/channeltx/modam/ammod.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channeltx/modam/ammod.cpp b/plugins/channeltx/modam/ammod.cpp index 768e63497..88d102735 100644 --- a/plugins/channeltx/modam/ammod.cpp +++ b/plugins/channeltx/modam/ammod.cpp @@ -179,7 +179,7 @@ void AMMod::apply() m_interpolatorDistanceRemain = 0; m_interpolatorConsumed = false; m_interpolatorDistance = (Real) m_config.m_audioSampleRate / (Real) m_config.m_outputSampleRate; - m_interpolator.create(48, m_config.m_outputSampleRate, m_config.m_rfBandwidth / 2.2, 4.0); + m_interpolator.create(48, m_config.m_outputSampleRate, m_config.m_rfBandwidth / 2.2, 3.0); m_settingsMutex.unlock(); }