您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
644 B
22 行
644 B
namespace NetworkCompression
|
|
{
|
|
public interface IInputStream
|
|
{
|
|
void Initialize(NetworkCompressionModel model, byte[] buffer, int bufferOffset);
|
|
|
|
uint ReadRawBits(int numbits);
|
|
void ReadRawBytes(byte[] dstBuffer, int dstIndex, int count);
|
|
|
|
void SkipRawBits(int numbits);
|
|
void SkipRawBytes(int count);
|
|
|
|
|
|
uint ReadPackedNibble(int context);
|
|
uint ReadPackedUInt(int context);
|
|
int ReadPackedIntDelta(int baseline, int context);
|
|
uint ReadPackedUIntDelta(uint baseline, int context);
|
|
|
|
int GetBitPosition2();
|
|
NetworkCompressionModel GetModel();
|
|
}
|
|
}
|