We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 037c2eb commit 115f04aCopy full SHA for 115f04a
src/node/convolver.rs
@@ -225,7 +225,9 @@ impl ConvolverNode {
225
// Size of the partition changes a lot the perf...
226
// - RENDER_QUANTUM_SIZE -> 20x (compared to real-time)
227
// - RENDER_QUANTUM_SIZE * 8 -> 134x
228
- let _ = convolver.init(RENDER_QUANTUM_SIZE * 8, &samples);
+ convolver
229
+ .init(RENDER_QUANTUM_SIZE * 8, &samples)
230
+ .expect("Unable to initialize convolution engine");
231
232
// let padded_buffer = AudioBuffer::from(samples, sample_rate);
233
// let convolve = ConvolverRendererInner::new(padded_buffer);
0 commit comments