Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Context 0.1: Huffman tables #454

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

Commits on Sep 17, 2019

  1. Configuration menu
    Copy the full SHA
    b55f745 View commit details
    Browse the repository at this point in the history
  2. Context 0.1: Introducing SingleLookupHuffmanTable

    This table provides best performance but may only be used reasonably for small bit
    lengths due to its memory cost. We'll implement a more space-efficient (but not
    as fast) MultiLookupHuffmanTable in a followup patch.
    Yoric committed Sep 17, 2019
    Configuration menu
    Copy the full SHA
    7e8d52f View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2019

  1. Configuration menu
    Copy the full SHA
    1cf92cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    981b5a3 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. Implementing Codebook::parse*

    Yoric committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    6ddd9cf View commit details
    Browse the repository at this point in the history
  2. Implementing Codebook::write*

    Yoric committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    4727bfd View commit details
    Browse the repository at this point in the history
  3. Key::try_new

    Yoric committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    c2f02b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b74b3fe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b3d7f4d View commit details
    Browse the repository at this point in the history