public void Create(int paramInt) { while (this.m_NumPosStates < paramInt) { this.m_LowCoder[this.m_NumPosStates] = new BitTreeDecoder(3); this.m_MidCoder[this.m_NumPosStates] = new BitTreeDecoder(3); this.m_NumPosStates = (1 + this.m_NumPosStates); } }
public void Create (int numPosStates) { for (; m_NumPosStates < numPosStates; m_NumPosStates++) { m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits); m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits); } }
public Decoder () { for (int i = 0; i < Base.kNumLenToPosStates; i++) m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits); }
public void Create(int numPosStates) { for (; m_NumPosStates < numPosStates; m_NumPosStates++) { m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits); m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits); } }
public Decoder() { for (int i = 0; i < Base.kNumLenToPosStates; i++) m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits); }
public Decoder() { for (int i = 0; i < 4; i++) this.m_PosSlotDecoder[i] = new BitTreeDecoder(6); }