We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug 1: The high shelf cutoff moves when boosting / cutting
SOUL/source/soul_library/soul_library_filters.soul
Line 1532 in 2f8f74e
Solution: let g = w * sqrt (A);
let g = w * sqrt (A);
Bug 2: The bell filters quality is not symmetrical when boosting / cutting
Lines 1574 to 1578 in 2f8f74e
Solution: k = 1 / (A * clamp(quality, 0.01, 100.0));
k = 1 / (A * clamp(quality, 0.01, 100.0));
NOTE: The bell filter is the only filter that uses a different k
Source: https://cytomic.com/files/dsp/SvfLinearTrapOptimised2.pdf Page 32
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug 1: The high shelf cutoff moves when boosting / cutting
SOUL/source/soul_library/soul_library_filters.soul
Line 1532 in 2f8f74e
Solution:
let g = w * sqrt (A);
Bug 2: The bell filters quality is not symmetrical when boosting / cutting
SOUL/source/soul_library/soul_library_filters.soul
Lines 1574 to 1578 in 2f8f74e
Solution:
k = 1 / (A * clamp(quality, 0.01, 100.0));
NOTE: The bell filter is the only filter that uses a different k
Source: https://cytomic.com/files/dsp/SvfLinearTrapOptimised2.pdf
Page 32
The text was updated successfully, but these errors were encountered: