mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 06:54:39 -04:00
FIFO for multiple input handling: implementation
This commit is contained in:
@@ -51,21 +51,3 @@ SampleSourceFifo* DeviceSampleMIMO::getSampleSourceFifo(unsigned int index)
|
||||
return &m_sampleSourceFifos[index];
|
||||
}
|
||||
}
|
||||
|
||||
SampleSinkFifo* DeviceSampleMIMO::getSampleSinkFifo(unsigned int index)
|
||||
{
|
||||
if (index >= m_sampleSinkFifos.size()) {
|
||||
return nullptr;
|
||||
} else {
|
||||
return &m_sampleSinkFifos[index];
|
||||
}
|
||||
}
|
||||
|
||||
SampleSinkVector* DeviceSampleMIMO::getSampleSinkVector(unsigned int index)
|
||||
{
|
||||
if (index >= m_sampleSinkVectors.size()) {
|
||||
return nullptr;
|
||||
} else {
|
||||
return &m_sampleSinkVectors[index];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user