changeset 12218 | bb5522e88ab2 |
12217:ea891871f481 | 12218:bb5522e88ab2 |
---|---|
1 // ARM.cpp |
|
2 |
|
3 #include "StdAfx.h" |
|
4 #include "ARM.h" |
|
5 |
|
6 extern "C" |
|
7 { |
|
8 #include "../../../../C/Compress/Branch/BranchARM.h" |
|
9 } |
|
10 |
|
11 UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size) |
|
12 { |
|
13 return ::ARM_Convert(data, size, _bufferPos, 1); |
|
14 } |
|
15 |
|
16 UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size) |
|
17 { |
|
18 return ::ARM_Convert(data, size, _bufferPos, 0); |
|
19 } |