1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

SDRdaemonSinkOutput: removed unused attributes

This commit is contained in:
f4exb 2018-09-04 14:00:42 +02:00
parent 4a06cc94a0
commit 5cf060f4d6
2 changed files with 0 additions and 6 deletions

View File

@ -55,8 +55,6 @@ SDRdaemonSinkOutput::SDRdaemonSinkOutput(DeviceSinkAPI *deviceAPI) :
m_tickMultiplier(20),
m_lastRemoteSampleCount(0),
m_lastSampleCount(0),
m_lastRemoteTimestampUs(0),
m_lastTimestampUs(0),
m_lastRemoteTimestampRateCorrection(0),
m_lastTimestampRateCorrection(0),
m_nbRemoteSamplesSinceRateCorrection(0),
@ -569,8 +567,6 @@ void SDRdaemonSinkOutput::analyzeApiReply(const QJsonObject& jsonObject)
m_lastRemoteSampleCount = remoteSampleCount;
m_lastSampleCount = sampleCount;
m_lastRemoteTimestampUs = remoteTimestampUs; // TODO: remove
m_lastTimestampUs = timestampUs; // TODO: remove
}
}

View File

@ -180,8 +180,6 @@ private:
uint32_t m_lastRemoteSampleCount;
uint32_t m_lastSampleCount;
uint64_t m_lastRemoteTimestampUs;
uint64_t m_lastTimestampUs;
uint64_t m_lastRemoteTimestampRateCorrection;
uint64_t m_lastTimestampRateCorrection;
uint32_t m_nbRemoteSamplesSinceRateCorrection;