Crate jxl_coding

Source
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.
DecoderNoLz77
An entropy decoder without LZ77.
DecoderRleMode
An entropy decoder in RLE mode.
DecoderWithLz77
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§

CodingResult
Shorthand for result type of entropy decoding.