- num diffusion steps is template param
- Contructor: use initializer list for delays per diffusion step
- added param for feedback delay min and max
This commit is contained in:
2025-11-09 22:32:20 +01:00
parent e481f5215e
commit 8cfd39f245
2 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ void test_reverb()
std::cout << "----------------------------------------------" << std::endl;
std::cout << "test_reverb()" << std::endl;
Reverb<double, 8> rev(32);
Reverb<double, 8, 3> rev({32}, 1, 2);
float data_in[10] = {1, 2, 3, 4, 5, 6, 7,8, 9, 10};
float data_out[10] = {0, 0, 0, 0, 0, 0, 0,0, 0, 0};