1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-24 11:04:10 -04:00

SDRdaemon plugin: attempt to fix the skew rate calculation

This commit is contained in:
f4exb
2016-03-16 09:10:29 +01:00
parent d5f65a7e39
commit 87a53f03a2
2 changed files with 9 additions and 5 deletions
@@ -132,8 +132,9 @@ private:
bool m_autoFollowRate; //!< Auto follow stream sample rate else stick with meta data sample rate
bool m_skewTest;
bool m_skewCorrection; //!< Do a skew rate correction at next meta data reception
uint64_t m_readCount;
uint64_t m_writeCount;
int64_t m_readCount;
int64_t m_writeCount;
uint32_t m_nbCycles; //!< Number of buffer cycles since start of byte counting
};