j2k-transcode-metal 0.7.0

Metal acceleration for JPEG-to-HTJ2K coefficient-domain transcode stages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Scalar-derived wavelet projection weight rows for Metal kernels.

mod budget;
mod dense;
mod error;
mod shared;
mod sparse;
mod symbolic;
mod transform;

pub use dense::{Dwt53WeightRows, Dwt97WeightRows};
pub use error::SparseWeightRowsError;
pub use sparse::{SparseDwt53WeightRows, SparseDwt97WeightRows, SparseWeightRow, SparseWeightTap};

#[cfg(test)]
mod tests;