Searched defs:motion_magnitude (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/
H A Ddenoising_neon.c53 unsigned int motion_magnitude,
55 /* If motion_magnitude is small, making the denoiser more aggressive by
60 motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 1 : 0;
62 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 4 + shift_inc : 3);
249 unsigned int motion_magnitude,
251 /* If motion_magnitude is small, making the denoiser more aggressive by
256 motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) ? 1 : 0;
258 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) ? 4 + shift_inc : 3);
48 vp8_denoiser_filter_neon(unsigned char *mc_running_avg_y, int mc_running_avg_y_stride, unsigned char *running_avg_y, int running_avg_y_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising) argument
244 vp8_denoiser_filter_uv_neon(unsigned char *mc_running_avg, int mc_running_avg_stride, unsigned char *running_avg, int running_avg_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c42 unsigned int motion_magnitude,
50 motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 1 : 0;
56 /* Modify each level's adjustment according to motion_magnitude. */
58 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ?
190 unsigned int motion_magnitude,
197 motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) ? 1 : 0;
203 /* Modify each level's adjustment according to motion_magnitude. */
205 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) ?
38 vp8_denoiser_filter_sse2(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising) argument
186 vp8_denoiser_filter_uv_sse2(unsigned char *mc_running_avg, int mc_avg_stride, unsigned char *running_avg, int avg_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising) argument
/external/libvpx/libvpx/vp8/encoder/arm/neon/
H A Ddenoising_neon.c50 MACROBLOCK *signal, unsigned int motion_magnitude,
52 /* If motion_magnitude is small, making the denoiser more aggressive by
57 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 4 : 3);
48 vp8_denoiser_filter_neon(YV12_BUFFER_CONFIG *mc_running_avg, YV12_BUFFER_CONFIG *running_avg, MACROBLOCK *signal, unsigned int motion_magnitude, int y_offset, int uv_offset) argument
/external/libvpx/libvpx/vp8/encoder/
H A Ddenoising.c56 unsigned int motion_magnitude, int y_offset,
69 /* If motion_magnitude is small, making the denoiser more aggressive by
71 if (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD)
54 vp8_denoiser_filter_c(YV12_BUFFER_CONFIG *mc_running_avg, YV12_BUFFER_CONFIG *running_avg, MACROBLOCK *signal, unsigned int motion_magnitude, int y_offset, int uv_offset) argument
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c27 MACROBLOCK *signal, unsigned int motion_magnitude,
42 /* Modify each level's adjustment according to motion_magnitude. */
44 (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 7 : 6);
25 vp8_denoiser_filter_sse2(YV12_BUFFER_CONFIG *mc_running_avg, YV12_BUFFER_CONFIG *running_avg, MACROBLOCK *signal, unsigned int motion_magnitude, int y_offset, int uv_offset) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c82 int motion_magnitude) {
92 // If motion_magnitude is small, making the denoiser more aggressive by
95 if (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) {
210 int *motion_magnitude
235 *motion_magnitude = mv_row * mv_row + mv_col * mv_col;
324 int motion_magnitude = 0; local
336 &motion_magnitude);
342 0, bs, motion_magnitude);
76 denoiser_filter(const uint8_t *sig, int sig_stride, const uint8_t *mc_avg, int mc_avg_stride, uint8_t *avg, int avg_stride, int increase_denoising, BLOCK_SIZE bs, int motion_magnitude) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Ddenoising.c60 unsigned int motion_magnitude,
75 /* If motion_magnitude is small, making the denoiser more aggressive by
78 if (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD)
232 unsigned int motion_magnitude,
243 /* If motion_magnitude is small, making the denoiser more aggressive by
246 if (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD_UV) {
57 vp8_denoiser_filter_c(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising) argument
226 vp8_denoiser_filter_uv_c(unsigned char *mc_running_avg_uv, int mc_avg_uv_stride, unsigned char *running_avg_uv, int avg_uv_stride, unsigned char *sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising) argument
/external/chromium_org/third_party/webrtc/modules/interface/
H A Dmodule_common_types.h379 : motion_magnitude(0.0f),
385 motion_magnitude = 0.0f;
390 float motion_magnitude; member in struct:webrtc::VideoContentMetrics

Completed in 167 milliseconds