oxisynth 0.0.4

Rust soundfont synthesizer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod core;
mod synth;

pub use crate::core::soundfont::{Preset, SoundFont};
pub use crate::core::{MidiEvent, OxiError};

pub use crate::core::TypedIndex;
pub type SoundFontId = TypedIndex<SoundFont>;

pub use self::settings::*;
pub use self::synth::*;

pub mod settings {
    pub use crate::core::{Settings, SettingsError, SynthDescriptor};
}

#[macro_use]
extern crate lazy_static;