SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
Public Member Functions | Private Attributes | List of all members
SWGSDRangel::SWGAudioOutputDevice Class Reference

#include <SWGAudioOutputDevice.h>

+ Inheritance diagram for SWGSDRangel::SWGAudioOutputDevice:
+ Collaboration diagram for SWGSDRangel::SWGAudioOutputDevice:

Public Member Functions

 SWGAudioOutputDevice ()
 
 SWGAudioOutputDevice (QString *json)
 
virtual ~SWGAudioOutputDevice ()
 
void init ()
 
void cleanup ()
 
virtual QString asJson () override
 
virtual QJsonObject * asJsonObject () override
 
virtual void fromJsonObject (QJsonObject &json) override
 
virtual SWGAudioOutputDevicefromJson (QString &jsonString) override
 
QString * getName ()
 
void setName (QString *name)
 
qint32 getIndex ()
 
void setIndex (qint32 index)
 
qint32 getSampleRate ()
 
void setSampleRate (qint32 sample_rate)
 
qint32 getIsSystemDefault ()
 
void setIsSystemDefault (qint32 is_system_default)
 
qint32 getDefaultUnregistered ()
 
void setDefaultUnregistered (qint32 default_unregistered)
 
qint32 getCopyToUdp ()
 
void setCopyToUdp (qint32 copy_to_udp)
 
qint32 getUdpUsesRtp ()
 
void setUdpUsesRtp (qint32 udp_uses_rtp)
 
qint32 getUdpChannelMode ()
 
void setUdpChannelMode (qint32 udp_channel_mode)
 
qint32 getUdpChannelCodec ()
 
void setUdpChannelCodec (qint32 udp_channel_codec)
 
qint32 getUdpDecimationFactor ()
 
void setUdpDecimationFactor (qint32 udp_decimation_factor)
 
QString * getUdpAddress ()
 
void setUdpAddress (QString *udp_address)
 
qint32 getUdpPort ()
 
void setUdpPort (qint32 udp_port)
 
virtual bool isSet () override
 
- Public Member Functions inherited from SWGSDRangel::SWGObject
virtual ~SWGObject ()
 

Private Attributes

QString * name
 
bool m_name_isSet
 
qint32 index
 
bool m_index_isSet
 
qint32 sample_rate
 
bool m_sample_rate_isSet
 
qint32 is_system_default
 
bool m_is_system_default_isSet
 
qint32 default_unregistered
 
bool m_default_unregistered_isSet
 
qint32 copy_to_udp
 
bool m_copy_to_udp_isSet
 
qint32 udp_uses_rtp
 
bool m_udp_uses_rtp_isSet
 
qint32 udp_channel_mode
 
bool m_udp_channel_mode_isSet
 
qint32 udp_channel_codec
 
bool m_udp_channel_codec_isSet
 
qint32 udp_decimation_factor
 
bool m_udp_decimation_factor_isSet
 
QString * udp_address
 
bool m_udp_address_isSet
 
qint32 udp_port
 
bool m_udp_port_isSet
 

Detailed Description

Definition at line 32 of file SWGAudioOutputDevice.h.

Constructor & Destructor Documentation

◆ SWGAudioOutputDevice() [1/2]

SWGSDRangel::SWGAudioOutputDevice::SWGAudioOutputDevice ( )

Definition at line 30 of file SWGAudioOutputDevice.cpp.

References copy_to_udp, default_unregistered, index, is_system_default, m_copy_to_udp_isSet, m_default_unregistered_isSet, m_index_isSet, m_is_system_default_isSet, m_name_isSet, m_sample_rate_isSet, m_udp_address_isSet, m_udp_channel_codec_isSet, m_udp_channel_mode_isSet, m_udp_decimation_factor_isSet, m_udp_port_isSet, m_udp_uses_rtp_isSet, name, sample_rate, udp_address, udp_channel_codec, udp_channel_mode, udp_decimation_factor, udp_port, and udp_uses_rtp.

