Home
last modified time | relevance | path

Searched defs:BitDecoder (Results 1 – 1 of 1) sorted by relevance

/external/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoderBit.cs71 struct BitDecoder struct
73 public const int kNumBitModelTotalBits = 11;
74 public const uint kBitModelTotal = (1 << kNumBitModelTotalBits);
75 const int kNumMoveBits = 5;
77 uint Prob;
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel()
87 public void Init() { Prob = kBitModelTotal >> 1; } in Init()
89 public uint Decode(RangeCoder.Decoder rangeDecoder) in Decode()