文件名称:lzma in as3
文件大小:11KB
文件格式:RAR
更新时间:2014-12-28 18:53:28
LZMA AS FLASH 压缩算法
as3 实现的lzma解码, 从官方的java代码移植过来的。
使用例子
public static function decode(src:ByteArray) : ByteArray
{
if (src == null || src.length < 16)
{
return null;
}
var inStream:InputStream = new InputStream(src);
var propertiesSize:int = 5;
var properties:Vector.
【文件预览】:
LenDecoder.as
LiteralDecoder2.as
OutWindow.as
CRC.as
InWindow.as
InputStream.as
RangeDecoder.as
LiteralDecoder.as
Decoder.as
BitTreeDecoder.as
OutputStream.as
BinTree.as
Base.as