mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-03 18:18:31 -04:00
SoapySDR support: output: fixed sample FIFO resizing
This commit is contained in:
parent
564a99d14e
commit
2bc59154bf
@ -18,6 +18,10 @@
|
||||
|
||||
MESSAGE_CLASS_DEFINITION(DeviceSoapySDRShared::MsgReportBuddyChange, Message)
|
||||
|
||||
const float DeviceSoapySDRShared::m_sampleFifoLengthInSeconds = 0.25;
|
||||
const int DeviceSoapySDRShared::m_sampleFifoMinSize = 75000; // 300 kS/s knee
|
||||
const int DeviceSoapySDRShared::m_sampleFifoMinSize32 = 150000; // Fixed for interpolation by 32
|
||||
|
||||
DeviceSoapySDRShared::DeviceSoapySDRShared() :
|
||||
m_device(0),
|
||||
m_channel(-1),
|
||||
|
@ -87,6 +87,10 @@ public:
|
||||
int m_channel; //!< allocated channel (-1 if none)
|
||||
SoapySDRInput *m_source;
|
||||
SoapySDROutput *m_sink;
|
||||
|
||||
static const float m_sampleFifoLengthInSeconds;
|
||||
static const int m_sampleFifoMinSize;
|
||||
static const int m_sampleFifoMinSize32;
|
||||
};
|
||||
|
||||
|
||||
|
@ -621,6 +621,38 @@ bool SoapySDROutput::applySettings(const SoapySDROutputSettings& settings, bool
|
||||
xlatedDeviceCenterFrequency -= settings.m_transverterMode ? settings.m_transverterDeltaFrequency : 0;
|
||||
xlatedDeviceCenterFrequency = xlatedDeviceCenterFrequency < 0 ? 0 : xlatedDeviceCenterFrequency;
|
||||
|
||||
// resize FIFO
|
||||
if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || (m_settings.m_log2Interp != settings.m_log2Interp) || force)
|
||||
{
|
||||
SoapySDROutputThread *soapySDROutputThread = findThread();
|
||||
SampleSourceFifo *fifo = 0;
|
||||
|
||||
if (soapySDROutputThread)
|
||||
{
|
||||
fifo = soapySDROutputThread->getFifo(requestedChannel);
|
||||
soapySDROutputThread->setFifo(requestedChannel, 0);
|
||||
}
|
||||
|
||||
int fifoSize;
|
||||
|
||||
if (settings.m_log2Interp >= 5)
|
||||
{
|
||||
fifoSize = DeviceSoapySDRShared::m_sampleFifoMinSize32;
|
||||
}
|
||||
else
|
||||
{
|
||||
fifoSize = std::max(
|
||||
(int) ((settings.m_devSampleRate/(1<<settings.m_log2Interp)) * DeviceSoapySDRShared::m_sampleFifoLengthInSeconds),
|
||||
DeviceSoapySDRShared::m_sampleFifoMinSize);
|
||||
}
|
||||
|
||||
m_sampleSourceFifo.resize(fifoSize);
|
||||
|
||||
if (fifo) {
|
||||
soapySDROutputThread->setFifo(requestedChannel, &m_sampleSourceFifo);
|
||||
}
|
||||
}
|
||||
|
||||
if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || force)
|
||||
{
|
||||
forwardChangeOwnDSP = true;
|
||||
|
Loading…
Reference in New Issue
Block a user