Searched refs:CHECK_BETTER (Results 1 – 2 of 2) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 184 #define CHECK_BETTER(v, r, c) \ macro 201 CHECK_BETTER(left, tr, tc - hstep); \ 202 CHECK_BETTER(right, tr, tc + hstep); \ 203 CHECK_BETTER(up, tr - hstep, tc); \ 204 CHECK_BETTER(down, tr + hstep, tc); \ 209 CHECK_BETTER(diag, tr - hstep, tc - hstep); \ 212 CHECK_BETTER(diag, tr - hstep, tc + hstep); \ 215 CHECK_BETTER(diag, tr + hstep, tc - hstep); \ 218 CHECK_BETTER(diag, tr + hstep, tc + hstep); \ 230 CHECK_BETTER(second, tr + kr, tc + 2 * kc); \ [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | mcomp.c | 201 #define CHECK_BETTER(v,r,c) IFMVCV(r,c,{thismse = DIST(r,c); if((v = (MVC(r,c)+thismse)) < besterr)… macro 275 CHECK_BETTER(left, tr, tc - 2); in vp8_find_best_sub_pixel_step_iteratively() 276 CHECK_BETTER(right, tr, tc + 2); in vp8_find_best_sub_pixel_step_iteratively() 277 CHECK_BETTER(up, tr - 2, tc); in vp8_find_best_sub_pixel_step_iteratively() 278 CHECK_BETTER(down, tr + 2, tc); in vp8_find_best_sub_pixel_step_iteratively() 285 CHECK_BETTER(diag, tr - 2, tc - 2); in vp8_find_best_sub_pixel_step_iteratively() 288 CHECK_BETTER(diag, tr - 2, tc + 2); in vp8_find_best_sub_pixel_step_iteratively() 291 CHECK_BETTER(diag, tr + 2, tc - 2); in vp8_find_best_sub_pixel_step_iteratively() 294 CHECK_BETTER(diag, tr + 2, tc + 2); in vp8_find_best_sub_pixel_step_iteratively() 313 CHECK_BETTER(left, tr, tc - 1); in vp8_find_best_sub_pixel_step_iteratively() [all …]
|