tudocomp
– The TU Dortmund Compression Framework
|
Base for data decoders. More...
#include <Coder.hpp>
Public Member Functions | |
Decoder (Env &&env, std::shared_ptr< BitIStream > in) | |
Constructor. More... | |
Decoder (Env &&env, Input &in) | |
Convenience constructor. More... | |
bool | eof () const |
Tests whether the end of the bit input stream has been reached. More... | |
template<typename value_t > | |
value_t | decode (const Range &r) |
Decodes an arbitrary-range integer value. More... | |
template<typename value_t > | |
value_t | decode (const BitRange &r) |
Decodes a bit. More... | |
const std::shared_ptr< BitIStream > & | stream () |
Public Member Functions inherited from tdc::Algorithm | |
virtual | ~Algorithm ()=default |
Algorithm (Algorithm const &)=default | |
Algorithm (Algorithm &&)=default | |
Algorithm & | operator= (Algorithm const &)=default |
Algorithm & | operator= (Algorithm &&)=default |
Algorithm (Env &&env) | |
Instantiates an algorithm in the specified environment. More... | |
Env & | env () |
Provides access to the environment that the algorithm works in. More... | |
const Env & | env () const |
Protected Attributes | |
std::shared_ptr< BitIStream > | m_in |
The underlying bit input stream. More... | |
Base for data decoders.
Used for decoding integer values from a certain bit representation.
|
inline |
|
inline |
Decodes an arbitrary-range integer value.
This default implementation computes the amount of bits required to store an integer value of the given range and reads its binary representation from the input.
value_t | The return value type. |
r | The value range. |
|
inline |
|
inline |
|
inline |
|
protected |