Start on the convolution FEC.

This commit is contained in:
Jonathan Naylor
2020-10-18 22:23:18 +01:00
parent c549cf3594
commit 5b57557a79
7 changed files with 298 additions and 65 deletions

View File

@@ -22,17 +22,6 @@
#include <cassert>
CM17LICH::CM17LICH(const CM17LICH& lich) :
m_lich(NULL),
m_valid(false)
{
m_lich = new unsigned char[30U];
::memcpy(m_lich, lich.m_lich, 30U);
m_valid = lich.m_valid;
}
CM17LICH::CM17LICH() :
m_lich(NULL),
m_valid(false)