1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-08-21 05:26:34 -04:00
sdrangel/plugins/channeltx/moddatv/dvb-s2/dvb2_scrambler.cpp
2021-03-31 16:41:42 +01:00

24 lines
421 B
C++

#include "DVB2.h"
void DVB2::init_bb_randomiser(void)
{
int sr = 0x4A80;
for( int i = 0; i < FRAME_SIZE_NORMAL; i++ )
{
int b = ((sr)^(sr>>1))&1;
m_bb_randomise[i] = b;
sr >>= 1;
if( b ) sr |= 0x4000;
}
}
//
// Randomise the data bits
//
void DVB2::bb_randomise(void)
{
for( int i = 0; i < m_format[0].kbch; i++ )
{
m_frame[i] ^= m_bb_randomise[i];
}
}