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.c23 static INLINE int16_t signed_char_clamp_high(int t, int bd) { in signed_char_clamp_high() function
422 int16_t filter = signed_char_clamp_high(ps1 - qs1, bd) & hev; in highbd_filter4()
425 filter = signed_char_clamp_high(filter + 3 * (qs0 - ps0), bd) & mask; in highbd_filter4()
430 filter1 = signed_char_clamp_high(filter + 4, bd) >> 3; in highbd_filter4()
431 filter2 = signed_char_clamp_high(filter + 3, bd) >> 3; in highbd_filter4()
433 *oq0 = signed_char_clamp_high(qs0 - filter1, bd) + (0x80 << shift); in highbd_filter4()
434 *op0 = signed_char_clamp_high(ps0 + filter2, bd) + (0x80 << shift); in highbd_filter4()
439 *oq1 = signed_char_clamp_high(qs1 - filter, bd) + (0x80 << shift); in highbd_filter4()
440 *op1 = signed_char_clamp_high(ps1 + filter, bd) + (0x80 << shift); in highbd_filter4()