//! Memory allocation utilities for `OxiMedia`.
//!
//! This module provides memory management utilities optimized for
//! multimedia processing:
//!
//! - [`BufferPool`] - Pool of reusable buffers for zero-copy operations
//! - [`aligned_vec::AlignedVec`] - Cache-line-aligned generic vector (64-byte)
pub use AlignedVec;
pub use ;