aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/Compress/BranchCoder.cpp
blob: 6cacc66ac75a99cfa73207b7cacc3da37b200b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// BranchCoder.cpp

#include "StdAfx.h"

#include "BranchCoder.h"

STDMETHODIMP CBranchConverter::Init()
{
  _bufferPos = 0;
  SubInit();
  return S_OK;
}

STDMETHODIMP_(UInt32) CBranchConverter::Filter(Byte *data, UInt32 size)
{
  UInt32 processedSize = SubFilter(data, size);
  _bufferPos += processedSize;
  return processedSize;
}