miniaudio 0.10.0

Bindings to the miniaudio C library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::base::{Channel, ChannelMixMode};

pub struct ChannelMap<'m> {
    mixing_mode: ChannelMixMode,
    map_in: &'m [Channel],
    map_out: &'m [Channel],
}

impl<'m> ChannelMap<'m> {
    pub fn set(index: usize, channel_in: Channel, channel_out: Channel) {
    }
}

pub struct ChannelMapIn()