xsynth-core 0.4.0

A fast Rust-based SoundFont synthesizer designed for high voice counts and low latency.
Documentation
#![allow(clippy::let_and_return)]
#![allow(non_local_definitions)]

pub mod buffered_renderer;

pub mod channel;

pub mod voice;

mod audio_pipe;
pub use audio_pipe::*;

mod audio_stream;
pub use audio_stream::*;

pub mod soundfont;

pub mod effects;

pub mod helpers;

pub mod channel_group;