mirror of
https://github.com/RustAudio/rodio
synced 2024-12-14 06:02:31 +00:00
Rename samples_rate.rs
to sample_rate.rs
to follow cpal
0.7 convention
This commit is contained in:
parent
74ceb63c3c
commit
95917f2e0f
2 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@ This includes conversion between samples formats, channels or sample rates.
|
||||||
pub use self::channels::ChannelCountConverter;
|
pub use self::channels::ChannelCountConverter;
|
||||||
pub use self::sample::DataConverter;
|
pub use self::sample::DataConverter;
|
||||||
pub use self::sample::Sample;
|
pub use self::sample::Sample;
|
||||||
pub use self::samples_rate::SampleRateConverter;
|
pub use self::sample_rate::SampleRateConverter;
|
||||||
|
|
||||||
mod channels;
|
mod channels;
|
||||||
// TODO: < shouldn't be public ; there's a bug in Rust 1.4 and below that makes This
|
// TODO: < shouldn't be public ; there's a bug in Rust 1.4 and below that makes This
|
||||||
// `pub` mandatory
|
// `pub` mandatory
|
||||||
pub mod sample;
|
pub mod sample;
|
||||||
mod samples_rate;
|
mod sample_rate;
|
||||||
|
|
Loading…
Reference in a new issue