michael@0: // x86.cpp michael@0: michael@0: #include "StdAfx.h" michael@0: #include "x86.h" michael@0: michael@0: #include "Windows/Defs.h" michael@0: michael@0: #include "BranchX86.c" michael@0: michael@0: UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size) michael@0: { michael@0: return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 1); michael@0: } michael@0: michael@0: UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size) michael@0: { michael@0: return ::x86_Convert(data, size, _bufferPos, &_prevMask, &_prevPos, 0); michael@0: }