V/D 2 FEC reconstruction seems to work -- enable it.

This commit is contained in:
Mathias Weyland 2016-04-21 21:25:28 +02:00
parent 3fa480b047
commit b42d20d08e
1 changed files with 2 additions and 2 deletions

View File

@ -417,8 +417,8 @@ void CYSFPayload::decodeVDMode2(unsigned char fn)
// Interleave // Interleave
for(unsigned int i = 0U; i < 104U; i++) { for(unsigned int i = 0U; i < 104U; i++) {
unsigned int n = INTERLEAVE_TABLE_26_4[i]; unsigned int n = INTERLEAVE_TABLE_26_4[i];
bool s = READ_BIT1(m_data, i); bool s = READ_BIT1(vch, i);
//WRITE_BIT1(m_data, offset+n, s); WRITE_BIT1(m_data, offset+n, s);
} }
} }
} }