mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 12:24:08 -06:00
4.63
This commit is contained in:
committed by
Kornel Lesiński
parent
c1f1243a70
commit
3a524e5ba2
Executable
+15
@@ -0,0 +1,15 @@
|
||||
// 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);
|
||||
}
|
||||
Reference in New Issue
Block a user