Fix the memory alignment issue in predict_skip_flag_8bit
BUG=aomedia:899
Change-Id: Ia216eb8a7b1ef21a2643055816eada98cfb5d41a
diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c
index dac41b7..c7a992d 100644
--- a/av1/encoder/rdopt.c
+++ b/av1/encoder/rdopt.c
@@ -5356,7 +5356,7 @@
const struct macroblock_plane *const p = &x->plane[0];
const int bw = block_size_wide[bsize];
const int bh = block_size_high[bsize];
- tran_low_t DCT_coefs[32 * 32];
+ DECLARE_ALIGNED(32, tran_low_t, DCT_coefs[32 * 32]);
TxfmParam param;
param.tx_type = DCT_DCT;
#if CONFIG_RECT_TX && (CONFIG_EXT_TX || CONFIG_VAR_TX)