changeset 13904 | 99b265e0d1d0 |
parent 13903 | 5f819b90d479 |
child 13905 | b172a5d40eee |
13903:5f819b90d479 | 13904:99b265e0d1d0 |
---|---|
1 // PPC.cpp |
|
2 |
|
3 #include "StdAfx.h" |
|
4 #include "PPC.h" |
|
5 |
|
6 extern "C" |
|
7 { |
|
8 #include "../../../../C/Compress/Branch/BranchPPC.h" |
|
9 } |
|
10 |
|
11 UInt32 CBC_PPC_B_Encoder::SubFilter(Byte *data, UInt32 size) |
|
12 { |
|
13 return ::PPC_B_Convert(data, size, _bufferPos, 1); |
|
14 } |
|
15 |
|
16 UInt32 CBC_PPC_B_Decoder::SubFilter(Byte *data, UInt32 size) |
|
17 { |
|
18 return ::PPC_B_Convert(data, size, _bufferPos, 0); |
|
19 } |