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

CoderMixer.cpp « Common « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db626fe1dd1769245a87baf9b800e0edffc283fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// CoderMixer.cpp

#include "StdAfx.h"

#include "CoderMixer.h"

namespace NCoderMixer {

void CCoderInfo::SetCoderInfo(const UInt64 *inSize, const UInt64 *outSize)
{
  InSizeAssigned = (inSize != 0);
  if (InSizeAssigned)
    InSizeValue = *inSize;
  OutSizeAssigned = (outSize != 0);
  if (OutSizeAssigned)
    OutSizeValue = *outSize;
}

}