1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 07:16:48 -04:00

#1069. Increase FIFO size in Remote Sink according to baseband sample rate

This commit is contained in:
Jon Beniston 2021-12-09 12:39:52 +00:00
parent 7d2e06adc2
commit bd1af18578

View File

@ -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;
}