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

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

Completed in 88 milliseconds