30  {
31  name = nullptr;
32  m_name_isSet = false;
33  index = 0;
34  m_index_isSet = false;
35  sample_rate = 0;
36  m_sample_rate_isSet = false;
41  copy_to_udp = 0;
42  m_copy_to_udp_isSet = false;
43  udp_uses_rtp = 0;
44  m_udp_uses_rtp_isSet = false;
45  udp_channel_mode = 0;
51  udp_address = nullptr;
52  m_udp_address_isSet = false;
53  udp_port = 0;
54  m_udp_port_isSet = false;
55 }

◆ SWGAudioOutputDevice() [2/2]

SWGSDRangel::SWGAudioOutputDevice::SWGAudioOutputDevice ( QString *  json)

Definition at line 25 of file SWGAudioOutputDevice.cpp.

References fromJson(), and init().

25  {
26  init();
27  this->fromJson(*json);
28 }
virtual SWGAudioOutputDevice * fromJson(QString &jsonString) override
+ Here is the call graph for this function:

◆ ~SWGAudioOutputDevice()

SWGSDRangel::SWGAudioOutputDevice::~SWGAudioOutputDevice ( )
virtual

Definition at line 57 of file SWGAudioOutputDevice.cpp.

References cleanup().

57  {
58  this->cleanup();
59 }
+ Here is the call graph for this function:

Member Function Documentation

◆ asJson()

QString SWGSDRangel::SWGAudioOutputDevice::asJson ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 147 of file SWGAudioOutputDevice.cpp.

References asJsonObject().

Referenced by SWGSDRangel::SWGInstanceApi::instanceAudioOutputDelete(), WebAPIRequestMapper::instanceAudioOutputParametersService(), and SWGSDRangel::SWGInstanceApi::instanceAudioOutputPatch().

148 {
149  QJsonObject* obj = this->asJsonObject();
150 
151  QJsonDocument doc(*obj);
152  QByteArray bytes = doc.toJson();
153  delete obj;
154  return QString(bytes);
155 }
virtual QJsonObject * asJsonObject() override
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ asJsonObject()

QJsonObject * SWGSDRangel::SWGAudioOutputDevice::asJsonObject ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 158 of file SWGAudioOutputDevice.cpp.

References copy_to_udp, default_unregistered, index, is_system_default, m_copy_to_udp_isSet, m_default_unregistered_isSet, m_index_isSet, m_is_system_default_isSet, m_sample_rate_isSet, m_udp_channel_codec_isSet, m_udp_channel_mode_isSet, m_udp_decimation_factor_isSet, m_udp_port_isSet, m_udp_uses_rtp_isSet, name, sample_rate, SWGSDRangel::toJsonValue(), udp_address, udp_channel_codec, udp_channel_mode, udp_decimation_factor, udp_port, and udp_uses_rtp.

Referenced by asJson().

158  {
159  QJsonObject* obj = new QJsonObject();
160  if(name != nullptr && *name != QString("")){
161  toJsonValue(QString("name"), name, obj, QString("QString"));
162  }
163  if(m_index_isSet){
164  obj->insert("index", QJsonValue(index));
165  }
167  obj->insert("sampleRate", QJsonValue(sample_rate));
168  }
170  obj->insert("isSystemDefault", QJsonValue(is_system_default));
171  }
173  obj->insert("defaultUnregistered", QJsonValue(default_unregistered));
174  }
176  obj->insert("copyToUDP", QJsonValue(copy_to_udp));
177  }
179  obj->insert("udpUsesRTP", QJsonValue(udp_uses_rtp));
180  }
182  obj->insert("udpChannelMode", QJsonValue(udp_channel_mode));
183  }
185  obj->insert("udpChannelCodec", QJsonValue(udp_channel_codec));
186  }
188  obj->insert("udpDecimationFactor", QJsonValue(udp_decimation_factor));
189  }
190  if(udp_address != nullptr && *udp_address != QString("")){
191  toJsonValue(QString("udpAddress"), udp_address, obj, QString("QString"));
192  }
193  if(m_udp_port_isSet){
194  obj->insert("udpPort", QJsonValue(udp_port));
195  }
196 
197  return obj;
198 }
void toJsonValue(QString name, void *value, QJsonObject *output, QString type)
Definition: SWGHelpers.cpp:383
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ cleanup()

