Index: source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c |
diff --git a/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c b/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c |
index ab18490dce32dc900b13acac0c1fe084955a31c9..17422798c13158498cdb2e103dec3bf9d5846b4d 100644 |
--- a/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c |
+++ b/source/libvpx/vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c |
@@ -413,7 +413,7 @@ void vp9_convolve8_avg_dspr2(const uint8_t *src, ptrdiff_t src_stride, |
const int16_t *filter_y, int y_step_q4, |
int w, int h) { |
/* Fixed size intermediate buffer places limits on parameters. */ |
- DECLARE_ALIGNED_ARRAY(32, uint8_t, temp, 64 * 135); |
+ DECLARE_ALIGNED(32, uint8_t, temp[64 * 135]); |
int32_t intermediate_height = ((h * y_step_q4) >> 4) + 7; |
assert(w <= 64); |