Macro audio_time::system

source ·
macro_rules! system {
    ($sample_rate:literal, $channel_layout:ident, $sample:ty) => { ... };
}
Expand description

Macro for easily creating a System.

Example

use audio_time::system;

let _ = system!(44_100, Mono, i16);
let _ = system!(8_000, Stereo, f64);