Clone this repo:
  1. 91e526c puffin: fix gyp file bug by Amin Hassani · 7 years ago factory-fizz-10167.B factory-scarlet-10211.B main master release-R64-10176.B stabilize-10176.13.B stabilize-10176.47.B stabilize-10176.54.B stabilize-10176.58.B stabilize-10176.65.B
  2. d4566db puffin: Guard PuffinStream agains corrupt patches. by Amin Hassani · 7 years ago firmware-fizz-10139.117.B firmware-fizz-10139.94.B firmware-fizz-10139.B
  3. b6b12a2 puffin: match the upreved bsdiff by Amin Hassani · 7 years ago
  4. cf15a1e puffin: Guard puffpatch against corrupt patches by Amin Hassani · 7 years ago factory-coral-10122.B
  5. 846d9f7 puffin: Remove dst_puff_size by Amin Hassani · 7 years ago

Puffin

Source code for Puffin: A utility for deterministic DEFLATE recompression.

TODO(ahassani): Describe the directory structure and how-tos.

Glossary

  • 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_.