1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-17 05:08:54 -04:00

File Input: fixed wrong times display on file seek when sample count exceeds int limit (use of int64 and uint64)

This commit is contained in:
f4exb
2018-10-12 17:05:03 +02:00
parent a7b954dbf8
commit 678af4e186
9 changed files with 41 additions and 42 deletions
@@ -65,9 +65,9 @@ private:
int m_sampleRate;
quint32 m_sampleSize;
quint64 m_centerFrequency;
quint32 m_recordLength;
std::time_t m_startingTimeStamp;
int m_samplesCount;
quint64 m_recordLength;
quint64 m_startingTimeStamp;
quint64 m_samplesCount;
std::size_t m_tickCount;
bool m_enableNavTime;
int m_deviceSampleRate;