commit | 7aaa6229a730e59ccbada0c35ff66effe4e7a63b | [log] [tgz] |
---|---|---|
author | Amin Hassani <ahassani@google.com> | Fri Feb 23 18:12:57 2018 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Fri Feb 23 18:12:57 2018 +0000 |
tree | 6eae1775b7c95cad0f042f62d1baf067bf2dd8ce | |
parent | c5bb30af43878e62cc2c653c193626503a1ff3b7 [diff] | |
parent | d87fbb6ae34048bbf432bf4d41878e1bdd320e28 [diff] |
Fix a bug in PuffinStream am: 06c3d5304f am: d87fbb6ae3 Change-Id: Ica7c0fea6f938eb4860445a0cf4f770b2e85670b
Source code for Puffin: A utility for deterministic DEFLATE recompression.
TODO(ahassani): Describe the directory structure and how-tos.
Alphabet A value that occurs in the input stream. It can be either a literal:[0..255], and end of block sign [256], a length[257..285], or a distance [0..29].
Huffman code A variable length code representing the Huffman encoded of an alphabet. Huffman codes can be created uniquely using Huffman code length array.
Huffman code array An array which an array index identifies a Huffman code and the array element in that index represents the corresponding alphabet. Throughout the code, Huffman code arrays are identified by vectors with postfix hcodes_
.
Huffman reverse code array An array which an array index identifies an alphabet and the array element in that index contains the Huffman code of the alphabet. Throughout the code, The Huffman reverse code arrays are identified by vectors with postfix rcodes_
.
Huffman code length The number of bits in a Huffman code.
Huffman code length array An array of Huffman code lengths with the array index as the alphabet. Throughout the code, Huffman code length arrays are identified by vectors with postfix lens_
.