jxl_vardct/
lib.rs

1//! This crate provides types related to representation of VarDCT frames, such as
2//! [varblock transform types][TransformType], [LF images][LfCoeff],
3//! [dequantization matrices][DequantMatrixSet] and [HF coefficients][write_hf_coeff].
4//!
5//! Actual decoding (dequantization and rendering) of such frames is not done in this crate.
6mod dct_select;
7mod dequant;
8mod error;
9mod hf_coeff;
10mod hf_metadata;
11mod hf_pass;
12mod lf;
13
14pub use dct_select::TransformType;
15pub use dequant::*;
16pub use error::{Error, Result};
17pub use hf_coeff::*;
18pub use hf_metadata::*;
19pub use hf_pass::*;
20pub use lf::*;