Skip to main content

oximedia_core/alloc/
mod.rs

1//! Memory allocation utilities for `OxiMedia`.
2//!
3//! This module provides memory management utilities optimized for
4//! multimedia processing:
5//!
6//! - [`BufferPool`] - Pool of reusable buffers for zero-copy operations
7
8mod buffer_pool;
9
10pub use buffer_pool::BufferPool;