This sample demonstrates how to make run-length, Huffman, and LZ encodings.
None.
None.
When the demo is executed, the following log is displayed in debug output.
Compress demo
Runlength Coding Test
compressing... failed
compressing... done [size = 4095 bytes]
uncompressing... done
verifying... done
finished
Huffman Coding (4bit) Test
compressing... done [size = 3052 bytes]
uncompressing... done
verifying... done
finished
Huffman Coding (8bit) Test
compressing... done [size = 2708 bytes]
uncompressing... done
verifying... done
finished
LZ Coding Test
compressing... done [size = 1975 bytes]
uncompressing... done
verifying... done
finished
Compress demo finished
CONFIDENTIAL