maolan-engine 0.0.8

Audio engine for the Maolan DAW with audio/MIDI tracks, routing, export, and CLAP/VST3/LV2 hosting
Documentation
#[cfg(target_os = "linux")]
pub const F32_FROM_I16: f32 = 1.0 / 32768.0;
#[cfg(target_os = "linux")]
pub const F32_FROM_I32: f32 = 1.0 / 2147483648.0;
#[cfg(target_os = "linux")]
pub const F32_FROM_I24: f32 = 1.0 / 8388608.0;
#[cfg(target_os = "linux")]
pub const F32_FROM_I8: f32 = 1.0 / 128.0;
#[cfg(target_os = "linux")]
pub const F32_TO_I16: f32 = 32767.0;
#[cfg(target_os = "linux")]
pub const F32_TO_I32: f32 = 2147483647.0;
#[cfg(target_os = "linux")]
pub const F32_TO_I24: f32 = 8388607.0;
#[cfg(target_os = "linux")]
pub const F32_TO_I8: f32 = 127.0;
#[cfg(target_os = "freebsd")]
pub const F32_FROM_I32_MAX: f32 = 1.0 / i32::MAX as f32;
#[cfg(target_os = "freebsd")]
pub const F32_TO_I32_MAX: f32 = i32::MAX as f32;
#[cfg(target_os = "macos")]
pub const F32_FROM_F32: f32 = 1.0;
#[cfg(target_os = "macos")]
pub const F32_TO_F32: f32 = 1.0;