x86.cpp 321 B

1234567891011121314
  1. // x86.cpp
  2. #include "StdAfx.h"
  3. #include "x86.h"
  4. UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
  5. {
  6. return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
  7. }
  8. UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
  9. {
  10. return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
  11. }