HomeSort by relevance Sort by last modified time
    Searched refs:MI_SIZE_LOG2 (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_enums.h 16 #define MI_SIZE_LOG2 3
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
vp9_alloccommon.c 56 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
57 cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
83 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
84 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2);
136 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
137 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2);
220 const int aligned_width = ALIGN_POWER_OF_TWO(cm->width, MI_SIZE_LOG2);
221 const int aligned_height = ALIGN_POWER_OF_TWO(cm->height, MI_SIZE_LOG2);
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c 408 if ((xd->mb_to_right_edge >> (3 + MI_SIZE_LOG2)) + mi_width > x_idx
409 && (xd->mb_to_bottom_edge >> (3 + MI_SIZE_LOG2)) + mi_height > y)
    [all...]

Completed in 25 milliseconds