Home | History | Annotate | Download | only in dsp

Lines Matching refs:biquad

11 	struct biquad biquad[MAX_BIQUADS_PER_EQ2][2];
23 biquad_set(&eq2->biquad[i][j], BQ_NONE, 0, 0, 0);
38 biquad_set(&eq2->biquad[eq2->n[channel]++][channel], type, freq, Q,
44 const struct biquad *biquad)
48 eq2->biquad[eq2->n[channel]++][channel] = *biquad;
52 static inline void eq2_process_one(struct biquad (*bq)[2],
55 struct biquad *qL = &bq[0][0];
56 struct biquad *qR = &bq[0][1];
115 static inline void eq2_process_two_neon(struct biquad (*bq)[2],
118 struct biquad *qL = &bq[0][0];
119 struct biquad *rL = &bq[1][0];
120 struct biquad *qR = &bq[0][1];
121 struct biquad *rR = &bq[1][1];
208 static inline void eq2_process_two_sse3(struct biquad (*bq)[2],
211 struct biquad *qL = &bq[0][0];
212 struct biquad *rL = &bq[1][0];
213 struct biquad *qR = &bq[0][1];
214 struct biquad *rR = &bq[1][1];
328 eq2_process_one(&eq2->biquad[i], data0, data1, count);
331 eq2_process_two_neon(&eq2->biquad[i], data0, data1,
334 eq2_process_two_sse3(&eq2->biquad[i], data0, data1,
337 eq2_process_one(&eq2->biquad[i], data0, data1, count);
338 eq2_process_one(&eq2->biquad[i+1], data0, data1, count);