Home
last modified time | relevance | path

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

/external/libgav1/libgav1/src/dsp/
Dconstants.cc82 const uint8_t kCdefPrimaryTaps[2][2] = {{4, 2}, {3, 3}}; variable
Dconstants.h65 extern const uint8_t kCdefPrimaryTaps[2][2];
Dcdef.cc172 kCdefPrimaryTaps[(primary_strength >> coeff_shift) & 1][k]; in CdefFilter_C()
/external/libgav1/libgav1/src/dsp/x86/
Dcdef_avx2.cc599 _mm_cvtsi32_si128(kCdefPrimaryTaps[primary_strength & 1][0])); in CdefFilter_AVX2()
601 _mm_cvtsi32_si128(kCdefPrimaryTaps[primary_strength & 1][1])); in CdefFilter_AVX2()
Dcdef_sse4.cc538 _mm_set1_epi16(kCdefPrimaryTaps[primary_strength & 1][0]); in CdefFilter_SSE4_1()
540 _mm_set1_epi16(kCdefPrimaryTaps[primary_strength & 1][1]); in CdefFilter_SSE4_1()
/external/libgav1/libgav1/src/dsp/arm/
Dcdef_neon.cc505 const int primary_tap_0 = kCdefPrimaryTaps[primary_strength & 1][0]; in CdefFilter_NEON()
506 const int primary_tap_1 = kCdefPrimaryTaps[primary_strength & 1][1]; in CdefFilter_NEON()