Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
static void comb_filter(opus_val32 *y, opus_val32 *x, int T0, int T1, int N, opus_val16 g0, opus_val16 g1, int tapset0, int tapset1, const opus_val16 *window, int overlap) { int i; /* printf ("%d %d %f %f\n", T0, T1, g0, g1); */ opus_val16 g00, g01, g02, g10, g11, g12, idx0, idx1; static const opus_val16 gains[3][3] = { {QCONST16(0.3066406250f, 15), QCONST16(0.2170410156f, 15), QCONST16(0.1296386719f, 15)}, {QCONST16(0.4638671875f, 15), QCONST16(0.2680664062f, 15), QCONST16(0.f, 15)}, {QCONST16(0.7998046875f, 15), QCONST16(0.1000976562f, 15), QCONST16(0.f, 15)}}; g00 = MULT16_16_Q15(g0, gains[tapset0][0]); g01 = MULT16_16_Q15(g0, gains[tapset0][1]); g02 = MULT16_16_Q15(g0, gains[tapset0][2]); g10 = MULT16_16_Q15(g1, gains[tapset1][0]); g11 = MULT16_16_Q15(g1, gains[tapset1][1]); g12 = MULT16_16_Q15(g1, gains[tapset1][2]); idx0 = -T0; idx1 = -T1; for (i=0;i<overlap;i++,idx0++,idx1++) { opus_val16 f0, f1; f1 = MULT16_16_Q15(window[i],window[i]); f0 = Q15ONE - f1; y[i] = x[i] + MULT16_32_Q15(MULT16_16_Q15(f0,g00), x[idx0 ]) + MULT16_32_Q15(MULT16_16_Q15(f0,g01),(x[idx0-1]+x[idx0+1])) + MULT16_32_Q15(MULT16_16_Q15(f0,g02),(x[idx0-2]+x[idx0+2])) + MULT16_32_Q15(MULT16_16_Q15(f1,g10), x[idx1 ]) + MULT16_32_Q15(MULT16_16_Q15(f1,g11),(x[idx1-1]+x[idx1+1])) + MULT16_32_Q15(MULT16_16_Q15(f1,g12),(x[idx1-2]+x[idx1+2])); } idx1 = overlap-T1; for (i=overlap;i<N;i++,idx1++) { y[i] = x[i] + MULT16_32_Q15(g10, x[idx1 ]) + MULT16_32_Q15(g11,(x[idx1-1]+x[idx1+1])) + MULT16_32_Q15(g12,(x[idx1-2]+x[idx1+2])); } } |