From bd1af18578d905edc4468fa7cebf49b6c90b7cbd Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Thu, 9 Dec 2021 12:39:52 +0000 Subject: [PATCH] #1069. Increase FIFO size in Remote Sink according to baseband sample rate --- plugins/channelrx/remotesink/remotesinkbaseband.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/channelrx/remotesink/remotesinkbaseband.cpp b/plugins/channelrx/remotesink/remotesinkbaseband.cpp index d0ed17985..72aa5abdc 100644 --- a/plugins/channelrx/remotesink/remotesinkbaseband.cpp +++ b/plugins/channelrx/remotesink/remotesinkbaseband.cpp @@ -118,6 +118,7 @@ bool RemoteSinkBaseband::handleMessage(const Message& cmd) m_channelizer->setBasebandSampleRate(m_basebandSampleRate); m_sink.applyBasebandSampleRate(m_basebandSampleRate); m_sink.setDeviceCenterFrequency(notif.getCenterFrequency()); + m_sampleFifo.setSize(SampleSinkFifo::getSizePolicy(m_basebandSampleRate)); return true; }