Files
easy7zip/CPP/7zip/Compress/BcjCoder.cpp
Igor Pavlov 3a524e5ba2 4.63
2016-05-28 00:15:58 +01:00

16 lines
332 B
C++
Executable File

// BcjCoder.cpp
#include "StdAfx.h"
#include "BcjCoder.h"
UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
{
return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
}
UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
{
return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
}