1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-26 20:14:19 -04:00

AM Modulator: fixed interpolator filter sample rate

This commit is contained in:
f4exb
2016-11-28 13:32:41 +01:00
parent 7c1b1032c9
commit d71f3cecb3
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -255,7 +255,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, 3.0);
m_interpolator.create(48, m_config.m_audioSampleRate, m_config.m_rfBandwidth / 2.2, 3.0);
m_settingsMutex.unlock();
}