RPNX::Compress
Self-contained C++20 compression and ZIP library
 
Loading...
Searching...
No Matches
rpnx::compression::zstandard_codec::fse_table Struct Reference

Native FSE decoding table indexed by the current decoder state. More...

#include <zstandard.hpp>

Public Attributes

std::uint8_t accuracy_log
 Base-two logarithm of the state count.
 
std::vector< fse_entryentries
 State transitions indexed by current state.
 

Detailed Description

Native FSE decoding table indexed by the current decoder state.

Definition at line 40 of file zstandard.hpp.

Member Data Documentation

◆ accuracy_log

std::uint8_t rpnx::compression::zstandard_codec::fse_table::accuracy_log

Base-two logarithm of the state count.

Definition at line 43 of file zstandard.hpp.

Referenced by rpnx::compression::zstandard_codec::decode_fse_weights(), and rpnx::compression::zstandard_codec::decompress_compressed_block().

◆ entries

std::vector< fse_entry > rpnx::compression::zstandard_codec::fse_table::entries

State transitions indexed by current state.

Definition at line 45 of file zstandard.hpp.

Referenced by rpnx::compression::zstandard_codec::decode_fse_weights(), and rpnx::compression::zstandard_codec::decompress_compressed_block().


The documentation for this struct was generated from the following file: