Lines Matching defs:coeffsB
131 uint32_t coeffsB[2][5]; ///< adaption coefficients
146 uint64_t coeffsB[2][5]; ///< adaption coefficients
845 memset(p->coeffsB, 0, sizeof(p->coeffsB));
846 memset(p64->coeffsB, 0, sizeof(p64->coeffsB));
848 memcpy(p->coeffsB[0], initial_coeffs_b_3800,
850 memcpy(p->coeffsB[1], initial_coeffs_b_3800,
930 predictionB = d3 * p->coeffsB[filter][0] -
931 d4 * p->coeffsB[filter][1];
934 p->coeffsB[filter][0] += (((d3 >> 29) & 4) - 2) * sign;
935 p->coeffsB[filter][1] -= (((d4 >> 30) & 2) - 1) * sign;
1196 predictionB = p->buf[delayB ] * p->coeffsB[filter][0] +
1197 p->buf[delayB - 1] * p->coeffsB[filter][1] +
1198 p->buf[delayB - 2] * p->coeffsB[filter][2] +
1199 p->buf[delayB - 3] * p->coeffsB[filter][3] +
1200 p->buf[delayB - 4] * p->coeffsB[filter][4];
1216 p->coeffsB[filter][0] += p->buf[adaptB ] * sign;
1217 p->coeffsB[filter][1] += p->buf[adaptB - 1] * sign;
1218 p->coeffsB[filter][2] += p->buf[adaptB - 2] * sign;
1219 p->coeffsB[filter][3] += p->buf[adaptB - 3] * sign;
1220 p->coeffsB[filter][4] += p->buf[adaptB - 4] * sign;