Internal struct representing nodes of the huffman code tree.
Definition at line 119 of file huffman.inl.
Public Field Index: | |
| Node * | left |
| The left child node. | |
| Node * | right |
| The right child node. | |
| uint8_t | symbol |
Public Method Index: | |
| Node () | |
| Constructor. | |
| Node* alib::bitbuffer::ac_v1::HuffmanDecoder::Node::left |
The left child node.
Definition at line 121 of file huffman.inl.
| Node* alib::bitbuffer::ac_v1::HuffmanDecoder::Node::right |
The right child node.
Definition at line 122 of file huffman.inl.
| uint8_t alib::bitbuffer::ac_v1::HuffmanDecoder::Node::symbol |
If this is a leaf node (neither left nor right are set, then then this is the symbol found.
Definition at line 123 of file huffman.inl.
Constructor.
Definition at line 127 of file huffman.inl.