void SWGSDRangel::SWGAudioOutputDevice::cleanup ( )

Definition at line 90 of file SWGAudioOutputDevice.cpp.

References name, and udp_address.

Referenced by WebAPIRequestMapper::resetAudioOutputDevice(), and ~SWGAudioOutputDevice().

90  {
91  if(name != nullptr) {
92  delete name;
93  }
94 
95 
96 
97 
98 
99 
100 
101 
102 
103  if(udp_address != nullptr) {
104  delete udp_address;
105  }
106 
107 }
+ Here is the caller graph for this function:

◆ fromJson()

SWGAudioOutputDevice * SWGSDRangel::SWGAudioOutputDevice::fromJson ( QString &  jsonString)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 110 of file SWGAudioOutputDevice.cpp.

References fromJsonObject().

Referenced by SWGAudioOutputDevice().

110  {
111  QByteArray array (json.toStdString().c_str());
112  QJsonDocument doc = QJsonDocument::fromJson(array);
113  QJsonObject jsonObject = doc.object();
114  this->fromJsonObject(jsonObject);
115  return this;
116 }
virtual void fromJsonObject(QJsonObject &json) override
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fromJsonObject()

void SWGSDRangel::SWGAudioOutputDevice::fromJsonObject ( QJsonObject &  json)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 119 of file SWGAudioOutputDevice.cpp.

References copy_to_udp, default_unregistered, index, is_system_default, name, sample_rate, SWGSDRangel::setValue(), udp_address, udp_channel_codec, udp_channel_mode, udp_decimation_factor, udp_port, and udp_uses_rtp.

Referenced by fromJson().

119  {
120  ::SWGSDRangel::setValue(&name, pJson["name"], "QString", "QString");
121 
122  ::SWGSDRangel::setValue(&index, pJson["index"], "qint32", "");
123 
124  ::SWGSDRangel::setValue(&sample_rate, pJson["sampleRate"], "qint32", "");
125 
126  ::SWGSDRangel::setValue(&is_system_default, pJson["isSystemDefault"], "qint32", "");
127 
128  ::SWGSDRangel::setValue(&default_unregistered, pJson["defaultUnregistered"], "qint32", "");
129 
130  ::SWGSDRangel::setValue(&copy_to_udp, pJson["copyToUDP"], "qint32", "");
131 
132  ::SWGSDRangel::setValue(&udp_uses_rtp, pJson["udpUsesRTP"], "qint32", "");
133 
134  ::SWGSDRangel::setValue(&udp_channel_mode, pJson["udpChannelMode"], "qint32", "");
135 
136  ::SWGSDRangel::setValue(&udp_channel_codec, pJson["udpChannelCodec"], "qint32", "");
137 
138  ::SWGSDRangel::setValue(&udp_decimation_factor, pJson["udpDecimationFactor"], "qint32", "");
139 
140  ::SWGSDRangel::setValue(&udp_address, pJson["udpAddress"], "QString", "QString");
141 
142  ::SWGSDRangel::setValue(&udp_port, pJson["udpPort"], "qint32", "");
143 
144 }
void setValue(void *value, QJsonValue obj, QString type, QString complexType)
Definition: SWGHelpers.cpp:25
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getCopyToUdp()

qint32 SWGSDRangel::SWGAudioOutputDevice::getCopyToUdp ( )

Definition at line 251 of file SWGAudioOutputDevice.cpp.

References copy_to_udp.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch(), and WebAPIAdapterSrv::instanceAudioOutputPatch().

251  {
252  return copy_to_udp;
253 }
+ Here is the caller graph for this function:

◆ getDefaultUnregistered()

