-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathdelay.rs
More file actions
30 lines (27 loc) · 1.03 KB
/
delay.rs
File metadata and controls
30 lines (27 loc) · 1.03 KB
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
use crate::{Buffer, Input, Node};
use dasp_ring_buffer as ring_buffer;
/// A delay node, where the delay duration for each channel is equal to the length of the inner
/// ring buffer associated with that channel.
///
/// Assumes that there is one input node, and that the number of input buffers, output buffers and
/// ring buffers all match.
#[derive(Clone, Debug, PartialEq)]
pub struct Delay<S>(pub Vec<ring_buffer::Fixed<S>>);
impl<S, W> Node<W> for Delay<S>
where
S: ring_buffer::SliceMut<Element = f32>,
{
fn process(&mut self, inputs: &[Input<W>], output: &mut [Buffer]) {
// Retrieve the single input, ignore any others.
let input = match inputs.get(0) {
Some(input) => input,
None => return,
};
// Apply the delay across each channel.
for ((ring_buf, in_buf), out_buf) in self.0.iter_mut().zip(input.buffers()).zip(output) {
for (i, out) in out_buf.iter_mut().enumerate() {
*out = ring_buf.push(in_buf[i]);
}
}
}
}