Home
last modified time | relevance | path

Searched refs:row_max (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_mcomp.c35 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range() local
40 row_max = MIN(row_max, (MV_UPP >> 3) - 1); in vp9_set_mv_search_range()
50 if (x->mv_row_max > row_max) in vp9_set_mv_search_range()
51 x->mv_row_max = row_max; in vp9_set_mv_search_range()
1313 const int row_max = MIN(ref_mv->row + distance, x->mv_row_max); in vp9_full_search_sad_c() local
1324 for (r = row_min; r < row_max; ++r) { in vp9_full_search_sad_c()
1361 const int row_max = MIN(ref_row + distance, x->mv_row_max); in vp9_full_search_sadx3() local
1381 for (r = row_min; r < row_max; r++) { in vp9_full_search_sadx3()
1452 const int row_max = MIN(ref_row + distance, x->mv_row_max); in vp9_full_search_sadx8() local
1474 for (r = row_min; r < row_max; r++) { in vp9_full_search_sadx8()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dmcomp.c1356 int row_max = ref_row + distance; in vp8_full_search_sad_c() local
1392 if (row_max > x->mv_row_max) in vp8_full_search_sad_c()
1393 row_max = x->mv_row_max; in vp8_full_search_sad_c()
1395 for (r = row_min; r < row_max ; r++) in vp8_full_search_sad_c()
1452 int row_max = ref_row + distance; in vp8_full_search_sadx3() local
1490 if (row_max > x->mv_row_max) in vp8_full_search_sadx3()
1491 row_max = x->mv_row_max; in vp8_full_search_sadx3()
1493 for (r = row_min; r < row_max ; r++) in vp8_full_search_sadx3()
1586 int row_max = ref_row + distance; in vp8_full_search_sadx8() local
1625 if (row_max > x->mv_row_max) in vp8_full_search_sadx8()
[all …]
Dpickinter.c870 int row_max = (best_ref_mv.as_mv.row>>3) in vp8_pick_inter_mode() local
958 if (x->mv_row_max > row_max ) in vp8_pick_inter_mode()
959 x->mv_row_max = row_max; in vp8_pick_inter_mode()
Drdopt.c1428 int row_max = (best_ref_mv->as_mv.row>>3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_best_mbsegmentation() local
1442 if (x->mv_row_max > row_max ) in vp8_rd_pick_best_mbsegmentation()
1443 x->mv_row_max = row_max; in vp8_rd_pick_best_mbsegmentation()
2251 int row_max = (best_ref_mv.as_mv.row>>3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_inter_mode() local
2279 if (x->mv_row_max > row_max ) in vp8_rd_pick_inter_mode()
2280 x->mv_row_max = row_max; in vp8_rd_pick_inter_mode()