Searched refs:WARP_ERROR_BLOCK (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | warped_motion.c | 23 #define WARP_ERROR_BLOCK 32 macro 561 const int error_bsize_w = AOMMIN(p_width, WARP_ERROR_BLOCK); in highbd_warp_error() 562 const int error_bsize_h = AOMMIN(p_height, WARP_ERROR_BLOCK); in highbd_warp_error() 563 uint16_t tmp[WARP_ERROR_BLOCK * WARP_ERROR_BLOCK]; in highbd_warp_error() 567 for (int i = p_row; i < p_row + p_height; i += WARP_ERROR_BLOCK) { in highbd_warp_error() 568 for (int j = p_col; j < p_col + p_width; j += WARP_ERROR_BLOCK) { in highbd_warp_error() 575 WARP_ERROR_BLOCK, subsampling_x, subsampling_y, bd, in highbd_warp_error() 579 tmp, WARP_ERROR_BLOCK, CONVERT_TO_SHORTPTR(dst8) + j + i * p_stride, in highbd_warp_error() 845 int error_bsize_w = AOMMIN(p_width, WARP_ERROR_BLOCK); in warp_error() 846 int error_bsize_h = AOMMIN(p_height, WARP_ERROR_BLOCK); in warp_error() [all …]
|