Remove the single ref inter mode NEWFROMNEARMV
Change-Id: I246da885154303d139f5d97c53ebfc55d6dc82ca
diff --git a/av1/common/mvref_common.c b/av1/common/mvref_common.c
index 442f83f..36f6cad 100644
--- a/av1/common/mvref_common.c
+++ b/av1/common/mvref_common.c
@@ -48,12 +48,7 @@
ref_mv_stack[index].weight = 2 * len;
++(*refmv_count);
-#if CONFIG_EXT_INTER
- if (candidate->mode == NEWMV || candidate->mode == NEWFROMNEARMV)
-#else
- if (candidate->mode == NEWMV)
-#endif // CONFIG_EXT_INTER
- ++newmv_count;
+ if (candidate->mode == NEWMV) ++newmv_count;
}
if (candidate_mi->mbmi.sb_type < BLOCK_8X8 && block >= 0 &&
@@ -76,12 +71,7 @@
ref_mv_stack[index].weight = len;
++(*refmv_count);
-#if CONFIG_EXT_INTER
- if (candidate->mode == NEWMV || candidate->mode == NEWFROMNEARMV)
-#else
- if (candidate->mode == NEWMV)
-#endif // CONFIG_EXT_INTER
- ++newmv_count;
+ if (candidate->mode == NEWMV) ++newmv_count;
}
}
}