blob: 197a8e581153b261b7873b8b0b068ae0d9cee33a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// PPC.cpp
#include "StdAfx.h"
#include "PPC.h"
#include "Windows/Defs.h"
#include "BranchPPC.c"
UInt32 CBC_PPC_B_Encoder::SubFilter(Byte *data, UInt32 size)
{
return ::PPC_B_Convert(data, size, _bufferPos, 1);
}
UInt32 CBC_PPC_B_Decoder::SubFilter(Byte *data, UInt32 size)
{
return ::PPC_B_Convert(data, size, _bufferPos, 0);
}
|