oximedia-core 0.1.1

Core types and traits for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
//! Memory allocation utilities for `OxiMedia`.
//!
//! This module provides memory management utilities optimized for
//! multimedia processing:
//!
//! - [`BufferPool`] - Pool of reusable buffers for zero-copy operations

mod buffer_pool;

pub use buffer_pool::BufferPool;