Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_pickmode.c213 MB_PREDICTION_MODE this_mode, best_mode = ZEROMV; in vp9_pick_inter_mode() local
288 for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) { in vp9_pick_inter_mode()
292 (1 << INTER_OFFSET(this_mode))) in vp9_pick_inter_mode()
295 if (best_rd < ((int64_t)rd_threshes[mode_idx[this_mode]] * in vp9_pick_inter_mode()
296 rd_thresh_freq_fact[this_mode] >> 5) || in vp9_pick_inter_mode()
297 rd_threshes[mode_idx[this_mode]] == INT_MAX) in vp9_pick_inter_mode()
300 if (this_mode == NEWMV) { in vp9_pick_inter_mode()
314 if (this_mode != NEARESTMV) in vp9_pick_inter_mode()
315 if (frame_mv[this_mode][ref_frame].as_int == in vp9_pick_inter_mode()
319 mbmi->mode = this_mode; in vp9_pick_inter_mode()
[all …]
Dvp9_rdopt.c1678 int disable_inter_mode_mask, int this_mode, int ref_frame, in check_best_zero_mv() argument
1681 (this_mode == NEARMV || this_mode == NEARESTMV || this_mode == ZEROMV) && in check_best_zero_mv()
1682 frame_mv[this_mode][ref_frame].as_int == 0 && in check_best_zero_mv()
1684 frame_mv[this_mode][second_ref_frame].as_int == 0)) { in check_best_zero_mv()
1690 if (this_mode == NEARMV) { in check_best_zero_mv()
1692 } else if (this_mode == NEARESTMV) { in check_best_zero_mv()
1695 assert(this_mode == ZEROMV); in check_best_zero_mv()
1719 MB_PREDICTION_MODE this_mode; in rd_check_segment_txsize() local
1771 for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) { in rd_check_segment_txsize()
1775 mode_idx = INTER_OFFSET(this_mode); in rd_check_segment_txsize()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Drdopt.c952 B_PREDICTION_MODE this_mode, in labels2mode() argument
989 switch (m = this_mode) in labels2mode()
1111 B_PREDICTION_MODE this_mode; in rd_check_segment() local
1166 for (this_mode = LEFT4X4; this_mode <= NEW4X4 ; this_mode ++) in rd_check_segment()
1181 if (this_mode == NEW4X4) in rd_check_segment()
1307 rate = labels2mode(x, labels, i, this_mode, &mode_mv[this_mode], in rd_check_segment()
1311 …if (((mode_mv[this_mode].as_mv.row >> 3) < x->mv_row_min) || ((mode_mv[this_mode].as_mv.row >> 3) … in rd_check_segment()
1312 …((mode_mv[this_mode].as_mv.col >> 3) < x->mv_col_min) || ((mode_mv[this_mode].as_mv.col >> 3) > x-… in rd_check_segment()
1329 mode_selected = this_mode; in rd_check_segment()
1768 MB_PREDICTION_MODE this_mode = x->e_mbd.mode_info_context->mbmi.mode; in evaluate_inter_mode_rd() local
[all …]
Dpickinter.c489 MB_PREDICTION_MODE this_mode = x->e_mbd.mode_info_context->mbmi.mode; in evaluate_inter_mode() local
502 if((this_mode != NEWMV) || in evaluate_inter_mode()
511 if(this_mode == ZEROMV) in evaluate_inter_mode()
582 MB_PREDICTION_MODE this_mode; in vp8_pick_inter_mode() local
781 this_mode = vp8_mode_order[mode_index]; in vp8_pick_inter_mode()
783 x->e_mbd.mode_info_context->mbmi.mode = this_mode; in vp8_pick_inter_mode()
796 if (this_mode != ZEROMV || in vp8_pick_inter_mode()
801 switch (this_mode) in vp8_pick_inter_mode()
1047 if (mode_mv[this_mode].as_int == 0) in vp8_pick_inter_mode()
1057 if (((mode_mv[this_mode].as_mv.row >> 3) < x->mv_row_min) || in vp8_pick_inter_mode()
[all …]