1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#9 in #core-audio
24 downloads per month
Used in 6 crates
(3 directly)
285KB
2K
SLoC
aloe-au-buffer
aloe-au-buffer
is a robust library designed for efficient management and manipulation of audio buffer lists in Rust, inspired by the sophisticated handling found in Core Audio frameworks. This crate provides a detailed interface for working with audio data structures, allowing users to manage and process audio buffers with precision.
Features
- Comprehensive management of buffer lists including allocation, deallocation, and copying of audio data.
- Support for interleaved and non-interleaved buffer formats, emulating flexible memory layouts.
- Inclusion of utility functions for operational safety, such as
safe_multiply_add_uint32
to ensure arithmetic operations do not result in overflow errors.
Usage
Add the crate to your Cargo.toml
:
[dependencies]
aloe-au-buffer = "0.1.0"
Import the crate into your project:
use aloe_au_buffer::{AUBufferList, CoreAudioBufferList, TAUBuffer};
Utilize the sophisticated buffer management routines:
let mut buffer_list = AUBufferList::default();
// Prepare buffer according to a specified format
buffer_list.prepare_buffer(&format, num_frames);
// Securely copy audio data
buffer_list.copy_buffer_contents_to(&mut another_buffer_list);
Safety and Performance Notes
- The library emphasizes safety in buffer operations, ensuring memory is managed correctly through
Drop
implementations. - Functions are designed to operate efficiently even under demanding audio processing conditions.
License
This project is licensed under the terms of the GNU General Public License v3.0.
Contributions and Support
Contributions are welcome, please submit a pull request or issue through our GitHub repository.
This README.md file was generated by an AI model and may not be 100% accurate; however, it should be pretty good.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~28–40MB
~649K SLoC