mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-23 18:52:28 -04:00
BFM demod: removed UDP/RTP copy audio entirely
This commit is contained in:
parent
289318beaa
commit
3b882e78b4
@ -21,7 +21,6 @@
|
|||||||
#include <complex.h>
|
#include <complex.h>
|
||||||
|
|
||||||
#include "audio/audiooutput.h"
|
#include "audio/audiooutput.h"
|
||||||
#include "audio/audionetsink.h"
|
|
||||||
#include "dsp/dspengine.h"
|
#include "dsp/dspengine.h"
|
||||||
#include "dsp/downchannelizer.h"
|
#include "dsp/downchannelizer.h"
|
||||||
#include "dsp/threadedbasebandsamplesink.h"
|
#include "dsp/threadedbasebandsamplesink.h"
|
||||||
@ -451,8 +450,6 @@ void BFMDemod::applySettings(const BFMDemodSettings& settings, bool force)
|
|||||||
<< " m_lsbStereo: " << settings.m_lsbStereo
|
<< " m_lsbStereo: " << settings.m_lsbStereo
|
||||||
<< " m_showPilot: " << settings.m_showPilot
|
<< " m_showPilot: " << settings.m_showPilot
|
||||||
<< " m_rdsActive: " << settings.m_rdsActive
|
<< " m_rdsActive: " << settings.m_rdsActive
|
||||||
<< " m_udpAddress: " << settings.m_udpAddress
|
|
||||||
<< " m_udpPort: " << settings.m_udpPort
|
|
||||||
<< " m_audioDeviceName: " << settings.m_audioDeviceName
|
<< " m_audioDeviceName: " << settings.m_audioDeviceName
|
||||||
<< " force: " << force;
|
<< " force: " << force;
|
||||||
|
|
||||||
|
@ -307,8 +307,6 @@ void BFMDemodGUI::onMenuDialogCalled(const QPoint &p)
|
|||||||
dialog.exec();
|
dialog.exec();
|
||||||
|
|
||||||
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
||||||
m_settings.m_udpAddress = m_channelMarker.getUDPAddress(),
|
|
||||||
m_settings.m_udpPort = m_channelMarker.getUDPSendPort(),
|
|
||||||
m_settings.m_rgbColor = m_channelMarker.getColor().rgb();
|
m_settings.m_rgbColor = m_channelMarker.getColor().rgb();
|
||||||
m_settings.m_title = m_channelMarker.getTitle();
|
m_settings.m_title = m_channelMarker.getTitle();
|
||||||
|
|
||||||
|
@ -45,8 +45,6 @@ void BFMDemodSettings::resetToDefaults()
|
|||||||
m_lsbStereo = false;
|
m_lsbStereo = false;
|
||||||
m_showPilot = false;
|
m_showPilot = false;
|
||||||
m_rdsActive = false;
|
m_rdsActive = false;
|
||||||
m_udpAddress = "127.0.0.1";
|
|
||||||
m_udpPort = 9999;
|
|
||||||
m_rgbColor = QColor(80, 120, 228).rgb();
|
m_rgbColor = QColor(80, 120, 228).rgb();
|
||||||
m_title = "Broadcast FM Demod";
|
m_title = "Broadcast FM Demod";
|
||||||
m_audioDeviceName = AudioDeviceManager::m_defaultDeviceName;
|
m_audioDeviceName = AudioDeviceManager::m_defaultDeviceName;
|
||||||
|
@ -32,8 +32,6 @@ struct BFMDemodSettings
|
|||||||
bool m_lsbStereo;
|
bool m_lsbStereo;
|
||||||
bool m_showPilot;
|
bool m_showPilot;
|
||||||
bool m_rdsActive;
|
bool m_rdsActive;
|
||||||
QString m_udpAddress;
|
|
||||||
quint16 m_udpPort;
|
|
||||||
quint32 m_rgbColor;
|
quint32 m_rgbColor;
|
||||||
QString m_title;
|
QString m_title;
|
||||||
QString m_audioDeviceName;
|
QString m_audioDeviceName;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user