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

SDRdaemonFEC plugin: cleanup and readme updates

This commit is contained in:
f4exb
2016-07-26 23:36:59 +02:00
parent 8b82547b86
commit 72fe72a529
6 changed files with 23 additions and 126 deletions
@@ -139,8 +139,6 @@ public:
int32_t val = (m_wrDeltaEstimate * 100) / (int32_t) m_framesNbBytes;
int32_t ret = val < 0 ? -val - 50 : 50 -val;
int32_t rp = (m_readIndex * 100) / (int32_t) m_framesNbBytes;
//qDebug() << "getBufferLengthInSecs: " << val << ":" << ret << ":" << rp;
// conversion: [-100:-50[ : read leads (+) / [-50:0[ : read lags (-) / [0:50[ : read leads (+) / [50:100{ : read lags (-)
return ret;
}
else