We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea85680 commit 692302cCopy full SHA for 692302c
src/AudioTools/Filter.h
@@ -66,7 +66,7 @@ class FIR : public Filter<T> {
66
i_b = 0;
67
68
if (!(std::is_same<T, float>::value || std::is_same<T, double>::value)) {
69
- b_terms = b_terms / factor);
+ b_terms = b_terms / factor;
70
}
71
72
return b_terms;
@@ -133,10 +133,10 @@ class IIR : public Filter<T> {
133
i_b++;
134
if (i_b == lenB) i_b = 0;
135
i_a++;
136
- if (i_a == lenA) i_a = 0
+ if (i_a == lenA) i_a = 0;
137
138
139
- filtered = filtered / factor);
+ filtered = filtered / factor;
140
141
return filtered;
142
0 commit comments