mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-26 09:48:45 -05:00
aaroniartsainput: Starting with build 12830 the stream header will contain the field 'sampleFrequency' for accurate bw calculation
This commit is contained in:
parent
c09f404d27
commit
5337cf3cf8
@ -311,7 +311,7 @@ void AaroniaRTSAInputWorker::onReadyRead()
|
||||
// qDebug() << jdoc.toJson();
|
||||
quint64 endFreq = jdoc["endFrequency"].toDouble();
|
||||
quint64 startFreq = jdoc["startFrequency"].toDouble();
|
||||
int bw = endFreq - startFreq;
|
||||
int bw = jdoc["sampleFrequency"].toInt();
|
||||
quint64 midFreq = (endFreq + startFreq) / 2;
|
||||
|
||||
if ((bw != m_sampleRate) || (midFreq != m_centerFrequency))
|
||||
|
Loading…
Reference in New Issue
Block a user