commit | 957b866bc4a15c2e73975a26710d81e5d7163857 | [log] [tgz] |
---|---|---|
author | Amin Hassani <ahassani@google.com> | Fri Oct 12 12:51:52 2018 -0700 |
committer | Amin Hassani <ahassani@google.com> | Fri Oct 19 10:53:15 2018 -0700 |
tree | 38ea516577da057fb423c69fa98d17fcb0d053d8 | |
parent | e202288746d3517d8abcfae0ed11c000e96cc3b0 [diff] |
puffin: Fix .pc files Uprev the version to 1.0.0 as it is in README.version Add proper library dependencies (libbsdiff and libbspatch) Bug: crbug.com/891899 Test: sudo FEATURES=test emerge puffin update_engine Change-Id: I1ca8fb048117355e468157bc6f78cd375543c053
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_
.