zenjxl-decoder 0.3.8

High performance Rust implementation of a JPEG XL decoder
Documentation
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

mod idct2d;
mod reinterpreting_dct2d;
pub mod transform;
pub mod transform_map;

mod idct16;
mod idct2;
mod idct32;
mod idct4;
mod idct8;
mod idct_large;

use idct2::*;
use idct4::*;
use idct8::*;
use idct16::*;
use idct32::*;

mod reinterpreting_dct16;
mod reinterpreting_dct2;
mod reinterpreting_dct32;
mod reinterpreting_dct4;
mod reinterpreting_dct8;

use reinterpreting_dct2::*;
use reinterpreting_dct4::*;
use reinterpreting_dct8::*;
use reinterpreting_dct16::*;
use reinterpreting_dct32::*;

pub use idct_large::*;
pub use idct2d::*;
pub use reinterpreting_dct2d::*;

#[cfg(test)]
mod tests;