/external/libvpx/libvpx/vp9/common/ |
vp9_enums.h | 121 #define NEWMV 13 127 #define INTER_MODES (1 + NEWMV - NEARESTMV)
|
vp9_blockd.h | 41 return mode >= NEARESTMV && mode <= NEWMV;
|
vp9_entropymode.c | 256 -INTER_OFFSET(NEWMV)
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_speed_features.h | 32 INTER_ALL = (1 << NEARESTMV) | (1 << NEARMV) | (1 << ZEROMV) | (1 << NEWMV), 34 INTER_NEAREST_NEW = (1 << NEARESTMV) | (1 << NEWMV), 36 INTER_NEAREST_NEW_ZERO = (1 << NEARESTMV) | (1 << ZEROMV) | (1 << NEWMV), 37 INTER_NEAREST_NEAR_NEW = (1 << NEARESTMV) | (1 << NEARMV) | (1 << NEWMV), 404 // A binary mask indicating if NEARESTMV, NEARMV, ZEROMV, NEWMV 468 // 2: Skip golden non-zeromv and newmv-last for bsize >= 16x16, skip ALL 474 // Limits the rd-threshold update for early exit for the newmv-last mode,
|
vp9_pickmode.c | 209 cpi->inter_mode_cost[x->mbmi_ext->mode_context[ref]][INTER_OFFSET(NEWMV)]; [all...] |
vp9_encodemv.c | 264 if (mi->bmi[i].as_mode == NEWMV) 269 if (mi->mode == NEWMV) inc_mvs(mi, mbmi_ext, mi->mv, &td->counts->mv);
|
vp9_rdopt.c | 88 { NEWMV, { LAST_FRAME, NONE } }, 89 { NEWMV, { ALTREF_FRAME, NONE } }, 90 { NEWMV, { GOLDEN_FRAME, NONE } }, 106 { NEWMV, { LAST_FRAME, ALTREF_FRAME } }, 108 { NEWMV, { GOLDEN_FRAME, ALTREF_FRAME } }, [all...] |
vp9_mbgraph.c | 67 xd->mi[0]->mode = NEWMV;
|
vp9_bitstream.c | 317 if (b_mode == NEWMV) { 326 if (mode == NEWMV) { [all...] |
vp9_firstpass.c | [all...] |
/external/libvpx/libvpx/vp8/common/ |
entropymode.c | 88 -NEARMV, 6, -NEWMV, -SPLITMV };
|
blockd.h | 72 NEWMV,
|
vp8_loopfilter.c | 45 lfi->mode_lf_lut[NEWMV] = 2;
|
/external/libvpx/libvpx/vp8/encoder/ |
pickinter.c | 454 * therefore, only need to modify MVcount in NEWMV mode. */ 455 if (xd->mode_info_context->mbmi.mode == NEWMV) { 553 if ((this_mode != NEWMV) || !(cpi->sf.half_pixel_search) || 887 if (vp8_mode_order[mode_index] == NEWMV && parent_mode == ZEROMV && 890 else if (vp8_mode_order[mode_index] == NEWMV && dissim == 0 && [all...] |
rdopt.c | 80 NEWMV, NEWMV, NEWMV, [all...] |
bitstream.c | 540 case NEWMV: [all...] |
firstpass.c | 673 vp8_set_mbmode_and_mvs(x, NEWMV, &d->bmi.mv); [all...] |
mcomp.c | [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
decodemv.c | 422 * modes since those modes clamp the MV. The NEWMV mode 429 mbmi->mode = NEWMV;
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodemv.c | 410 case NEWMV: { 513 // If mode is nearestmv or newmv (uses nearestmv as a reference) then stop 741 // Sub 8x8 blocks use the nearestmv as a ref_mv if the b_mode is NEWMV.
|