Searched refs:grad_last (Results 1 – 1 of 1) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | pickinter.c | 60 int grad_last = 0; in check_dot_artifact_candidate() local 90 grad_last = macroblock_corner_grad(last_ref, stride, 0, 0, 1, 1); in check_dot_artifact_candidate() 92 if (grad_last >= threshold1 && grad_source <= threshold2) { in check_dot_artifact_candidate() 97 grad_last = macroblock_corner_grad(last_ref, stride, 0, shift, 1, -1); in check_dot_artifact_candidate() 99 if (grad_last >= threshold1 && grad_source <= threshold2) { in check_dot_artifact_candidate() 104 grad_last = macroblock_corner_grad(last_ref, stride, shift, 0, -1, 1); in check_dot_artifact_candidate() 106 if (grad_last >= threshold1 && grad_source <= threshold2) { in check_dot_artifact_candidate() 111 grad_last = macroblock_corner_grad(last_ref, stride, shift, shift, -1, -1); in check_dot_artifact_candidate() 114 if (grad_last >= threshold1 && grad_source <= threshold2) { in check_dot_artifact_candidate()
|