openjph-core 0.1.0

HTJ2K (JPEG 2000 Part 15) codec library — pure Rust port of OpenJPH
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! SIMD-accelerated transform routines.
//!
//! Platform-specific modules are gated behind `cfg(target_arch)` so the crate
//! compiles on any target while only pulling in intrinsics for the host.

#[cfg(target_arch = "aarch64")]
pub(crate) mod neon;

#[cfg(target_arch = "aarch64")]
pub(crate) mod neon_colour;

#[cfg(target_arch = "x86_64")]
pub(crate) mod x86;

#[cfg(target_arch = "x86_64")]
pub(crate) mod x86_colour;