mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
56353e24d2
Most signal processing texts, including MATLAB, use the following convention for IIR filter coefficients: a_0 y[n] + a_1 y[n-1] + ... + a_M y[n-M] = b_0 x[n] + b_1 x[n-1] + ... + b[N] x[n-N] Usually, a_0 is set to 1 because the coefficients can always be rescaled, giving y[n] = b_0 x[n] + b_1 x[n-1] + ... + b[N] x[n-N] - a_1 y[n-1] - ... - a_M y[n-M] The convention that was previously used by audiofxbaseiirfilter and derived class had the a and b coefficients swapped, and did not have the minus signs. This change makes the audiofx plugin use the more common convention described above. |
||
---|---|---|
.. | ||
check | ||
examples | ||
files | ||
icles | ||
Makefile.am |