rodio 0.22.2

Audio playback and recording library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*!
This module contains functions that convert from one PCM format to another.

This includes conversion between sample formats, channels or sample rates.
*/

pub use self::channels::ChannelCountConverter;
pub use self::sample::SampleTypeConverter;
pub use self::sample_rate::SampleRateConverter;

mod channels;
mod sample;
mod sample_rate;