Searched refs:mi_step (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.h | 58 int vp9_active_h_edge(struct VP9_COMP *cpi, int mi_row, int mi_step); 59 int vp9_active_v_edge(struct VP9_COMP *cpi, int mi_col, int mi_step);
|
D | vp9_encodeframe.c | 1844 const int mi_step = num_4x4_blocks_wide_lookup[bsize] / 2; in rd_use_partition() local 1898 mi_row + (mi_step >> 1) < cm->mi_rows && in rd_use_partition() 1899 mi_col + (mi_step >> 1) < cm->mi_cols) { in rd_use_partition() 1928 bsize >= BLOCK_8X8 && mi_row + (mi_step >> 1) < cm->mi_rows) { in rd_use_partition() 1935 mi_row + (mi_step >> 1), mi_col, &tmp_rdc, in rd_use_partition() 1950 bsize >= BLOCK_8X8 && mi_col + (mi_step >> 1) < cm->mi_cols) { in rd_use_partition() 1957 mi_row, mi_col + (mi_step >> 1), &tmp_rdc, in rd_use_partition() 1979 int x_idx = (i & 1) * (mi_step >> 1); in rd_use_partition() 1980 int y_idx = (i >> 1) * (mi_step >> 1); in rd_use_partition() 2016 && (mi_row + mi_step < cm->mi_rows || in rd_use_partition() [all …]
|
D | vp9_rdopt.c | 2883 int vp9_active_h_edge(VP9_COMP *cpi, int mi_row, int mi_step) { in vp9_active_h_edge() argument 2900 if (((top_edge >= mi_row) && (top_edge < (mi_row + mi_step))) || in vp9_active_h_edge() 2901 ((bottom_edge >= mi_row) && (bottom_edge < (mi_row + mi_step)))) { in vp9_active_h_edge() 2910 int vp9_active_v_edge(VP9_COMP *cpi, int mi_col, int mi_step) { in vp9_active_v_edge() argument 2927 if (((left_edge >= mi_col) && (left_edge < (mi_col + mi_step))) || in vp9_active_v_edge() 2928 ((right_edge >= mi_col) && (right_edge < (mi_col + mi_step)))) { in vp9_active_v_edge()
|