Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ARM.cpp « Branch « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bd5e1830c9456a1af9721ed1302717573c68b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ARM.cpp

#include "StdAfx.h"
#include "ARM.h"

#include "BranchARM.c"

UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size)
{
  return ::ARM_Convert(data, size, _bufferPos, 1);
}

UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size)
{
  return ::ARM_Convert(data, size, _bufferPos, 0);
}