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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user