Searched defs:mi_step (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c1844 const int mi_step = num_4x4_blocks_wide_lookup[bsize] / 2; local
1898 mi_row + (mi_step >> 1) < cm->mi_rows &&
1899 mi_col + (mi_step >> 1) < cm->mi_cols) {
1928 bsize >= BLOCK_8X8 && mi_row + (mi_step >> 1) < cm->mi_rows) {
1935 mi_row + (mi_step >> 1), mi_col, &tmp_rdc,
1950 bsize >= BLOCK_8X8 && mi_col + (mi_step >> 1) < cm->mi_cols) {
1957 mi_row, mi_col + (mi_step >> 1), &tmp_rdc,
1979 int x_idx = (i & 1) * (mi_step >> 1);
1980 int y_idx = (i >> 1) * (mi_step >> 1);
2016 && (mi_row + mi_step < c
2352 const int mi_step = num_8x8_blocks_wide_lookup[bsize] / 2; local
[all...]
H A Dvp9_rdopt.c2883 int vp9_active_h_edge(VP9_COMP *cpi, int mi_row, int mi_step) { argument
2900 if (((top_edge >= mi_row) && (top_edge < (mi_row + mi_step))) ||
2901 ((bottom_edge >= mi_row) && (bottom_edge < (mi_row + mi_step)))) {
2910 int vp9_active_v_edge(VP9_COMP *cpi, int mi_col, int mi_step) { argument
2927 if (((left_edge >= mi_col) && (left_edge < (mi_col + mi_step))) ||
2928 ((right_edge >= mi_col) && (right_edge < (mi_col + mi_step)))) {

Completed in 261 milliseconds