RangeCompression
Description
A range coder for compression.
Encoding a buffer entirely filled with 0 will always take up 8 bytes. A buffer entirely filled with other values will always take up 16 bytes.
The maximum input buffer size for compression is 256 megabytes for a single call to CompressSize resp. Compress. To compress more data, split it into chunks and call the compression method sequentially for each chunk.