Searched refs:mv_col_max (Results 1 – 16 of 16) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 46 if (x->mv_col_max > col_max) in vp9_set_mv_search_range() 47 x->mv_col_max = col_max; in vp9_set_mv_search_range() 292 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_tree() 373 ((col + range) <= x->mv_col_max); in check_bounds() 377 return (mv->col >= x->mv_col_min) && (mv->col <= x->mv_col_max) && in is_mv_in() 426 clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp9_pattern_search() 797 clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp9_full_range_search_c() 806 end_col = MIN(range, x->mv_col_max - ref_mv->col); in vp9_full_range_search_c() 882 clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp9_diamond_search_sad_c() 907 all_in &= ((best_mv->col + ss[i + 3].mv.col) < x->mv_col_max); in vp9_diamond_search_sad_c() [all …]
|
D | vp9_mbgraph.c | 33 const int tmp_col_max = x->mv_col_max; in do_16x16_motion_iteration() 69 x->mv_col_max = tmp_col_max; in do_16x16_motion_iteration() 260 x->mv_col_max = (cm->mb_cols - 1) * 8 + BORDER_MV_PIXELS_B16; in update_mbgraph_frame_stats() 278 x->mv_col_max -= 16; in update_mbgraph_frame_stats()
|
D | vp9_block.h | 95 int mv_col_max; member
|
D | vp9_pickmode.c | 124 const int tmp_col_max = x->mv_col_max; in combined_motion_search() 158 x->mv_col_max = tmp_col_max; in combined_motion_search()
|
D | vp9_temporal_filter.c | 243 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16) in temporal_filter_iterate_c()
|
D | vp9_rdopt.c | 1186 (mv->col >> 3) > x->mv_col_max; in mv_check_bounds() 1412 clamp_mv(&mvp_full, x->mv_col_min, x->mv_col_max, in rd_pick_best_sub8x8_mode() 1765 int tmp_col_max = x->mv_col_max; in single_motion_search() 1843 x->mv_col_max = tmp_col_max; in single_motion_search() 1925 int tmp_col_max = x->mv_col_max; in joint_motion_search() 1965 x->mv_col_max = tmp_col_max; in joint_motion_search()
|
D | vp9_firstpass.c | 591 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + BORDER_MV_PIXELS_B16; in vp9_first_pass()
|
D | vp9_encodeframe.c | 161 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 226 int maxc = MIN(x->mv_col_max * 4, in vp8_find_best_sub_pixel_step_iteratively() 816 all_in &= ((bc+range) <= x->mv_col_max);\ 822 if (this_mv.as_mv.col > x->mv_col_max) continue;\ 892 vp8_clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp8_hex_search() 1088 vp8_clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp8_diamond_search_sad_c() 1120 if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) && in vp8_diamond_search_sad_c() 1212 vp8_clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp8_diamond_search_sadx4() 1247 all_in &= ((best_mv->as_mv.col + ss[i+3].mv.col) < x->mv_col_max); in vp8_diamond_search_sadx4() 1288 if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) && in vp8_diamond_search_sadx4() 1385 if (col_max > x->mv_col_max) in vp8_full_search_sad_c() [all …]
|
D | block.h | 113 int mv_col_max; member
|
D | rdopt.c | 1270 … vp8_clamp_mv(&mvp_full, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in rd_check_segment() 1306 …is_mode].as_mv.col >> 3) < x->mv_col_min) || ((mode_mv[this_mode].as_mv.col >> 3) > x->mv_col_max)) in rd_check_segment() 1425 int tmp_col_max = x->mv_col_max; in vp8_rd_pick_best_mbsegmentation() 1432 if (x->mv_col_max > col_max ) in vp8_rd_pick_best_mbsegmentation() 1433 x->mv_col_max = col_max; in vp8_rd_pick_best_mbsegmentation() 1478 x->mv_col_max = tmp_col_max; in vp8_rd_pick_best_mbsegmentation() 2249 int tmp_col_max = x->mv_col_max; in vp8_rd_pick_inter_mode() 2270 if (x->mv_col_max > col_max ) in vp8_rd_pick_inter_mode() 2271 x->mv_col_max = col_max; in vp8_rd_pick_inter_mode() 2353 x->mv_col_max = tmp_col_max; in vp8_rd_pick_inter_mode() [all …]
|
D | pickinter.c | 878 int tmp_col_max = x->mv_col_max; in vp8_pick_inter_mode() 958 if (x->mv_col_max > col_max ) in vp8_pick_inter_mode() 959 x->mv_col_max = col_max; in vp8_pick_inter_mode() 1029 x->mv_col_max = tmp_col_max; in vp8_pick_inter_mode() 1064 ((mode_mv[this_mode].as_mv.col >> 3) > x->mv_col_max)) in vp8_pick_inter_mode()
|
D | temporal_filter.c | 280 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16) in vp8_temporal_filter_iterate_c()
|
D | ethreading.c | 146 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); in thread_encoding_proc()
|
D | encodeframe.c | 447 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) in encode_mb_row()
|
D | firstpass.c | 633 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); in vp8_first_pass()
|