qint32 SWGSDRangel::SWGAudioOutputDevice::getDefaultUnregistered ( )

Definition at line 241 of file SWGAudioOutputDevice.cpp.

References default_unregistered.

241  {
242  return default_unregistered;
243 }

◆ getIndex()

qint32 SWGSDRangel::SWGAudioOutputDevice::getIndex ( )

◆ getIsSystemDefault()

qint32 SWGSDRangel::SWGAudioOutputDevice::getIsSystemDefault ( )

Definition at line 231 of file SWGAudioOutputDevice.cpp.

References is_system_default.

231  {
232  return is_system_default;
233 }

◆ getName()

QString * SWGSDRangel::SWGAudioOutputDevice::getName ( )

Definition at line 201 of file SWGAudioOutputDevice.cpp.

References name.

201  {
202  return name;
203 }

◆ getSampleRate()

qint32 SWGSDRangel::SWGAudioOutputDevice::getSampleRate ( )

Definition at line 221 of file SWGAudioOutputDevice.cpp.

References sample_rate.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch(), and WebAPIAdapterSrv::instanceAudioOutputPatch().

221  {
222  return sample_rate;
223 }
+ Here is the caller graph for this function:

◆ getUdpAddress()

QString * SWGSDRangel::SWGAudioOutputDevice::getUdpAddress ( )

◆ getUdpChannelCodec()

qint32 SWGSDRangel::SWGAudioOutputDevice::getUdpChannelCodec ( )

Definition at line 281 of file SWGAudioOutputDevice.cpp.

References udp_channel_codec.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch().

281  {
282  return udp_channel_codec;
283 }
+ Here is the caller graph for this function:

◆ getUdpChannelMode()

qint32 SWGSDRangel::SWGAudioOutputDevice::getUdpChannelMode ( )

Definition at line 271 of file SWGAudioOutputDevice.cpp.

References udp_channel_mode.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch(), and WebAPIAdapterSrv::instanceAudioOutputPatch().

271  {
272  return udp_channel_mode;
273 }
+ Here is the caller graph for this function:

◆ getUdpDecimationFactor()

qint32 SWGSDRangel::SWGAudioOutputDevice::getUdpDecimationFactor ( )

Definition at line 291 of file SWGAudioOutputDevice.cpp.

References udp_decimation_factor.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch().

291  {
292  return udp_decimation_factor;
293 }
+ Here is the caller graph for this function:

◆ getUdpPort()

qint32 SWGSDRangel::SWGAudioOutputDevice::getUdpPort ( )

Definition at line 311 of file SWGAudioOutputDevice.cpp.

References udp_port.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch(), and WebAPIAdapterSrv::instanceAudioOutputPatch().

311  {
312  return udp_port;
313 }
+ Here is the caller graph for this function:

◆ getUdpUsesRtp()

qint32 SWGSDRangel::SWGAudioOutputDevice::getUdpUsesRtp ( )

Definition at line 261 of file SWGAudioOutputDevice.cpp.

References udp_uses_rtp.

Referenced by WebAPIAdapterGUI::instanceAudioOutputPatch(), and WebAPIAdapterSrv::instanceAudioOutputPatch().

261  {
262  return udp_uses_rtp;
263 }
+ Here is the caller graph for this function:

◆ init()

void SWGSDRangel::SWGAudioOutputDevice::init ( )

Definition at line 62 of file SWGAudioOutputDevice.cpp.

References copy_to_udp, default_unregistered, index, is_system_default, m_copy_to_udp_isSet, m_default_unregistered_isSet, m_index_isSet, m_is_system_default_isSet, m_name_isSet, m_sample_rate_isSet, m_udp_address_isSet, m_udp_channel_codec_isSet, m_udp_channel_mode_isSet, m_udp_decimation_factor_isSet, m_udp_port_isSet, m_udp_uses_rtp_isSet, name, sample_rate, udp_address, udp_channel_codec, udp_channel_mode, udp_decimation_factor, udp_port, and udp_uses_rtp.

