Searched refs:mv_col_max (Results 1 – 16 of 16) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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() 294 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_tree() 393 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_comp_tree() 470 ((col + range) <= x->mv_col_max); in check_bounds() 474 return (mv->col >= x->mv_col_min) && (mv->col <= x->mv_col_max) && in is_mv_in() 527 clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max); in vp9_pattern_search() 909 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() 927 end_col = MIN(range, x->mv_col_max - ref_col); in vp9_full_range_search_c() 1011 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() [all …]
|
D | vp9_mbgraph.c | 34 const int tmp_col_max = x->mv_col_max; in do_16x16_motion_iteration() 71 x->mv_col_max = tmp_col_max; in do_16x16_motion_iteration() 271 x->mv_col_max = (cm->mb_cols - 1) * 8 + BORDER_MV_PIXELS_B16; in update_mbgraph_frame_stats() 291 x->mv_col_max -= 16; in update_mbgraph_frame_stats()
|
D | vp9_pickmode.c | 44 int tmp_col_max = x->mv_col_max; in full_pixel_motion_search() 122 x->mv_col_max = tmp_col_max; in full_pixel_motion_search()
|
D | vp9_block.h | 147 int mv_col_max; member
|
D | vp9_temporal_filter.c | 248 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16) in temporal_filter_iterate_c()
|
D | vp9_rdopt.c | 1643 (mv->col >> 3) > x->mv_col_max; in mv_check_bounds() 1889 clamp_mv(&mvp_full, x->mv_col_min, x->mv_col_max, in rd_check_segment_txsize() 2386 int tmp_col_max = x->mv_col_max; in single_motion_search() 2505 x->mv_col_max = tmp_col_max; in single_motion_search() 2587 int tmp_col_max = x->mv_col_max; in joint_motion_search() 2629 x->mv_col_max = tmp_col_max; in joint_motion_search()
|
D | vp9_firstpass.c | 626 x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + BORDER_MV_PIXELS_B16; in vp9_first_pass()
|
D | vp9_encodeframe.c | 238 x->mv_col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | mcomp.c | 225 int maxc = MIN(x->mv_col_max * 4, in vp8_find_best_sub_pixel_step_iteratively() 815 all_in &= ((bc+range) <= x->mv_col_max);\ 821 if (this_mv.as_mv.col > x->mv_col_max) continue;\ 893 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() 1089 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() 1121 if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) && in vp8_diamond_search_sad_c() 1213 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() 1248 all_in &= ((best_mv->as_mv.col + ss[i+3].mv.col) < x->mv_col_max); in vp8_diamond_search_sadx4() 1289 if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) && in vp8_diamond_search_sadx4() 1386 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 | 1276 … 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() 1312 …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() 1431 int tmp_col_max = x->mv_col_max; in vp8_rd_pick_best_mbsegmentation() 1438 if (x->mv_col_max > col_max ) in vp8_rd_pick_best_mbsegmentation() 1439 x->mv_col_max = col_max; in vp8_rd_pick_best_mbsegmentation() 1484 x->mv_col_max = tmp_col_max; in vp8_rd_pick_best_mbsegmentation() 2254 int tmp_col_max = x->mv_col_max; in vp8_rd_pick_inter_mode() 2275 if (x->mv_col_max > col_max ) in vp8_rd_pick_inter_mode() 2276 x->mv_col_max = col_max; in vp8_rd_pick_inter_mode() 2358 x->mv_col_max = tmp_col_max; in vp8_rd_pick_inter_mode() [all …]
|
D | pickinter.c | 874 int tmp_col_max = x->mv_col_max; in vp8_pick_inter_mode() 954 if (x->mv_col_max > col_max ) in vp8_pick_inter_mode() 955 x->mv_col_max = col_max; in vp8_pick_inter_mode() 1025 x->mv_col_max = tmp_col_max; in vp8_pick_inter_mode() 1060 ((mode_mv[this_mode].as_mv.col >> 3) > x->mv_col_max)) in vp8_pick_inter_mode()
|
D | temporal_filter.c | 279 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 | 448 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()
|