Correct an assertion
BUG=aomedia:1476
Change-Id: I02f4d26b4f53658823631bae9ade68d204859045
diff --git a/av1/common/reconinter.c b/av1/common/reconinter.c
index 547eb4e..f672fba 100644
--- a/av1/common/reconinter.c
+++ b/av1/common/reconinter.c
@@ -975,7 +975,7 @@
is_compound = has_second_ref(this_mbmi);
DECLARE_ALIGNED(32, int32_t, tmp_dst[8 * 8]);
int tmp_dst_stride = 8;
- assert(w <= 8 && h <= 8);
+ assert(w < 8 || h < 8);
ConvolveParams conv_params = get_conv_params_no_round(
0, 0, plane, tmp_dst, tmp_dst_stride, is_compound, xd->bd);
#if CONFIG_JNT_COMP