Referenced by SWGAudioOutputDevice().

62  {
63  name = new QString("");
64  m_name_isSet = false;
65  index = 0;
66  m_index_isSet = false;
67  sample_rate = 0;
68  m_sample_rate_isSet = false;
73  copy_to_udp = 0;
74  m_copy_to_udp_isSet = false;
75  udp_uses_rtp = 0;
76  m_udp_uses_rtp_isSet = false;
77  udp_channel_mode = 0;
83  udp_address = new QString("");
84  m_udp_address_isSet = false;
85  udp_port = 0;
86  m_udp_port_isSet = false;
87 }
+ Here is the caller graph for this function:

◆ isSet()

bool SWGSDRangel::SWGAudioOutputDevice::isSet ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 322 of file SWGAudioOutputDevice.cpp.

References m_copy_to_udp_isSet, m_default_unregistered_isSet, m_index_isSet, m_is_system_default_isSet, m_sample_rate_isSet, m_udp_channel_codec_isSet, m_udp_channel_mode_isSet, m_udp_decimation_factor_isSet, m_udp_port_isSet, m_udp_uses_rtp_isSet, name, and udp_address.

322  {
323  bool isObjectUpdated = false;
324  do{
325  if(name != nullptr && *name != QString("")){ isObjectUpdated = true; break;}
326  if(m_index_isSet){ isObjectUpdated = true; break;}
327  if(m_sample_rate_isSet){ isObjectUpdated = true; break;}
328  if(m_is_system_default_isSet){ isObjectUpdated = true; break;}
329  if(m_default_unregistered_isSet){ isObjectUpdated = true; break;}
330  if(m_copy_to_udp_isSet){ isObjectUpdated = true; break;}
331  if(m_udp_uses_rtp_isSet){ isObjectUpdated = true; break;}
332  if(m_udp_channel_mode_isSet){ isObjectUpdated = true; break;}
333  if(m_udp_channel_codec_isSet){ isObjectUpdated = true; break;}
334  if(m_udp_decimation_factor_isSet){ isObjectUpdated = true; break;}
335  if(udp_address != nullptr && *udp_address != QString("")){ isObjectUpdated = true; break;}
336  if(m_udp_port_isSet){ isObjectUpdated = true; break;}
337  }while(false);
338  return isObjectUpdated;
339 }

◆ setCopyToUdp()

void SWGSDRangel::SWGAudioOutputDevice::setCopyToUdp ( qint32  copy_to_udp)

◆ setDefaultUnregistered()

void SWGSDRangel::SWGAudioOutputDevice::setDefaultUnregistered ( qint32  default_unregistered)

◆ setIndex()

void SWGSDRangel::SWGAudioOutputDevice::setIndex ( qint32  index)

Definition at line 215 of file SWGAudioOutputDevice.cpp.

References index, and m_index_isSet.

Referenced by WebAPIRequestMapper::validateAudioOutputDevice().

215  {
216  this->index = index;
217  this->m_index_isSet = true;
218 }
+ Here is the caller graph for this function:

◆ setIsSystemDefault()

void SWGSDRangel::SWGAudioOutputDevice::setIsSystemDefault ( qint32  is_system_default)

◆ setName()

void SWGSDRangel::SWGAudioOutputDevice::setName ( QString *  name)

Definition at line 205 of file SWGAudioOutputDevice.cpp.

References m_name_isSet, and name.

Referenced by WebAPIRequestMapper::resetAudioOutputDevice().

205  {
206  this->name = name;
207  this->m_name_isSet = true;
208 }
+ Here is the caller graph for this function:

◆ setSampleRate()

void SWGSDRangel::SWGAudioOutputDevice::setSampleRate ( qint32  sample_rate)

◆ setUdpAddress()

void SWGSDRangel::SWGAudioOutputDevice::setUdpAddress ( QString *  udp_address)

◆ setUdpChannelCodec()

