You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #2087, we changed the lower bound for the gain AudioParam for a BiquadFilterNode. It's about -1541 now. However, any values less than this should just silently underflow to produce a linear gain value of 0, so maybe we should make the lower bound the most negative single float?
The text was updated successfully, but these errors were encountered:
Since the filter gain is in dB, any finite negative value is fine
since the value should just underflow to a linear gain value of
0. (Unlike the upper bound which would cause overflow if it were
higher.)
In #2087, we changed the lower bound for the gain AudioParam for a
BiquadFilterNode
. It's about -1541 now. However, any values less than this should just silently underflow to produce a linear gain value of 0, so maybe we should make the lower bound the most negative single float?The text was updated successfully, but these errors were encountered: