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

  /external/libvpx/libvpx/vp9/common/
vp9_enums.h 21 #define MI_SIZE_LOG2 3
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
vp9_alloccommon.c 39 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
40 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2);
42 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
43 cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
  /external/libvpx/libvpx/vp9/encoder/
vp9_ethread.c 59 const int aligned_width = ALIGN_POWER_OF_TWO(cpi->oxcf.width, MI_SIZE_LOG2);
60 int mi_cols = aligned_width >> MI_SIZE_LOG2;
vp9_encodeframe.c     [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c     [all...]

Completed in 142 milliseconds