Audio plugin produces static over track

This is a common mistake…
Your calculate is a stateful method. But you are using the same state for all channels.
You need a separate set of m_a, m_b and m_c for every channel (or better create a filter class you can instanciate for each channel)

Hope that helps…

1 Like