HikoGUI
Select Version: ⚠️ This documents the main development branch of HikoGUI. It might differ from release versions.
A low latency retained GUI
|
Public Member Functions | |
void | add (int symbol, int code, int code_length) noexcept |
Add a symbol to the huffman_tree. | |
state_t | start () const noexcept |
int | get (bool code_bit, state_t &state) const |
Get a symbol from the huffman-tree. | |
std::size_t | get_symbol (std::span< std::byte const > bytes, std::size_t &bit_offset) const noexcept |
Static Public Member Functions | |
static huffman_tree | from_lengths (uint8_t const *lengths, std::size_t nr_symbols) |
Build a canonical-huffman table from a set of lengths. | |
static huffman_tree | from_lengths (std::vector< uint8_t > const &lengths) |
|
inlinenoexcept |
Add a symbol to the huffman_tree.
|
inlinestatic |
Build a canonical-huffman table from a set of lengths.
|
inline |
Get a symbol from the huffman-tree.
Before get()
is called use start()
to create a state to pass between invocations. State is invalid after get()
returns a symbol or throws.
code_bit | The next bit from the huffman encoded stream. |
state | The state carried between invocations |
parse-error | on invalid code-bit sequence. |