Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/common/
Dvp9_alloccommon.c56 cm->mi_cols = aligned_width >> MI_SIZE_LOG2; in set_mb_mi()
57 cm->mi_rows = aligned_height >> MI_SIZE_LOG2; in set_mb_mi()
83 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); in vp9_resize_frame_buffers()
84 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_resize_frame_buffers()
136 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); in vp9_alloc_frame_buffers()
137 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_alloc_frame_buffers()
220 const int aligned_width = ALIGN_POWER_OF_TWO(cm->width, MI_SIZE_LOG2); in vp9_update_frame_size()
221 const int aligned_height = ALIGN_POWER_OF_TWO(cm->height, MI_SIZE_LOG2); in vp9_update_frame_size()
Dvp9_enums.h16 #define MI_SIZE_LOG2 3 macro
17 #define MI_BLOCK_SIZE_LOG2 (6 - MI_SIZE_LOG2) // 64 = 2^6
19 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c408 if ((xd->mb_to_right_edge >> (3 + MI_SIZE_LOG2)) + mi_width > x_idx in update_state()
409 && (xd->mb_to_bottom_edge >> (3 + MI_SIZE_LOG2)) + mi_height > y) in update_state()