mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
Audio output device recording: save record file name and record silence time
This commit is contained in:
parent
4a383e439b
commit
1ca47ddcc9
@ -50,7 +50,9 @@ QDataStream& operator<<(QDataStream& ds, const AudioDeviceManager::OutputDeviceI
|
||||
<< info.udpUseRTP
|
||||
<< (int) info.udpChannelMode
|
||||
<< (int) info.udpChannelCodec
|
||||
<< info.udpDecimationFactor;
|
||||
<< info.udpDecimationFactor
|
||||
<< info.fileRecordName
|
||||
<< info.recordSilenceTime;
|
||||
return ds;
|
||||
}
|
||||
|
||||
@ -66,7 +68,9 @@ QDataStream& operator>>(QDataStream& ds, AudioDeviceManager::OutputDeviceInfo& i
|
||||
>> info.udpUseRTP
|
||||
>> intChannelMode
|
||||
>> intChannelCodec
|
||||
>> info.udpDecimationFactor;
|
||||
>> info.udpDecimationFactor
|
||||
>> info.fileRecordName
|
||||
>> info.recordSilenceTime;
|
||||
info.udpChannelMode = (AudioOutputDevice::UDPChannelMode) intChannelMode;
|
||||
info.udpChannelCodec = (AudioOutputDevice::UDPChannelCodec) intChannelCodec;
|
||||
return ds;
|
||||
|
Loading…
Reference in New Issue
Block a user