Index: source/libvpx/vp9/encoder/vp9_variance.c |
diff --git a/source/libvpx/vp9/encoder/vp9_variance.c b/source/libvpx/vp9/encoder/vp9_variance.c |
index fea5f3351cf7183bde627060410e23bb151e10f4..f38f96d6c26b37c7b1b82ad69b43c29e6fa059d9 100644 |
--- a/source/libvpx/vp9/encoder/vp9_variance.c |
+++ b/source/libvpx/vp9/encoder/vp9_variance.c |
@@ -145,7 +145,7 @@ unsigned int vp9_sub_pixel_avg_variance##W##x##H##_c( \ |
const uint8_t *second_pred) { \ |
uint16_t fdata3[(H + 1) * W]; \ |
uint8_t temp2[H * W]; \ |
- DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, H * W); \ |
+ DECLARE_ALIGNED(16, uint8_t, temp3[H * W]); \ |
\ |
var_filter_block2d_bil_first_pass(src, fdata3, src_stride, 1, H + 1, W, \ |
BILINEAR_FILTERS_2TAP(xoffset)); \ |
@@ -464,7 +464,7 @@ unsigned int vp9_highbd_sub_pixel_avg_variance##W##x##H##_c( \ |
const uint8_t *second_pred) { \ |
uint16_t fdata3[(H + 1) * W]; \ |
uint16_t temp2[H * W]; \ |
- DECLARE_ALIGNED_ARRAY(16, uint16_t, temp3, H * W); \ |
+ DECLARE_ALIGNED(16, uint16_t, temp3[H * W]); \ |
\ |
highbd_var_filter_block2d_bil_first_pass(src, fdata3, src_stride, 1, H + 1, \ |
W, BILINEAR_FILTERS_2TAP(xoffset)); \ |
@@ -486,7 +486,7 @@ unsigned int vp9_highbd_10_sub_pixel_avg_variance##W##x##H##_c( \ |
const uint8_t *second_pred) { \ |
uint16_t fdata3[(H + 1) * W]; \ |
uint16_t temp2[H * W]; \ |
- DECLARE_ALIGNED_ARRAY(16, uint16_t, temp3, H * W); \ |
+ DECLARE_ALIGNED(16, uint16_t, temp3[H * W]); \ |
\ |
highbd_var_filter_block2d_bil_first_pass(src, fdata3, src_stride, 1, H + 1, \ |
W, BILINEAR_FILTERS_2TAP(xoffset)); \ |
@@ -508,7 +508,7 @@ unsigned int vp9_highbd_12_sub_pixel_avg_variance##W##x##H##_c( \ |
const uint8_t *second_pred) { \ |
uint16_t fdata3[(H + 1) * W]; \ |
uint16_t temp2[H * W]; \ |
- DECLARE_ALIGNED_ARRAY(16, uint16_t, temp3, H * W); \ |
+ DECLARE_ALIGNED(16, uint16_t, temp3[H * W]); \ |
\ |
highbd_var_filter_block2d_bil_first_pass(src, fdata3, src_stride, 1, H + 1, \ |
W, BILINEAR_FILTERS_2TAP(xoffset)); \ |