Searched refs:row_max (Results 1 – 13 of 13) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 41 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range() local 46 row_max = VPXMIN(row_max, (MV_UPP >> 3) - 1); in vp9_set_mv_search_range() 53 if (mv_limits->row_max > row_max) mv_limits->row_max = row_max; in vp9_set_mv_search_range() 65 subpel_mv_limits->row_max = VPXMIN(umv_window_limits->row_max * 8, in vp9_set_subpel_mv_search_range() 71 subpel_mv_limits->row_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->row_max); in vp9_set_subpel_mv_search_range() 316 maxr = subpel_mv_limits.row_max; \ 675 maxr = subpel_mv_limits.row_max; in vp9_find_best_sub_pixel_tree() 784 ((row + range) <= mv_limits->row_max) & in check_bounds() 791 (mv->row >= mv_limits->row_min) && (mv->row <= mv_limits->row_max); in is_mv_in() 881 x->mv_limits.row_min, x->mv_limits.row_max); in vp9_pattern_search() [all …]
|
D | vp9_block.h | 61 int row_max; member
|
D | vp9_mbgraph.c | 230 x->mv_limits.row_max = (cm->mb_rows - 1) * 8 + BORDER_MV_PIXELS_B16; in update_mbgraph_frame_stats() 281 x->mv_limits.row_max -= 16; in update_mbgraph_frame_stats()
|
D | vp9_temporal_filter.c | 338 td->mb.mv_limits.row_max = in vp9_temporal_filter_iterate_row_c()
|
D | vp9_pickmode.c | 178 x->mv_limits.row_max = VPXMIN(x->mv_limits.row_max, 10); in combined_motion_search()
|
D | vp9_firstpass.c | 899 x->mv_limits.row_max = in vp9_first_pass_encode_tile_mb_row()
|
D | vp9_rdopt.c | 1635 (mv->row >> 3) > mv_limits->row_max || in mv_check_bounds()
|
D | vp9_encodeframe.c | 230 mv_limits->row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 1307 int row_max = ref_row + distance; in vp8_full_search_sad_c() local 1339 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sad_c() 1341 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sad_c() 1393 int row_max = ref_row + distance; in vp8_full_search_sadx3() local 1427 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sadx3() 1429 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sadx3() 1512 int row_max = ref_row + distance; in vp8_full_search_sadx8() local 1547 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sadx8() 1549 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sadx8()
|
D | rdopt.c | 1241 int row_max = (best_ref_mv->as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_best_mbsegmentation() local 1253 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_rd_pick_best_mbsegmentation() 2032 int row_max = (best_ref_mv.as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_inter_mode() local 2057 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_rd_pick_inter_mode()
|
D | pickinter.c | 1003 int row_max = (best_ref_mv.as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_pick_inter_mode() local 1084 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_pick_inter_mode()
|
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 565 int row_min = 0, col_min = 0, row_max=0, col_max = 0; in icvOrderFoundConnectedQuads() local 590 if (row > row_max) row_max = row; in icvOrderFoundConnectedQuads() 631 int drow = row_max - row_min + 1; in icvOrderFoundConnectedQuads() 671 if (row_hist[row_max+HSIZE] > row_hist[row_min+HSIZE]) in icvOrderFoundConnectedQuads() 679 quad_count = icvTrimRow(quads,quad_count,row_max,+1); in icvOrderFoundConnectedQuads() 710 row <= row_max && row >= row_min) in icvOrderFoundConnectedQuads()
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_diamond_search_sad_avx.c | 78 const int_mv maxmv = pack_int_mv(x->mv_limits.row_max, x->mv_limits.col_max); in vp9_diamond_search_sad_avx()
|