fn resample_to_master(
pcm: Vec<f32>,
src_rate: u32,
) -> Result<Vec<f32>, AudioError>Available on crate feature
audio-decode only.Expand description
Resample interleaved master-stereo PCM to MASTER_SAMPLE_RATE with
rubato’s FFT (synchronous) resampler in one offline pass.