1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-21 23:55:13 -05:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Edouard Griffiths
4269aa4377
Merge pull request #1075 from srcejon/fix_1069_fifo_size
Increase FIFO size in Remote Sink according to baseband sample rate
2021-12-09 15:28:46 +01:00
Jon Beniston
bd1af18578 #1069. Increase FIFO size in Remote Sink according to baseband sample rate 2021-12-09 12:39:52 +00:00

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