#vst #cross-platform #plugin #macro #winapi #endian

aloe-vst-platform

Aloe VST Platform is a Rust library facilitating cross-platform VST plugin development with macros for CPU and OS-specific functionalities. 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

#30 in #vst


Used in 13 crates (via aloe-vst-stream)

GPL-3.0 license

44KB
519 lines

Aloe VST Platform

Aloe VST Platform is a comprehensive Rust library designed for VST plugin development across multiple operating systems. Providing crucial macros for platform and architecture specific functionalities, this crate simplifies the creation of cross-platform audio processing modules.

Overview

This crate exposes an extensive set of macros tied to system-specific capabilities, such as CPU architecture and operating systems (Windows, macOS, Linux). Constructed with high precision, these macros facilitate efficient interaction with low-level system features, ensuring robust and optimized audio plugin performance.

Endianness

An enumeration is provided to denote BigEndian and LittleEndian configurations, ensuring precision in byte manipulation and system-level data management crucial for audio processing.

Macros

  • CPU-specific Macros: (smtg_cpu_x86, smtg_cpu_x86_64, smtg_cpu_arm, smtg_cpu_arm_64) adjust operations per architecture.
  • Byte Order: Ensure correct endianess through conditional compilation.
  • Plugin Interface: Simplifies access to VST APIs facilitating extensive plugin development possibilities.
  • Cross-Language Compatibility: Macros like smtg_cpp11 enhance C++ interoperability.

Usage

Seamlessly integrate the library into your projects by adding it to your Cargo.toml. Configure system target features using the corresponding macros:

#[cfg(target_os="win32")]
#[macro_use]
extern crate aloe_vst_platform;

Harness the expanse of capabilities provided by our macros to create versatile, high-performance VST plugins supporting varying system specifications.

License

Distributed under the GPL-3.0 License.

Contribution

Your contributions are welcome! For issues, open a new issue in our GitHub repository.


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

~13–27MB
~376K SLoC