j2k-cuda-runtime 0.7.2

CUDA codec engine and Driver API runtime for j2k device adapters
Documentation
// SPDX-License-Identifier: MIT OR Apache-2.0

#[cfg(test)]
mod abi_tests;
mod dwt;
mod launch;
mod preprocess;
mod quantization;
mod readback;
#[cfg(test)]
mod structure_tests;
mod types;
mod validation;
#[cfg(test)]
mod validation_tests;

use self::types::J2kStridedDeinterleaveLaunch;
pub use self::types::{
    CudaDwt53LevelShape, CudaDwt53Output, CudaDwt97BatchStageTimings, CudaDwt97Output,
    CudaJ2kDeinterleavedComponents, CudaJ2kQuantizeJob, CudaJ2kQuantizeSubbandRegionJob,
    CudaJ2kQuantizedSubband, CudaJ2kResidentComponents, CudaJ2kResidentQuantizedSubband,
    CudaResidentDwt53Output, CudaResidentDwt97Output,
};
pub(crate) use self::{
    types::{CudaDwt53LevelPass, CudaDwt53Pass},
    validation::{validate_encode_buffer_context, validate_quantize_region},
};