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

Fixed -Wuninitialized warnings

This commit is contained in:
f4exb
2020-11-14 22:40:22 +01:00
parent 9bd8e9c34e
commit 142b8c997a
2 changed files with 2 additions and 2 deletions
@@ -28,7 +28,6 @@
RemoteInputBuffer::RemoteInputBuffer() :
m_decoderSlots(nullptr),
m_frames(nullptr),
m_decoderIndexHead(m_nbDecoderSlots/2),
m_curNbBlocks(0),
m_minNbBlocks(256),
m_curOriginalBlocks(0),
@@ -47,6 +46,7 @@ RemoteInputBuffer::RemoteInputBuffer() :
{
m_currentMeta.init();
setNbDecoderSlots(16);
m_decoderIndexHead = m_nbDecoderSlots/2;
m_tvOut_sec = 0;
m_tvOut_usec = 0;
m_readNbBytes = 1;