p7zip-rar/CPP/7zip/Compress/BitlDecoder.cpp
2017-10-11 12:40:22 +02:00

25 lines
446 B
C++

// BitlDecoder.cpp
#include "StdAfx.h"
#include "BitlDecoder.h"
namespace NBitl {
Byte kInvertTable[256];
struct CInverterTableInitializer
{
CInverterTableInitializer()
{
for (unsigned i = 0; i < 256; i++)
{
unsigned x = ((i & 0x55) << 1) | ((i & 0xAA) >> 1);
x = ((x & 0x33) << 2) | ((x & 0xCC) >> 2);
kInvertTable[i] = (Byte)(((x & 0x0F) << 4) | ((x & 0xF0) >> 4));
}
}
} g_InverterTableInitializer;
}