1 2 3 4 5 6 7 8
//! Audio codec implementations (ALAC, AAC, resampling). pub mod alac; #[cfg(feature = "resample")] pub mod resample; #[cfg(feature = "ap2")] pub mod aac;