1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

SDRdaemon plugin: report LZ4 compression ratio

This commit is contained in:
f4exb
2016-02-23 18:29:08 +01:00
parent 23750b10f6
commit e5f2a49835
6 changed files with 19 additions and 7 deletions
@@ -211,7 +211,8 @@ void SDRdaemonUDPHandler::tick()
m_tv_usec,
m_sdrDaemonBuffer.isSyncLocked(),
m_sdrDaemonBuffer.getFrameSize(),
m_sdrDaemonBuffer.isLz4Compressed());
m_sdrDaemonBuffer.isLz4Compressed(),
m_sdrDaemonBuffer.getCompressionRatio());
m_outputMessageQueueToGUI->push(report);
}
}