ReadZeros() public method

public ReadZeros ( BitStreamCtx ctx ) : int
ctx BitStreamCtx
return int
コード例 #1
0
ファイル: UnaryCoding.cs プロジェクト: sadit/natix
 public int Decode(BitStream32 Buffer, BitStreamCtx ctx)
 {
     int u = Buffer.ReadZeros (ctx);
     //int u = Buffer.ReadOnes ();
     Buffer.Read (ctx);
     return u;
 }