Searched refs:shift_inc (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/arm/neon/
H A Ddenoising_neon.c58 int shift_inc = local
63 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 4 + shift_inc : 3);
66 const uint8x16_t v_level1_threshold = vmovq_n_u8(4 + shift_inc);
247 int shift_inc = local
252 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) ? 4 + shift_inc : 3);
256 const uint8x16_t v_level1_threshold = vmovq_n_u8(4 + shift_inc);
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c47 int shift_inc = local
53 const __m128i k_4 = _mm_set1_epi8(4 + shift_inc);
58 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 7 + shift_inc : 6);
192 int shift_inc = local
198 const __m128i k_4 = _mm_set1_epi8(4 + shift_inc);
203 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) ? 7 + shift_inc : 6);
/external/libvpx/libvpx/vp9/encoder/arm/neon/
H A Dvp9_denoiser_neon.c138 const int shift_inc = local
145 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 4 + shift_inc : 3);
148 const uint8x16_t v_level1_threshold = vdupq_n_u8(4 + shift_inc);
237 const int shift_inc = local
242 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 4 + shift_inc : 3);
245 const uint8x16_t v_level1_threshold = vmovq_n_u8(4 + shift_inc);
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_denoiser_sse2.c127 const int shift_inc = local
134 const __m128i k_4 = _mm_set1_epi8(4 + shift_inc);
139 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 7 + shift_inc : 6);
215 const int shift_inc = local
221 const __m128i k_4 = _mm_set1_epi8(4 + shift_inc);
226 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 7 + shift_inc : 6);
/external/webrtc/webrtc/modules/video_processing/util/
H A Ddenoiser_filter_neon.cc113 int shift_inc = local
117 (motion_magnitude <= kMotionMagnitudeThreshold) ? 4 + shift_inc : 3);
120 const uint8x16_t v_level1_threshold = vmovq_n_u8(4 + shift_inc);
H A Ddenoiser_filter_sse2.cc143 int shift_inc = local
148 const __m128i k_4 = _mm_set1_epi8(4 + shift_inc);
153 (motion_magnitude <= kMotionMagnitudeThreshold) ? 7 + shift_inc : 6);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_denoiser.c79 int shift_inc = 1; local
86 shift_inc = 2;
88 adj_val[0] += shift_inc;
89 adj_val[1] += shift_inc;
90 adj_val[2] += shift_inc;

Completed in 249 milliseconds