rodio/conversions/mod.rs
1/*!
2This module contains functions that convert from one PCM format to another.
3
4This includes conversion between sample formats, channels or sample rates.
5*/
6
7pub use self::channels::ChannelCountConverter;
8pub use self::sample::SampleTypeConverter;
9pub use self::sample_rate::SampleRateConverter;
10
11mod channels;
12mod sample;
13mod sample_rate;