Searched refs:MI_BLOCK_SIZE (Results 1 - 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp9/common/
H A Dvp9_enums.h20 #define MI_BLOCK_SIZE (1 << MI_BLOCK_SIZE_LOG2) // mi-units per max block macro
22 #define MI_MASK (MI_BLOCK_SIZE - 1)
H A Dvp9_loopfilter.c665 const int max_rows = (mi_row + MI_BLOCK_SIZE > cm->mi_rows ?
666 cm->mi_rows - mi_row : MI_BLOCK_SIZE);
667 const int max_cols = (mi_col + MI_BLOCK_SIZE > cm->mi_cols ?
668 cm->mi_cols - mi_col : MI_BLOCK_SIZE);
798 if (mi_row + MI_BLOCK_SIZE > cm->mi_rows) {
827 if (mi_col + MI_BLOCK_SIZE > cm->mi_cols) {
881 unsigned int mask_16x16[MI_BLOCK_SIZE] = {0};
882 unsigned int mask_8x8[MI_BLOCK_SIZE] = {0};
883 unsigned int mask_4x4[MI_BLOCK_SIZE] = {0};
884 unsigned int mask_4x4_int[MI_BLOCK_SIZE]
[all...]
H A Dvp9_alloccommon.c58 cm->mode_info_stride = cm->mi_cols + MI_BLOCK_SIZE;
96 mi_size = cm->mode_info_stride * (cm->mi_rows + MI_BLOCK_SIZE);
169 mi_size = cm->mode_info_stride * (cm->mi_rows + MI_BLOCK_SIZE);
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodframe.c799 mi_row += MI_BLOCK_SIZE) {
804 mi_col += MI_BLOCK_SIZE) {
810 const int lf_start = mi_row - MI_BLOCK_SIZE;
817 if (mi_row + MI_BLOCK_SIZE >= tile->mi_row_end) continue;
960 mi_row += MI_BLOCK_SIZE) {
964 mi_col += MI_BLOCK_SIZE) {
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c933 if ((col8x8_remaining >= MI_BLOCK_SIZE) &&
934 (row8x8_remaining >= MI_BLOCK_SIZE)) {
935 for (block_row = 0; block_row < MI_BLOCK_SIZE; block_row += bh) {
936 for (block_col = 0; block_col < MI_BLOCK_SIZE; block_col += bw) {
944 for (block_row = 0; block_row < MI_BLOCK_SIZE; block_row += bh) {
945 for (block_col = 0; block_col < MI_BLOCK_SIZE; block_col += bw) {
1295 int sb_width_in_blocks = MI_BLOCK_SIZE;
1296 int sb_height_in_blocks = MI_BLOCK_SIZE;
1354 left_sb64_mi_8x8 = &mi_8x8[-MI_BLOCK_SIZE];
1361 above_sb64_mi_8x8 = &mi_8x8[-xd->mode_info_stride * MI_BLOCK_SIZE];
[all...]
H A Dvp9_bitstream.c659 mi_row += MI_BLOCK_SIZE) {
662 mi_col += MI_BLOCK_SIZE)

Completed in 93 milliseconds