Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // BranchCoder.cpp
3 #include "StdAfx.h"
4 #include "BranchCoder.h"
6 STDMETHODIMP CBranchConverter::Init()
7 {
8 _bufferPos = 0;
9 SubInit();
10 return S_OK;
11 }
13 STDMETHODIMP_(UInt32) CBranchConverter::Filter(Byte *data, UInt32 size)
14 {
15 UInt32 processedSize = SubFilter(data, size);
16 _bufferPos += processedSize;
17 return processedSize;
18 }