bugfix c071 off mismatch
this MR fixes the mismatch when c071 macro is off
For #141
diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c
index 66ba7b1..2f98b88 100644
--- a/av1/encoder/rdopt.c
+++ b/av1/encoder/rdopt.c
@@ -959,16 +959,6 @@
#endif // CONFIG_C071_SUBBLK_WARPMV
const MACROBLOCKD *const xd = &x->e_mbd;
*out_mv = in_mv;
-#if !CONFIG_C071_SUBBLK_WARPMV
-#if CONFIG_FLEX_MVRES
- // This function is called only for non-NEW MV modes.
- // Therefore, PB based MV resolution is not necessary.
- lower_mv_precision(&out_mv->as_mv, cm->features.fr_mv_precision);
-#else
- lower_mv_precision(&out_mv->as_mv, cm->features.allow_high_precision_mv,
- cm->features.cur_frame_force_integer_mv);
-#endif
-#endif // !CONFIG_C071_SUBBLK_WARPMV
clamp_mv2(&out_mv->as_mv, xd);
return av1_is_fullmv_in_range(&x->mv_limits,
get_fullmv_from_mv(&out_mv->as_mv)