//! Audio decoding, resampling, and channel mixing utilities.
//!
//! This module exposes the decoding pipeline used by the audio processing pipeline:
//! WAV/PCM parsing (`WavDecoder`), linear resampling
//! (`SampleRateConverter`), and channel mixing (`ChannelMixer`). Samples are
//! normalized to the range [-1.0, 1.0] and converted to mono/16kHz.
pub use ChannelMixer;
pub use SampleRateConverter;
pub use ;
pub use WavDecoder;