Skip to content

Commit a144d9b

Browse files
committed
fix: explicitly declare partition size
1 parent fefec26 commit a144d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/convolver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ impl ConvolverNode {
297297

298298
let mut convolver = FFTConvolver::<f32>::default();
299299
convolver
300-
.init(RENDER_QUANTUM_SIZE * 8, &samples)
300+
.init(partition_size, &scaled_channel)
301301
.expect("Unable to initialize convolution engine");
302302

303303
convolvers.push(convolver);

0 commit comments

Comments
 (0)