OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MI_SIZE
(Results
1 - 6
of
6
) sorted by null
/external/libvpx/libvpx/vp9/common/
vp9_enums.h
19
#define
MI_SIZE
(1 << MI_SIZE_LOG2) // pixels per mi-unit
vp9_reconinter.h
53
const int x = (
MI_SIZE
* mi_col) >> subsampling_x;
54
const int y = (
MI_SIZE
* mi_row) >> subsampling_y;
vp9_onyxc_int.h
272
xd->mb_to_top_edge = -((mi_row *
MI_SIZE
) * 8);
273
xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) *
MI_SIZE
) * 8;
274
xd->mb_to_left_edge = -((mi_col *
MI_SIZE
) * 8);
275
xd->mb_to_right_edge = ((mi_cols - bw - mi_col) *
MI_SIZE
) * 8;
vp9_reconinter.c
195
const int mi_x = mi_col *
MI_SIZE
;
196
const int mi_y = mi_row *
MI_SIZE
;
/external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c
542
x->mv_row_min = -(((mi_row + mi_height) *
MI_SIZE
) + VP9_INTERP_EXTEND);
543
x->mv_col_min = -(((mi_col + mi_width) *
MI_SIZE
) + VP9_INTERP_EXTEND);
544
x->mv_row_max = (cm->mi_rows - mi_row) *
MI_SIZE
+ VP9_INTERP_EXTEND;
545
x->mv_col_max = (cm->mi_cols - mi_col) *
MI_SIZE
+ VP9_INTERP_EXTEND;
[
all
...]
vp9_rdopt.c
[
all
...]
Completed in 87 milliseconds