fixed_resample/channel.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
use std::num::NonZeroUsize;
use ringbuf::traits::{Consumer, Observer, Producer, Split};
use rubato::Sample;
use crate::{ResampleQuality, ResamplerType, RtResampler};
/// Additional options for a resampling channel.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct ResamplingChannelConfig {
/// The amount of latency added in seconds between the input stream and the
/// output stream. If this value is too small, then underflows may occur.
///
/// The default value is `0.15` (150 ms).
pub latency_seconds: f64,
/// The capacity of the channel in seconds. If this is too small, then
/// overflows may occur. This should be at least twice as large as
/// `latency_seconds`.
///
/// The default value is `0.4` (400 ms).
pub capacity_seconds: f64,
/// The quality of the resampling alrgorithm to use if needed.
///
/// The default value is `ResampleQuality::Normal`.
pub quality: ResampleQuality,
}
impl Default for ResamplingChannelConfig {
fn default() -> Self {
Self {
latency_seconds: 0.15,
capacity_seconds: 0.4,
quality: ResampleQuality::Normal,
}
}
}
/// Create a new realtime-safe spsc channel for sending samples across streams.
///
/// If the input and output samples rates differ, then this will automatically
/// resample the input stream to match the output stream. If the sample rates
/// match, then no resampling will occur.
///
/// Internally this uses the `ringbuf` crate.
///
/// * `in_sample_rate` - The sample rate of the input stream.
/// * `out_sample_rate` - The sample rate of the output stream.
/// * `num_channels` - The number of channels in the stream.
/// * `out_max_block_frames` - The maximum number of frames that can be read
/// in a single call to [`ResamplingCons::read`].
/// * `config` - Additional options for the resampling channel.
///
/// # Panics
///
/// Panics when any of the following are true:
///
/// * `in_sample_rate == 0`
/// * `out_sample_rate == 0`
/// * `num_channels == 0`
/// * `out_max_block_frames == 0`,
/// * `config.latency_seconds <= 0.0`
/// * `config.capacity_seconds <= 0.0`
pub fn resampling_channel<T: Sample>(
in_sample_rate: u32,
out_sample_rate: u32,
num_channels: usize,
out_max_block_frames: usize,
config: ResamplingChannelConfig,
) -> (ResamplingProd<T>, ResamplingCons<T>) {
assert_ne!(in_sample_rate, 0);
assert_ne!(out_sample_rate, 0);
assert_ne!(out_max_block_frames, 0);
assert_ne!(num_channels, 0);
assert!(config.latency_seconds > 0.0);
assert!(config.capacity_seconds > 0.0);
let latency_frames = ((in_sample_rate as f64 * config.latency_seconds).round() as usize).max(1);
let buffer_capacity_frames = ((in_sample_rate as f64 * config.capacity_seconds).round()
as usize)
.max(latency_frames * 2);
let (mut prod, cons) = ringbuf::HeapRb::<T>::new(buffer_capacity_frames * num_channels).split();
// Add latency by initializing the ring buffer with zeros. This is needed
// to avoid underflows.
prod.push_slice(&vec![T::zero(); latency_frames * num_channels]);
let resampler = if in_sample_rate != out_sample_rate {
Some(RtResampler::<T>::new(
in_sample_rate,
out_sample_rate,
num_channels,
out_max_block_frames,
true,
config.quality,
))
} else {
None
};
(
ResamplingProd {
prod,
num_channels: NonZeroUsize::new(num_channels).unwrap(),
},
ResamplingCons {
cons,
resampler,
max_block_frames: out_max_block_frames,
num_channels: NonZeroUsize::new(num_channels).unwrap(),
},
)
}
/// Create a new realtime-safe spsc channel for sending samples across streams
/// using the custom resampler.
///
/// If the input and output samples rates differ, then this will automatically
/// resample the input stream to match the output stream. If the sample rates
/// match, then no resampling will occur.
///
/// Internally this uses the `ringbuf` crate.
///
/// * `resampler` - The custom rubato resampler.
/// * `in_sample_rate` - The sample rate of the input stream.
/// * `out_sample_rate` - The sample rate of the output stream.
/// * `num_channels` - The number of channels in the stream.
/// * `out_max_block_frames` - The maximum number of frames that can be read
/// in a single call to [`ResamplingCons::read`].
/// * `config` - Additional options for the resampling channel. Note that
/// `config.quality` will be ignored.
///
/// # Panics
///
/// Panics when any of the following are true:
///
/// * `resampler.num_channels() != num_channels`
/// * `in_sample_rate == 0`
/// * `out_sample_rate == 0`
/// * `num_channels == 0`
/// * `out_max_block_frames == 0`,
/// * `config.latency_seconds <= 0.0`
/// * `config.capacity_seconds <= 0.0`
pub fn resampling_channel_custom<T: Sample>(
resampler: impl Into<ResamplerType<T>>,
in_sample_rate: u32,
out_sample_rate: u32,
num_channels: usize,
out_max_block_frames: usize,
config: ResamplingChannelConfig,
) -> (ResamplingProd<T>, ResamplingCons<T>) {
let resampler: ResamplerType<T> = resampler.into();
assert_eq!(resampler.num_channels(), num_channels);
assert_ne!(in_sample_rate, 0);
assert_ne!(out_sample_rate, 0);
assert_ne!(out_max_block_frames, 0);
assert_ne!(num_channels, 0);
assert!(config.latency_seconds > 0.0);
assert!(config.capacity_seconds > 0.0);
let latency_frames = ((in_sample_rate as f64 * config.latency_seconds).round() as usize).max(1);
let buffer_capacity_frames = ((in_sample_rate as f64 * config.capacity_seconds).round()
as usize)
.max(latency_frames * 2);
let (mut prod, cons) = ringbuf::HeapRb::<T>::new(buffer_capacity_frames * num_channels).split();
// Add latency by initializing the ring buffer with zeros. This is needed
// to avoid underflows.
prod.push_slice(&vec![T::zero(); latency_frames * num_channels]);
let resampler = if in_sample_rate != out_sample_rate {
Some(RtResampler::<T>::from_custom(
resampler,
out_max_block_frames,
true,
))
} else {
None
};
(
ResamplingProd {
prod,
num_channels: NonZeroUsize::new(num_channels).unwrap(),
},
ResamplingCons {
cons,
resampler,
max_block_frames: out_max_block_frames,
num_channels: NonZeroUsize::new(num_channels).unwrap(),
},
)
}
/// The producer end of a realtime-safe spsc channel for sending samples across
/// streams.
///
/// If the input and output samples rates differ, then this will automatically
/// resample the input stream to match the output stream. If the sample rates
/// match, then no resampling will occur.
///
/// Internally this uses the `ringbuf` crate.
pub struct ResamplingProd<T: Sample> {
prod: ringbuf::HeapProd<T>,
num_channels: NonZeroUsize,
}
impl<T: Sample> ResamplingProd<T> {
/// Push the given data in interleaved format.
///
/// Returns the number of frames (not samples) that were successfully pushed.
/// If this number is less than the number of frames in `data`, then it means
/// an overflow has occured.
pub fn push(&mut self, data: &[T]) -> usize {
let data_frames = data.len() / self.num_channels.get();
let pushed_samples = self
.prod
.push_slice(&data[..data_frames * self.num_channels.get()]);
pushed_samples / self.num_channels.get()
}
/// Returns the number of frames that are currently available to be pushed
/// to the buffer.
pub fn available_frames(&self) -> usize {
self.prod.vacant_len() / self.num_channels.get()
}
/// The number of channels configured for this stream.
pub fn num_channels(&self) -> NonZeroUsize {
self.num_channels
}
}
/// The consumer end of a realtime-safe spsc channel for sending samples across
/// streams.
///
/// If the input and output samples rates differ, then this will automatically
/// resample the input stream to match the output stream. If the sample rates
/// match, then no resampling will occur.
///
/// Internally this uses the `ringbuf` crate.
pub struct ResamplingCons<T: Sample> {
cons: ringbuf::HeapCons<T>,
resampler: Option<RtResampler<T>>,
max_block_frames: usize,
num_channels: NonZeroUsize,
}
impl<T: Sample> ResamplingCons<T> {
/// The number of channels configured for this stream.
pub fn num_channels(&self) -> NonZeroUsize {
self.num_channels
}
/// The maximum number of frames that can be read in a single call to
/// [`ResamplingCons::read`].
pub fn max_block_frames(&self) -> usize {
self.max_block_frames
}
/// Returns `true` if resampling is occurring, `false` if the input and output
/// sample rates match.
pub fn is_resampling(&self) -> bool {
self.resampler.is_some()
}
/// Get the delay of the internal resampler, reported as a number of output
/// frames.
///
/// If no resampler is active, then this will return `0`.
pub fn output_delay(&self) -> usize {
self.resampler
.as_ref()
.map(|r| r.output_delay())
.unwrap_or(0)
}
/// Read from the channel and store the results into the output buffer
/// in interleaved format.
///
/// # Panics
///
/// Panics if the number of frames in `output` is greater than
/// [`ResamplingCons::max_block_frames`].
pub fn read(&mut self, output: &mut [T]) -> ReadStatus {
let out_frames = output.len() / self.num_channels.get();
assert!(out_frames <= self.max_block_frames);
let mut status = ReadStatus::Ok;
if let Some(resampler) = &mut self.resampler {
resampler.process_interleaved(
|in_buf| {
// Completely fill the buffer with new data.
// If the requested number of samples cannot be appended (i.e.
// an underflow occured), then fill the rest with zeros.
let samples = self.cons.pop_slice(in_buf);
if samples < in_buf.len() {
status = ReadStatus::Underflow;
in_buf[samples..].fill(T::zero());
}
},
output,
);
} else {
// Simply copy the input stream to the output.
let samples = self
.cons
.pop_slice(&mut output[..out_frames * self.num_channels.get()]);
if samples < output.len() {
status = ReadStatus::Underflow;
output[samples..].fill(T::zero());
}
}
status
}
}
/// The status of reading data from [`ResamplingCons::read`].
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ReadStatus {
/// No problems.
Ok,
/// An input underflow occured. This may result in audible audio
/// glitches.
Underflow,
}