rodio/conversions/mod.rs
1/*!
2This module contains function that will convert from one PCM format to another.
3
4This includes conversion between sample formats, channels or sample rates.
5
6*/
7
8pub use self::channels::ChannelCountConverter;
9pub use self::sample::DataConverter;
10pub use self::sample::Sample;
11pub use self::sample_rate::SampleRateConverter;
12
13mod channels;
14// TODO: < shouldn't be public ; there's a bug in Rust 1.4 and below that makes This
15// `pub` mandatory
16pub mod sample;
17mod sample_rate;