singleStream = 1;
cLitSize = HUF_compress1X_usingCTable(ostart+lhSize, dstCapacity-lhSize, src, srcSize, zc->hufTable);
} else {
- cLitSize = singleStream ? HUF_compress1X(ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 12)
- : HUF_compress2 (ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 12);
+ cLitSize = singleStream ? HUF_compress1X(ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 11)
+ : HUF_compress2 (ostart+lhSize, dstCapacity-lhSize, src, srcSize, 255, 11);
}
if ((cLitSize==0) | (cLitSize >= srcSize - minGain))
any dictionary ID can be used.
However, for public distribution of compressed frames,
some ranges are reserved for future use :
- - low : 1 - 32767 : reserved
- - high : >= (2^31) : reserved
+
+ - low range : 1 - 32767 : reserved
+ - high range : >= (2^31) : reserved
__Stats__ : Entropy tables, following the same format as a [compressed blocks].
They are stored in following order :
Version changes
---------------
-0.1.1 reserved dictID ranges
-0.1.0 initial release
+- 0.1.1 reserved dictID ranges
+- 0.1.0 initial release