Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/common/
Dvp9_enums.h21 #define MI_SIZE_LOG2 3 macro
22 #define MI_BLOCK_SIZE_LOG2 (6 - MI_SIZE_LOG2) // 64 = 2^6
24 #define MI_SIZE (1 << MI_SIZE_LOG2) // pixels per mi-unit
Dvp9_alloccommon.c39 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); in vp9_set_mb_mi()
40 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_set_mb_mi()
42 cm->mi_cols = aligned_width >> MI_SIZE_LOG2; in vp9_set_mb_mi()
43 cm->mi_rows = aligned_height >> MI_SIZE_LOG2; in vp9_set_mb_mi()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ethread.c56 const int aligned_width = ALIGN_POWER_OF_TWO(cpi->oxcf.width, MI_SIZE_LOG2); in get_max_tile_cols()
57 int mi_cols = aligned_width >> MI_SIZE_LOG2; in get_max_tile_cols()
Dvp9_encodeframe.c1036 if ((xd->mb_to_right_edge >> (3 + MI_SIZE_LOG2)) + mi_width > x_idx in update_state()
1037 && (xd->mb_to_bottom_edge >> (3 + MI_SIZE_LOG2)) + mi_height > y) { in update_state()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c1212 ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2) >> MI_SIZE_LOG2; in resize_context_buffers()
1214 ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2) >> MI_SIZE_LOG2; in resize_context_buffers()