SDRdaemonFEC support. removed useless data and method

This commit is contained in:
f4exb 2016-07-07 02:43:09 +02:00
parent 110d7cae46
commit ddb65d2e70
2 changed files with 0 additions and 13 deletions

View File

@ -50,17 +50,6 @@ SDRdaemonFECBuffer::~SDRdaemonFECBuffer()
}
}
void SDRdaemonFECBuffer::initDecoderSlotsAddresses()
{
for (int i = 0; i < nbDecoderSlots; i++)
{
for (int j = 0; j < m_nbOriginalBlocks - 1; j++)
{
m_decoderSlots[i].m_originalBlockPtrs[j] = &m_frames[i].m_blocks[j];
}
}
}
void SDRdaemonFECBuffer::initDecodeAllSlots()
{
for (int i = 0; i < nbDecoderSlots; i++)

View File

@ -146,7 +146,6 @@ private:
struct DecoderSlot
{
ProtectedBlockZero m_blockZero;
ProtectedBlock* m_originalBlockPtrs[m_nbOriginalBlocks];
ProtectedBlock m_recoveryBlocks[m_nbOriginalBlocks]; // max size
cm256_block m_cm256DescriptorBlocks[m_nbOriginalBlocks];
int m_blockCount; //!< total number of blocks received for this frame
@ -175,7 +174,6 @@ private:
float m_bufferLenSec;
void initDecoderSlotsAddresses();
void initDecodeAllSlots();
void initReadIndex();
void checkSlotData(int slotIndex);