zenjpeg 0.8.3

Pure Rust JPEG encoder/decoder with perceptual optimizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Low-level foundation utilities.
//!
//! This module contains fundamental utilities used throughout the codebase:
//! - `consts`: JPEG markers, zigzag tables, quantization matrices
//! - `alloc`: Safe allocation helpers for DoS protection
//! - `bitstream`: Low-level bit I/O operations
//! - `instrumented_vec`: Vec wrapper for allocation profiling (feature-gated)

pub mod aligned_alloc;
pub mod alloc;
pub mod bitstream;
pub mod consts;
pub mod instrumented_vec;
pub mod simd_types;

// Re-export commonly used items at module level