Home
last modified time | relevance | path

Searched refs:signed_char_clamp_high (Results 1 – 1 of 1) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dloopfilter.c22 static INLINE int16_t signed_char_clamp_high(int t, int bd) { in signed_char_clamp_high() function
430 int16_t filter = signed_char_clamp_high(ps1 - qs1, bd) & hev; in highbd_filter4()
433 filter = signed_char_clamp_high(filter + 3 * (qs0 - ps0), bd) & mask; in highbd_filter4()
438 filter1 = signed_char_clamp_high(filter + 4, bd) >> 3; in highbd_filter4()
439 filter2 = signed_char_clamp_high(filter + 3, bd) >> 3; in highbd_filter4()
441 *oq0 = signed_char_clamp_high(qs0 - filter1, bd) + (0x80 << shift); in highbd_filter4()
442 *op0 = signed_char_clamp_high(ps0 + filter2, bd) + (0x80 << shift); in highbd_filter4()
447 *oq1 = signed_char_clamp_high(qs1 - filter, bd) + (0x80 << shift); in highbd_filter4()
448 *op1 = signed_char_clamp_high(ps1 + filter, bd) + (0x80 << shift); in highbd_filter4()