Corrected a bug in the one pole filter with variable gain
This commit is contained in:
parent
94851d3adf
commit
20c0aeb8dd
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ public:
|
||||||
auto sentinel = in + size;
|
auto sentinel = in + size;
|
||||||
while (in < sentinel) {
|
while (in < sentinel) {
|
||||||
setGain(*g);
|
setGain(*g);
|
||||||
oneLowpass(in, out);
|
oneHighpass(in, out);
|
||||||
in++;
|
in++;
|
||||||
out++;
|
out++;
|
||||||
g++;
|
g++;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue