#audio-processing #dataflow #buffermanagement #bufferconversion #fixedsizeblocks

aloe-oboe-fixedblockrw

Aloe-Oboe-FixedBlockRW offers conversion of variable-sized data buffers to fixed-size blocks, ideal for audio processing, maintaining alignment and efficient memory usage. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 3, 2025

#77 in #audio-processing

GPL-3.0 license

43KB
258 lines

Aloe-Oboe-FixedBlockRW

Aloe-Oboe-FixedBlockRW is a Rust crate designed for efficient conversion between variable-sized and fixed-sized data blocks. It is particularly suitable for audio processing tasks where input and output data flows require precise buffering to fixed block sizes for optimized performance.

Overview

The crate provides core components to handle data buffers:

  • FixedBlockProcessor: A trait for processing fixed-size blocks.
  • FixedBlockWriter: Converts a variable-sized push data flow into a fixed-size buffer, ideal for audio inputs.
  • FixedBlockReader: Transforms a fixed-size pull data flow into variable-sized blocks, suited for audio outputs.
  • FixedBlockAdapter: A base class to manage conversion and buffering operations between variable and fixed sizes.

Key Features

  • Buffer Alignment: Ensures that both fixed and variable blocks maintain alignment, usually a multiple of certain bytes, ensuring high compatibility across systems where block size matters.
  • Efficient Memory Management: Handles internal resource allocation and deallocation, minimizing overhead and maximizing performance.
  • Error Handling: Returns comprehensive error codes when operations fail, enhancing reliability.

Usage

Integrate the crate into your Rust project via Cargo.toml:

[dependencies]
aloe-oboe-fixedblockrw = "0.1.0"

Implement the FixedBlockProcessor trait in your application to customize how each data block is processed, and use FixedBlockWriter and FixedBlockReader for data conversion.

// Example of an implementor of FixedBlockProcessor
pub struct MyBlockProcessor;

impl FixedBlockProcessor for MyBlockProcessor {
    fn on_process_fixed_block(&mut self, buffer: *mut u8, num_bytes: i32) -> i32 {
        // Process the buffer here
        num_bytes // Return number of bytes processed
    }
}

Leverage the writer and reader to tackle complex data flow requirements within audio applications.

Contribution

Contributions are welcome! Please follow our GitHub repository for issues and pull requests.


This README.md file was generated by an AI model and may not be 100% accurate; however, it should be a helpful start.

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

~13–23MB
~370K SLoC