mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 21:01:45 -05:00
PluginManager::selectSampleSinkByIndex: removed useless method
This commit is contained in:
parent
ff0c2c30fd
commit
0e4820d305
@ -396,45 +396,6 @@ int PluginManager::selectSampleSourceByIndex(int index, DeviceSourceAPI *deviceA
|
|||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PluginManager::selectSampleSinkByIndex(int index, DeviceSinkAPI *deviceAPI)
|
|
||||||
{
|
|
||||||
qDebug("PluginManager::selectSampleSinkByIndex: index: %d", index);
|
|
||||||
|
|
||||||
if (m_sampleSinkDevices.count() == 0)
|
|
||||||
{
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (index < 0)
|
|
||||||
{
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (index >= m_sampleSinkDevices.count())
|
|
||||||
{
|
|
||||||
index = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
qDebug() << "PluginManager::selectSampleSinkByIndex: m_sampleSink at index " << index
|
|
||||||
<< " hid: " << m_sampleSinkDevices[index].m_hadrwareId.toStdString().c_str()
|
|
||||||
<< " id: " << m_sampleSinkDevices[index].m_deviceId.toStdString().c_str()
|
|
||||||
<< " ser: " << m_sampleSinkDevices[index].m_deviceSerial.toStdString().c_str()
|
|
||||||
<< " seq: " << m_sampleSinkDevices[index].m_deviceSequence;
|
|
||||||
|
|
||||||
deviceAPI->stopGeneration();
|
|
||||||
deviceAPI->setSampleSinkPluginInstanceUI(0); // this effectively destroys the previous GUI if it exists
|
|
||||||
|
|
||||||
// m_sampleSourcePluginGUI = pluginGUI;
|
|
||||||
deviceAPI->setSampleSinkSequence(m_sampleSinkDevices[index].m_deviceSequence);
|
|
||||||
deviceAPI->setHardwareId(m_sampleSinkDevices[index].m_hadrwareId);
|
|
||||||
deviceAPI->setSampleSinkId(m_sampleSinkDevices[index].m_deviceId);
|
|
||||||
deviceAPI->setSampleSinkSerial(m_sampleSinkDevices[index].m_deviceSerial);
|
|
||||||
deviceAPI->setSampleSinkDisplayName(m_sampleSinkDevices[index].m_displayName);
|
|
||||||
deviceAPI->setSampleSinkPluginInterface(m_sampleSinkDevices[index].m_plugin);
|
|
||||||
|
|
||||||
return index;
|
|
||||||
}
|
|
||||||
|
|
||||||
int PluginManager::selectSampleSourceBySerialOrSequence(const QString& sourceId, const QString& sourceSerial, uint32_t sourceSequence, DeviceSourceAPI *deviceAPI)
|
int PluginManager::selectSampleSourceBySerialOrSequence(const QString& sourceId, const QString& sourceSerial, uint32_t sourceSequence, DeviceSourceAPI *deviceAPI)
|
||||||
{
|
{
|
||||||
qDebug("PluginManager::selectSampleSourceBySequence by sequence: id: %s ser: %s seq: %d", qPrintable(sourceId), qPrintable(sourceSerial), sourceSequence);
|
qDebug("PluginManager::selectSampleSourceBySequence by sequence: id: %s ser: %s seq: %d", qPrintable(sourceId), qPrintable(sourceSerial), sourceSequence);
|
||||||
|
@ -65,7 +65,6 @@ public:
|
|||||||
int selectSampleSourceBySerialOrSequence(const QString& sourceId, const QString& sourceSerial, uint32_t sourceSequence, DeviceSourceAPI *deviceAPI);
|
int selectSampleSourceBySerialOrSequence(const QString& sourceId, const QString& sourceSerial, uint32_t sourceSequence, DeviceSourceAPI *deviceAPI);
|
||||||
void selectSampleSourceByDevice(void *devicePtr, DeviceSourceAPI *deviceAPI);
|
void selectSampleSourceByDevice(void *devicePtr, DeviceSourceAPI *deviceAPI);
|
||||||
|
|
||||||
int selectSampleSinkByIndex(int index, DeviceSinkAPI *deviceAPI);
|
|
||||||
int selectSampleSinkBySerialOrSequence(const QString& sinkId, const QString& sinkSerial, uint32_t sinkSequence, DeviceSinkAPI *deviceAPI);
|
int selectSampleSinkBySerialOrSequence(const QString& sinkId, const QString& sinkSerial, uint32_t sinkSequence, DeviceSinkAPI *deviceAPI);
|
||||||
void selectSampleSinkByDevice(void *devicePtr, DeviceSinkAPI *deviceAPI);
|
void selectSampleSinkByDevice(void *devicePtr, DeviceSinkAPI *deviceAPI);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user