#audio #flowgraph #multimedia #signalprocessing #databuffering

aloe-oboe-flowgraph-source

Aloe Oboe Flowgraph Source provides a framework for edge nodes in audio processing graphs, offering support for different audio data formats including 16-bit, 24-bit packed, 32-bit integer, and float. 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

#5 in #signalprocessing


Used in 3 crates

GPL-3.0 license

68KB
445 lines

Aloe Oboe Flowgraph Source

Aloe Oboe Flowgraph Source is a Rust crate designed for advanced audio processing applications, providing a series of base and concrete class implementations for edge nodes within a flowgraph architecture. These nodes act as audio sources by reading blocks of predefined data, which can be encoded in various formats such as 16-bit, 24-bit packed integer, 32-bit integer, and float.

Architectural Overview

This crate defines several structures modeling different data source types:

  • FlowGraphSourceBuffered: Acts as a node with no upstream nodes. It reads data from an external buffer and serves as a common base for other sources.
  • FlowGraphSourceI16, FlowGraphSourceI24, FlowGraphSourceI32, FlowGraphSourceFloat: Derived from FlowGraphSourceBuffered, these nodes read audio data encoded in their specified formats.

Key Traits and Methods

Struct: FlowGraphSourceBuffered

  • new(channel_count: i32) -> Self: Initializes a buffered source node with a specified channel count.
  • set_data(&mut self, data: *const c_void, num_frames: i32): Defines the external data buffer and its size that this source will read from.

Structs: FlowGraphSourceI16, FlowgraphSourceI24, FlowgraphSourceI32, FlowgraphSourceFloat

  • get_name() -> &'static str: Returns the name of the source type.
  • on_process(&mut self, num_frames: i32) -> i32: Processes a specified number of frames, returning the number of frames successfully processed.

Use Cases

This crate can be instrumental in applications requiring precise audio data handling and manipulation, such as audio engineering tools, real-time sound processing software, or custom digital audio workstations.

Installation and Usage

Add the following dependency to your Cargo.toml:

[dependencies]
aloe-oboe-flowgraph-source = "0.1.0"

License: GPL-3.0 Author: klebs (tpk3.mx@gmail.com) Repository: GitHub

Note: This README.md file was generated by an AI model and may not be 100% accurate; however, it aims to provide comprehensive information on the crate's functionality and usage.

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
~371K SLoC