Halve some ENTROPY_CONTEXT array sizes.
These arrays just need to have MAX_MIB_SIZE elements. This CL fixes
the arrays used with the av1_get_entropy_contexts() function.
BUG=aomedia:1847
Change-Id: I13d83530fb1f5d2b9e27bfd9dbd81c4cd4075255
diff --git a/av1/encoder/rd.h b/av1/encoder/rd.h
index 18fcf4e..281b676 100644
--- a/av1/encoder/rd.h
+++ b/av1/encoder/rd.h
@@ -407,8 +407,8 @@
void av1_get_entropy_contexts(BLOCK_SIZE bsize,
const struct macroblockd_plane *pd,
- ENTROPY_CONTEXT t_above[2 * MAX_MIB_SIZE],
- ENTROPY_CONTEXT t_left[2 * MAX_MIB_SIZE]);
+ ENTROPY_CONTEXT t_above[MAX_MIB_SIZE],
+ ENTROPY_CONTEXT t_left[MAX_MIB_SIZE]);
void av1_set_rd_speed_thresholds(struct AV1_COMP *cpi);