Simplify motion compensated predictor logic
No need of special handle on sub8x8 block sizes.
Change-Id: I8487cd68eda0882fe50550af3998dc941ec13b21
diff --git a/av1/common/reconinter.h b/av1/common/reconinter.h
index db0b697..da6a4d6 100644
--- a/av1/common/reconinter.h
+++ b/av1/common/reconinter.h
@@ -428,8 +428,13 @@
const BLOCK_SIZE bsize = mbmi->sb_type;
int plane;
int ref = (dir >> 1);
+#if CONFIG_CB4X4
+ const int unify_bsize = 1;
+#else
+ const int unify_bsize = 0;
+#endif
- if (bsize >= BLOCK_8X8) {
+ if (bsize >= BLOCK_8X8 || unify_bsize) {
if (dir & 0x01) {
if (mbmi->mv[ref].as_mv.col & SUBPEL_MASK) return 1;
} else {