Home
last modified time | relevance | path

Searched refs:MI_SIZE_LOG2 (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_enums.h20 #define MI_SIZE_LOG2 3 macro
21 #define MI_BLOCK_SIZE_LOG2 (6 - MI_SIZE_LOG2) // 64 = 2^6
23 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit
Dvp9_alloccommon.c32 cm->mi_cols = aligned_width >> MI_SIZE_LOG2; in set_mb_mi()
33 cm->mi_rows = aligned_height >> MI_SIZE_LOG2; in set_mb_mi()
117 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); in vp9_resize_frame_buffers()
118 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_resize_frame_buffers()
163 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); in vp9_alloc_frame_buffers()
164 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_alloc_frame_buffers()
228 const int aligned_width = ALIGN_POWER_OF_TWO(cm->width, MI_SIZE_LOG2); in vp9_update_frame_size()
229 const int aligned_height = ALIGN_POWER_OF_TWO(cm->height, MI_SIZE_LOG2); in vp9_update_frame_size()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_dthread.c154 ALIGN_POWER_OF_TWO(cm->last_height, MI_SIZE_LOG2); in vp9_loop_filter_frame_mt()
156 mi_cols_aligned_to_sb(aligned_last_height >> MI_SIZE_LOG2) >> in vp9_loop_filter_frame_mt()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_encodeframe.c896 if ((xd->mb_to_right_edge >> (3 + MI_SIZE_LOG2)) + mi_width > x_idx in update_state()
897 && (xd->mb_to_bottom_edge >> (3 + MI_SIZE_LOG2)) + mi_height > y) { in update_state()