Home
last modified time | relevance | path

Searched refs:mi_step (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.h44 int vp9_active_h_edge(struct VP9_COMP *cpi, int mi_row, int mi_step);
45 int vp9_active_v_edge(struct VP9_COMP *cpi, int mi_col, int mi_step);
Dvp9_encodeframe.c2324 const int mi_step = num_4x4_blocks_wide_lookup[bsize] / 2; in rd_use_partition() local
2377 mi_row + (mi_step >> 1) < cm->mi_rows && in rd_use_partition()
2378 mi_col + (mi_step >> 1) < cm->mi_cols) { in rd_use_partition()
2406 mi_row + (mi_step >> 1) < cm->mi_rows) { in rd_use_partition()
2412 rd_pick_sb_modes(cpi, tile_data, x, mi_row + (mi_step >> 1), mi_col, in rd_use_partition()
2427 mi_col + (mi_step >> 1) < cm->mi_cols) { in rd_use_partition()
2433 rd_pick_sb_modes(cpi, tile_data, x, mi_row, mi_col + (mi_step >> 1), in rd_use_partition()
2455 int x_idx = (i & 1) * (mi_step >> 1); in rd_use_partition()
2456 int y_idx = (i >> 1) * (mi_step >> 1); in rd_use_partition()
2488 (mi_row + mi_step < cm->mi_rows || in rd_use_partition()
[all …]
Dvp9_rdopt.c2941 int vp9_active_h_edge(VP9_COMP *cpi, int mi_row, int mi_step) { in vp9_active_h_edge() argument
2958 if (((top_edge >= mi_row) && (top_edge < (mi_row + mi_step))) || in vp9_active_h_edge()
2959 ((bottom_edge >= mi_row) && (bottom_edge < (mi_row + mi_step)))) { in vp9_active_h_edge()
2968 int vp9_active_v_edge(VP9_COMP *cpi, int mi_col, int mi_step) { in vp9_active_v_edge() argument
2985 if (((left_edge >= mi_col) && (left_edge < (mi_col + mi_step))) || in vp9_active_v_edge()
2986 ((right_edge >= mi_col) && (right_edge < (mi_col + mi_step)))) { in vp9_active_v_edge()