aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-07-26 00:58:54 -0700
committerChris Robinson <[email protected]>2008-07-26 00:58:54 -0700
commit3e0f9cc716392a67a7dfa63ff4785140dc24c93f (patch)
tree92e5626bdc92e5a0fd3c3e1908a6900ffe9765a4 /Alc/ALu.c
parentc7e49c9f5735df52d4e847529ae9cb23027547e7 (diff)
Make the filter processing function inline
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index ea0f0dcb..c1377fa7 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -163,6 +163,42 @@ __inline ALuint aluChannelsFromFormat(ALenum format)
}
+static __inline ALfloat lpFilter(FILTER *iir, ALfloat input)
+{
+ unsigned int i;
+ float *hist1_ptr,*hist2_ptr,*coef_ptr;
+ ALfloat output,new_hist,history1,history2;
+
+ coef_ptr = iir->coef; /* coefficient pointer */
+
+ hist1_ptr = iir->history; /* first history */
+ hist2_ptr = hist1_ptr + 1; /* next history */
+
+ /* 1st number of coefficients array is overall input scale factor,
+ * or filter gain */
+ output = input * (*coef_ptr++);
+
+ for(i = 0;i < FILTER_SECTIONS;i++)
+ {
+ history1 = *hist1_ptr; /* history values */
+ history2 = *hist2_ptr;
+
+ output = output - history1 * (*coef_ptr++);
+ new_hist = output - history2 * (*coef_ptr++); /* poles */
+
+ output = new_hist + history1 * (*coef_ptr++);
+ output = output + history2 * (*coef_ptr++); /* zeros */
+
+ *hist2_ptr++ = *hist1_ptr;
+ *hist1_ptr++ = new_hist;
+ hist1_ptr++;
+ hist2_ptr++;
+ }
+
+ return output;
+}
+
+
static __inline ALshort aluF2S(ALfloat Value)
{
ALint i;