Searched refs:this_mode (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 262 PREDICTION_MODE this_mode, in encode_breakout_test() argument 329 [INTER_OFFSET(this_mode)]; in encode_breakout_test() 365 PREDICTION_MODE this_mode, best_mode = ZEROMV; in vp9_pick_inter_mode() local 488 for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) { in vp9_pick_inter_mode() 493 (this_mode == NEARMV || this_mode == ZEROMV)) in vp9_pick_inter_mode() 496 if (!(cpi->sf.inter_mode_mask[bsize] & (1 << this_mode))) in vp9_pick_inter_mode() 500 [this_mode - NEARESTMV]]; in vp9_pick_inter_mode() 502 rd_thresh_freq_fact[this_mode])) in vp9_pick_inter_mode() 505 if (this_mode == NEWMV) { in vp9_pick_inter_mode() 514 if (this_mode != NEARESTMV && in vp9_pick_inter_mode() [all …]
|
D | vp9_rdopt.c | 1221 int inter_mode_mask, int this_mode, in check_best_zero_mv() argument 1224 (this_mode == NEARMV || this_mode == NEARESTMV || this_mode == ZEROMV) && in check_best_zero_mv() 1225 frame_mv[this_mode][ref_frames[0]].as_int == 0 && in check_best_zero_mv() 1227 frame_mv[this_mode][ref_frames[1]].as_int == 0)) { in check_best_zero_mv() 1233 if (this_mode == NEARMV) { in check_best_zero_mv() 1235 } else if (this_mode == NEARESTMV) { in check_best_zero_mv() 1238 assert(this_mode == ZEROMV); in check_best_zero_mv() 1275 PREDICTION_MODE this_mode; in rd_pick_best_sub8x8_mode() local 1332 for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) { in rd_pick_best_sub8x8_mode() 1336 mode_idx = INTER_OFFSET(this_mode); in rd_pick_best_sub8x8_mode() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 946 B_PREDICTION_MODE this_mode, in labels2mode() argument 983 switch (m = this_mode) in labels2mode() 1105 B_PREDICTION_MODE this_mode; in rd_check_segment() local 1160 for (this_mode = LEFT4X4; this_mode <= NEW4X4 ; this_mode ++) in rd_check_segment() 1175 if (this_mode == NEW4X4) in rd_check_segment() 1301 rate = labels2mode(x, labels, i, this_mode, &mode_mv[this_mode], in rd_check_segment() 1305 …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() 1306 …((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() 1323 mode_selected = this_mode; in rd_check_segment() 1762 MB_PREDICTION_MODE this_mode = x->e_mbd.mode_info_context->mbmi.mode; in evaluate_inter_mode_rd() local [all …]
|
D | pickinter.c | 487 MB_PREDICTION_MODE this_mode = x->e_mbd.mode_info_context->mbmi.mode; in evaluate_inter_mode() local 500 if((this_mode != NEWMV) || in evaluate_inter_mode() 509 if(this_mode == ZEROMV) in evaluate_inter_mode() 580 MB_PREDICTION_MODE this_mode; in vp8_pick_inter_mode() local 785 this_mode = vp8_mode_order[mode_index]; in vp8_pick_inter_mode() 787 x->e_mbd.mode_info_context->mbmi.mode = this_mode; in vp8_pick_inter_mode() 800 if (this_mode != ZEROMV || in vp8_pick_inter_mode() 805 switch (this_mode) in vp8_pick_inter_mode() 1051 if (mode_mv[this_mode].as_int == 0) in vp8_pick_inter_mode() 1061 if (((mode_mv[this_mode].as_mv.row >> 3) < x->mv_row_min) || in vp8_pick_inter_mode() [all …]
|