Searched refs:grad_last (Results 1 – 1 of 1) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | pickinter.c | 92 int grad_last = 0; in check_dot_artifact_candidate() local 124 grad_last = macroblock_corner_grad(last_ref, stride, 0, 0, 1, 1); in check_dot_artifact_candidate() 126 if (grad_last >= threshold1 && grad_source <= threshold2) in check_dot_artifact_candidate() 132 grad_last = macroblock_corner_grad(last_ref, stride, 0, shift, 1, -1); in check_dot_artifact_candidate() 134 if (grad_last >= threshold1 && grad_source <= threshold2) in check_dot_artifact_candidate() 140 grad_last = macroblock_corner_grad(last_ref, stride, shift, 0, -1, 1); in check_dot_artifact_candidate() 142 if (grad_last >= threshold1 && grad_source <= threshold2) in check_dot_artifact_candidate() 148 grad_last = macroblock_corner_grad(last_ref, stride, shift, shift, -1, -1); in check_dot_artifact_candidate() 150 if (grad_last >= threshold1 && grad_source <= threshold2) in check_dot_artifact_candidate()
|