21 #if defined(TEMPLATE_REMATRIX_FLT)
26 # define RENAME(x) x ## _float
27 #elif defined(TEMPLATE_REMATRIX_DBL)
29 # define SAMPLE double
32 # define RENAME(x) x ## _double
33 #elif defined(TEMPLATE_REMATRIX_S16)
34 # define R(x) (((x) + 16384)>>15)
35 # define SAMPLE int16_t
38 # define RENAME(x) x ## _s16
45 COEFF coeff1 = coeffp[index1];
46 COEFF coeff2 = coeffp[index2];
49 out[i] =
R(coeff1*in1[i] + coeff2*in2[i]);
56 out[i] =
R(coeff*in[i]);
59 static void RENAME(mix6to2)(SAMPLE **out,
const SAMPLE **in, COEFF *coeffp,
integer len){
62 for(i=0; i<
len; i++) {
63 INTER
t = in[2][i]*coeffp[0*6+2] + in[3][i]*coeffp[0*6+3];
64 out[0][i] =
R(t + in[0][i]*coeffp[0*6+0] + in[4][i]*coeffp[0*6+4]);
65 out[1][i] =
R(t + in[1][i]*coeffp[1*6+1] + in[5][i]*coeffp[1*6+5]);
69 static void RENAME(mix8to2)(SAMPLE **out,
const SAMPLE **in, COEFF *coeffp,
integer len){
72 for(i=0; i<
len; i++) {
73 INTER
t = in[2][i]*coeffp[0*8+2] + in[3][i]*coeffp[0*8+3];
74 out[0][i] =
R(t + in[0][i]*coeffp[0*8+0] + in[4][i]*coeffp[0*8+4] + in[6][i]*coeffp[0*8+6]);
75 out[1][i] =
R(t + in[1][i]*coeffp[1*8+1] + in[5][i]*coeffp[1*8+5] + in[7][i]*coeffp[1*8+7]);
81 && s->matrix[0][2] == s->matrix[1][2] && s->matrix[0][3] == s->matrix[1][3]
82 && !s->matrix[0][1] && !s->matrix[0][5] && !s->matrix[1][0] && !s->matrix[1][4]
87 && s->matrix[0][2] == s->matrix[1][2] && s->matrix[0][3] == s->matrix[1][3]
88 && !s->matrix[0][1] && !s->matrix[0][5] && !s->matrix[1][0] && !s->matrix[1][4]
89 && !s->matrix[0][7] && !s->matrix[1][6]