chore: initial commit (extracted from Launchers monorepo)
Plugin: ns7zip v2.0.0 Architectures: x86-ansi, x86-unicode, amd64-unicode License: LGPL-2.1-or-later
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
// 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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user