//! NEON operations for the encoder.
//!
//! Only `quantize_block` is overridden. The forward DCT stays on the scalar
//! path: porting the 484-line AVX2 FDCT is a much larger job, and it would be
//! shipped **unexecuted** — nothing here can run NEON, so a large hand-written
//! kernel would rest entirely on a cross-compile succeeding. The quantize kernel
//! is ~40 lines against an exhaustive scalar oracle, which is a defensible
//! amount of unverified code; the FDCT is not, and is left as a deliberate gap
//! rather than an unmeasured claim.
//!
//! NEON is baseline on aarch64, so no runtime detection is required.
use crateOperations;
pub ;