java 7zip压缩代码,Decoder.java

package SevenZip.Compression.RangeCoder;

import java.io.IOException;

public class Decoder

{

static final int kTopMask = ~((1 << 24) - 1);

static final int kNumBitModelTotalBits = 11;

static final int kBitModelTotal = (1 << kNumBitModelTotalBits);

static final int kNumMoveBits = 5;

int Range;

int Code;

java.io.InputStream Stream;

public final void SetStream(java.io.InputStream stream)

{

Stream = stream;

}

public final void ReleaseStream()

{

Stream = null;

}

public final void Init() throws IOException

{

Code = 0;

Range = -1;

for (int i = 0; i < 5; i++)

Code = (Code << 8) | Stream.read();

}

public final int DecodeDirectBits(int numTotalBits) throws IOException

{

int result = 0;

for (int i = numTotalBits; i != 0; i--)

{

Range >>>= 1;

int t = ((Code - Range) >>> 31);

Code -= Range & (t - 1);

result = (result << 1) | (1 - t);

if ((Range & kTopMask) == 0)

{

Code = (Code << 8) | Stream.read();

Range <<= 8;

}

}

return result;

}

public int DecodeBit(short []probs, int index) throws IOException

{

int prob = probs[index];

int newBound = (Range >>> kNumBitModelTotalBits) * prob;

if ((Code ^ 0x80000000) < (newBound ^ 0x80000000))

{

Range = newBound;

probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits));

if ((Range & kTopMask) == 0)

{

Code = (Code << 8) | Stream.read();

Range <<= 8;

}

return 0;

}

else

{

Range -= newBound;

Code -= newBound;

probs[index] = (short)(prob - ((prob) >>> kNumMoveBits));

if ((Range & kTopMask) == 0)

{

Code = (Code << 8) | Stream.read();

Range <<= 8;

}

return 1;

}

}

public static void InitBitModels(short []probs)

{

for (int i = 0; i < probs.length; i++)

probs[i] = (kBitModelTotal >>> 1);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值