fixed_resample/lib.rs
1#[cfg(feature = "resampler")]
2mod resampler;
3
4#[cfg(feature = "resampler")]
5pub use resampler::*;
6
7#[cfg(feature = "channel")]
8mod channel;
9#[cfg(feature = "channel")]
10pub use channel::*;
11
12#[cfg(feature = "resampler")]
13pub use rubato;
14
15#[cfg(feature = "resampler")]
16pub use rubato::Sample;
17
18#[cfg(not(feature = "resampler"))]
19mod sample;
20#[cfg(not(feature = "resampler"))]
21pub use sample::Sample;
22
23pub use audioadapter_buffers;