Expand description
This crate provides Decoder
, an entropy decoder, implemented as specified in the JPEG XL
specification.
This also provides read_permutation
and read_clusters
, which are used in some parts of
the specification.
Structs§
- Decoder
- An entropy decoder.
- Decoder
NoLz77 - An entropy decoder without LZ77.
- Decoder
RleMode - An entropy decoder in RLE mode.
- Decoder
With Lz77 - A LZ77-enabled entropy decoder.
Enums§
- Error
- The error type for JPEG XL entropy decoders.
- RleToken
- Decoded token from an entropy decoder in RLE mode.
Functions§
- read_
clusters - Read a distribution clustering from the bitstream.
- read_
permutation - Read a permutation from the entropy encoded stream.
Type Aliases§
- Coding
Result - Shorthand for result type of entropy decoding.