Searched refs:WARP_ERROR_BLOCK (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | global_motion.c | 171 const int error_bsize_w = AOMMIN(p_width, WARP_ERROR_BLOCK); in highbd_warp_error() 172 const int error_bsize_h = AOMMIN(p_height, WARP_ERROR_BLOCK); in highbd_warp_error() 173 uint16_t tmp[WARP_ERROR_BLOCK * WARP_ERROR_BLOCK]; in highbd_warp_error() 177 for (int i = p_row; i < p_row + p_height; i += WARP_ERROR_BLOCK) { in highbd_warp_error() 178 for (int j = p_col; j < p_col + p_width; j += WARP_ERROR_BLOCK) { in highbd_warp_error() 189 warp_h, WARP_ERROR_BLOCK, subsampling_x, subsampling_y, in highbd_warp_error() 191 gm_sumerr += av1_calc_highbd_frame_error(tmp, WARP_ERROR_BLOCK, in highbd_warp_error() 210 const int error_bsize_w = AOMMIN(p_width, WARP_ERROR_BLOCK); in warp_error() 211 const int error_bsize_h = AOMMIN(p_height, WARP_ERROR_BLOCK); in warp_error() 212 DECLARE_ALIGNED(16, uint8_t, tmp[WARP_ERROR_BLOCK * WARP_ERROR_BLOCK]); in warp_error() [all …]
|
D | encodeframe.c | 5837 (cpi->source->y_width + WARP_ERROR_BLOCK) >> WARP_ERROR_BLOCK_LOG; in encode_frame_internal() 5839 (cpi->source->y_height + WARP_ERROR_BLOCK) >> WARP_ERROR_BLOCK_LOG; in encode_frame_internal()
|
/external/libaom/libaom/av1/common/ |
D | warped_motion.c | 486 const int error_bsize_w = AOMMIN(p_width, WARP_ERROR_BLOCK); in highbd_segmented_frame_error() 487 const int error_bsize_h = AOMMIN(p_height, WARP_ERROR_BLOCK); in highbd_segmented_frame_error() 489 for (int i = 0; i < p_height; i += WARP_ERROR_BLOCK) { in highbd_segmented_frame_error() 490 for (int j = 0; j < p_width; j += WARP_ERROR_BLOCK) { in highbd_segmented_frame_error() 760 const int error_bsize_w = AOMMIN(p_width, WARP_ERROR_BLOCK); in segmented_frame_error() 761 const int error_bsize_h = AOMMIN(p_height, WARP_ERROR_BLOCK); in segmented_frame_error() 763 for (int i = 0; i < p_height; i += WARP_ERROR_BLOCK) { in segmented_frame_error() 764 for (int j = 0; j < p_width; j += WARP_ERROR_BLOCK) { in segmented_frame_error()
|
D | warped_motion.h | 35 #define WARP_ERROR_BLOCK (1 << WARP_ERROR_BLOCK_LOG) macro
|