Ensure valid cost table is used
BUG=aomedia:685
Change-Id: I592016faeb4645cf43c599e0e2e11127e2a17c4e
diff --git a/av1/encoder/encodeframe.c b/av1/encoder/encodeframe.c
index 8a6d7e7..38f83fe 100644
--- a/av1/encoder/encodeframe.c
+++ b/av1/encoder/encodeframe.c
@@ -3427,7 +3427,8 @@
#endif
bsize);
#endif // CONFIG_CB4X4
- const int *partition_cost = x->partition_cost[pl];
+ const int *partition_cost =
+ pl >= 0 ? x->partition_cost[pl] : x->partition_cost[0];
#if CONFIG_SUPERTX
int this_rate_nocoef, sum_rate_nocoef = 0, best_rate_nocoef = INT_MAX;
int abort_flag;