void SWGSDRangel::SWGAudioOutputDevice::setUdpChannelCodec ( qint32  udp_channel_codec)

◆ setUdpChannelMode()

void SWGSDRangel::SWGAudioOutputDevice::setUdpChannelMode ( qint32  udp_channel_mode)

◆ setUdpDecimationFactor()

void SWGSDRangel::SWGAudioOutputDevice::setUdpDecimationFactor ( qint32  udp_decimation_factor)

◆ setUdpPort()

void SWGSDRangel::SWGAudioOutputDevice::setUdpPort ( qint32  udp_port)

◆ setUdpUsesRtp()

void SWGSDRangel::SWGAudioOutputDevice::setUdpUsesRtp ( qint32  udp_uses_rtp)

Member Data Documentation

◆ copy_to_udp

qint32 SWGSDRangel::SWGAudioOutputDevice::copy_to_udp
private

◆ default_unregistered

qint32 SWGSDRangel::SWGAudioOutputDevice::default_unregistered
private

◆ index

qint32 SWGSDRangel::SWGAudioOutputDevice::index
private

◆ is_system_default

qint32 SWGSDRangel::SWGAudioOutputDevice::is_system_default
private

◆ m_copy_to_udp_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_copy_to_udp_isSet
private

Definition at line 101 of file SWGAudioOutputDevice.h.

Referenced by asJsonObject(), init(), isSet(), setCopyToUdp(), and SWGAudioOutputDevice().

◆ m_default_unregistered_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_default_unregistered_isSet
private

◆ m_index_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_index_isSet
private

Definition at line 89 of file SWGAudioOutputDevice.h.

Referenced by asJsonObject(), init(), isSet(), setIndex(), and SWGAudioOutputDevice().

◆ m_is_system_default_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_is_system_default_isSet
private

◆ m_name_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_name_isSet
private

Definition at line 86 of file SWGAudioOutputDevice.h.

Referenced by init(), setName(), and SWGAudioOutputDevice().

◆ m_sample_rate_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_sample_rate_isSet
private

Definition at line 92 of file SWGAudioOutputDevice.h.

Referenced by asJsonObject(), init(), isSet(), setSampleRate(), and SWGAudioOutputDevice().

◆ m_udp_address_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_udp_address_isSet
private

Definition at line 116 of file SWGAudioOutputDevice.h.

Referenced by init(), setUdpAddress(), and SWGAudioOutputDevice().

◆ m_udp_channel_codec_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_udp_channel_codec_isSet
private

◆ m_udp_channel_mode_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_udp_channel_mode_isSet
private

◆ m_udp_decimation_factor_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_udp_decimation_factor_isSet
private

◆ m_udp_port_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_udp_port_isSet
private

Definition at line 119 of file SWGAudioOutputDevice.h.

Referenced by asJsonObject(), init(), isSet(), setUdpPort(), and SWGAudioOutputDevice().

◆ m_udp_uses_rtp_isSet

bool SWGSDRangel::SWGAudioOutputDevice::m_udp_uses_rtp_isSet
private

◆ name

QString* SWGSDRangel::SWGAudioOutputDevice::name
private

◆ sample_rate

qint32 SWGSDRangel::SWGAudioOutputDevice::sample_rate
private

◆ udp_address

QString* SWGSDRangel::SWGAudioOutputDevice::udp_address
private

◆ udp_channel_codec

qint32 SWGSDRangel::SWGAudioOutputDevice::udp_channel_codec
private

◆ udp_channel_mode

qint32 SWGSDRangel::SWGAudioOutputDevice::udp_channel_mode
private

◆ udp_decimation_factor

qint32 SWGSDRangel::SWGAudioOutputDevice::udp_decimation_factor
private

◆ udp_port

qint32 SWGSDRangel::SWGAudioOutputDevice::udp_port
private

◆ udp_uses_rtp

qint32 SWGSDRangel::SWGAudioOutputDevice::udp_uses_rtp
private

The documentation for this class was generated from the following files: