mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 09:18:54 -05:00
Compare commits
4 Commits
5c7313639a
...
c051a707b8
Author | SHA1 | Date | |
---|---|---|---|
|
c051a707b8 | ||
|
6b2573d955 | ||
|
72683aea57 | ||
|
efd98785cf |
@ -268,7 +268,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>AF volume limter gain (dB)</string>
|
<string>AF volume limiter gain (dB)</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimum">
|
<property name="minimum">
|
||||||
<number>-80</number>
|
<number>-80</number>
|
||||||
|
@ -513,7 +513,7 @@ WDSPRxGUI::WDSPRxGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
|||||||
m_squelchDialog(nullptr)
|
m_squelchDialog(nullptr)
|
||||||
{
|
{
|
||||||
setAttribute(Qt::WA_DeleteOnClose, true);
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
||||||
m_helpURL = "plugins/channelrx/demodssb/readme.md";
|
m_helpURL = "plugins/channelrx/wdsprx/readme.md";
|
||||||
RollupContents *rollupContents = getRollupContents();
|
RollupContents *rollupContents = getRollupContents();
|
||||||
ui->setupUi(rollupContents);
|
ui->setupUi(rollupContents);
|
||||||
setSizePolicy(rollupContents->sizePolicy());
|
setSizePolicy(rollupContents->sizePolicy());
|
||||||
|
@ -217,7 +217,6 @@ void AudioOutput::applySettings(const AudioOutputSettings& settings, const QList
|
|||||||
m_audioDeviceIndex = audioDeviceManager->getOutputDeviceIndex(settings.m_deviceName);
|
m_audioDeviceIndex = audioDeviceManager->getOutputDeviceIndex(settings.m_deviceName);
|
||||||
//qDebug("AMDemod::applySettings: audioDeviceName: %s audioDeviceIndex: %d", qPrintable(settings.m_audioDeviceName), audioDeviceIndex);
|
//qDebug("AMDemod::applySettings: audioDeviceName: %s audioDeviceIndex: %d", qPrintable(settings.m_audioDeviceName), audioDeviceIndex);
|
||||||
audioDeviceManager->removeAudioSink(&m_audioFifo);
|
audioDeviceManager->removeAudioSink(&m_audioFifo);
|
||||||
audioDeviceManager->addAudioSink(&m_audioFifo, getInputMessageQueue(), m_audioDeviceIndex);
|
|
||||||
m_sampleRate = audioDeviceManager->getOutputSampleRate(m_audioDeviceIndex);
|
m_sampleRate = audioDeviceManager->getOutputSampleRate(m_audioDeviceIndex);
|
||||||
forwardChange = true;
|
forwardChange = true;
|
||||||
}
|
}
|
||||||
|
@ -250,7 +250,6 @@ void AudioInput::applySettings(const AudioInputSettings& settings, QList<QString
|
|||||||
}
|
}
|
||||||
|
|
||||||
audioDeviceManager->removeAudioSource(&m_fifo);
|
audioDeviceManager->removeAudioSource(&m_fifo);
|
||||||
audioDeviceManager->addAudioSource(&m_fifo, getInputMessageQueue(), m_audioDeviceIndex);
|
|
||||||
m_sampleRate = audioDeviceManager->getInputSampleRate(m_audioDeviceIndex);
|
m_sampleRate = audioDeviceManager->getInputSampleRate(m_audioDeviceIndex);
|
||||||
qDebug("AudioInput::applySettings: audioDeviceName: %s audioDeviceIndex: %d sampleRate: %d",
|
qDebug("AudioInput::applySettings: audioDeviceName: %s audioDeviceIndex: %d sampleRate: %d",
|
||||||
qPrintable(settings.m_deviceName), m_audioDeviceIndex, m_sampleRate);
|
qPrintable(settings.m_deviceName), m_audioDeviceIndex, m_sampleRate);
|
||||||
|
Loading…
Reference in New Issue
Block a user