SevenZip.Compression.RangeCoder.Decoder.Decode C# (CSharp) Méthode

Decode() public méthode

public Decode ( uint start, uint size, uint total ) : void
start uint
size uint
total uint
Résultat void
        public void Decode(uint start, uint size, uint total)
        {
            Code -= start * Range;
            Range *= size;
            Normalize();
        }