Searched defs:motion_magnitude2 (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Ddenoising.c194 unsigned int motion_magnitude2; local
279 motion_magnitude2 = mv_row * mv_row + mv_col * mv_col;
280 if (best_sse > SSE_THRESHOLD || motion_magnitude2
292 motion_magnitude2,
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Ddenoising.c502 unsigned int motion_magnitude2; local
602 motion_magnitude2 = mv_row * mv_row + mv_col * mv_col;
606 if (motion_magnitude2 <
614 if (best_sse > sse_thresh || motion_magnitude2 > motion_threshold)
629 x->thismb, 16, motion_magnitude2,
631 denoiser->denoise_state[block_index] = motion_magnitude2 > 0 ?
635 motion_magnitude2 == 0 &&
652 signal_stride, motion_magnitude2, 0);
657 signal_stride, motion_magnitude2, 0);

Completed in 43 milliseconds