#stream #vst #plugin #binary #audio

aloe-vst-stream

aloe-vst-stream provides a framework for binary stream management in VST plugins, offering efficient memory and byte-order handling. 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

#17 in #vst


Used in 12 crates (5 directly)

GPL-3.0 license

215KB
2.5K SLoC

aloe-vst-stream

aloe-vst-stream is a Rust crate that provides an abstraction layer for stream operations aimed at VST plugin development. This crate encapsulates functionalities to read, write, seek, and manipulate binary data streams, facilitating efficient stream handling in memory-constrained environments, particularly in audio processing.

Features

  • Unified Stream Interface: It offers a unified interface for binary stream manipulation through traits like IBStream, FStreamerInterface, and ISizeableStream.
  • Memory Management: Implementations such as MemoryStream manage data through dynamic memory allocations, ensuring optimized memory usage.
  • Byte Order Handling: Supports byte order awareness for reading and writing operations, crucial for maintaining data integrity across different architectures.
  • Flexible Seeking: Various seek modes (kIBSeekSet, kIBSeekCur, kIBSeekEnd) enable flexible data navigation.
  • Custom Stream Size Management: FStreamSizeHolder aids in tracking and managing stream sizes, allowing for efficient memory utilization and backward compatibility.

Getting Started

To incorporate aloe-vst-stream into your project, add the following to your Cargo.toml:

[dependencies]
aloe-vst-stream = "0.1.0"

Ensure you have the correct version and license compliance with GPL-3.0.

Examples

Basic IBStream Usage

use aloe_vst_stream::{IBStream, IStreamSeekMode};

fn example_usage(stream: &mut dyn IBStream) {
    let mut buffer = vec![0u8; 128];
    let mut num_bytes_read = 0;
    stream.read(buffer.as_mut_ptr() as *mut _, 128, &mut num_bytes_read);
    // Processed data
}

Memory Stream Management

use aloe_vst_stream::MemoryStream;

fn setup_memory_stream() {
    let mut memory_stream = MemoryStream::new(std::ptr::null_mut(), 0);
    memory_stream.set_size(1024); // Allocates memory
}

Contribution

Feel free to contribute to the repository at GitHub. Please adhere to the provided contribution guidelines.

License

This project is licensed under the GPL-3.0 License.

This README 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

~12–26MB
~353K SLoC