/external/libvpx/libvpx/vp8/common/ |
loopfilter_filters.c | 56 signed char ps1, qs1; local 63 qs1 = (signed char) * oq1 ^ 0x80; 66 filter_value = vp8_signed_char_clamp(ps1 - qs1); 92 u = vp8_signed_char_clamp(qs1 - filter_value); 170 signed char qs1 = (signed char) * oq1 ^ 0x80; local 174 filter_value = vp8_signed_char_clamp(ps1 - qs1); 203 s = vp8_signed_char_clamp(qs1 - u);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_loopfilter_filters.c | 80 const int8_t qs1 = (int8_t) *oq1 ^ 0x80; local 83 int8_t filter = signed_char_clamp(ps1 - qs1) & hev; 100 *oq1 = signed_char_clamp(qs1 - filter) ^ 0x80;
|
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_loopfilter_intrin_avx2.c | 91 __m128i qs1 = _mm_xor_si128(p1q1, t80); local 98 filt = _mm_and_si128(_mm_subs_epi8(qs1ps1, qs1), hev); 472 __m128i qs1 = _mm_xor_si128(q1, t80); local 481 filt = _mm_and_si128(_mm_subs_epi8(ps1, qs1), hev); 517 qs1 = _mm_xor_si128(_mm_subs_epi8(qs1, filt), t80); [all...] |
vp9_loopfilter_intrin_sse2.c | 96 __m128i qs1 = _mm_xor_si128(p1q1, t80); local 103 filt = _mm_and_si128(_mm_subs_epi8(qs1ps1, qs1), hev); 479 __m128i qs1 = _mm_xor_si128(q1, t80); local 484 filt = _mm_and_si128(_mm_subs_epi8(ps1, qs1), hev); 520 qs1 = _mm_xor_si128(_mm_subs_epi8(qs1, filt), t80); 1010 const __m128i qs1 = _mm_xor_si128(_mm_loadl_epi64((__m128i *)(s + 1 * p)), local [all...] |