From 7e55ff15937b20729c26c5e09b1a49c4fa7d6949 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 7 May 2015 16:16:42 -0700 Subject: [PATCH] build_intra_predictors*: reduce left_col size this should only need to be the size of the largest block, i.e., 32, not 64. Change-Id: Ib8cb2424771fdd2a64c55379597248b2722a5ceb --- vp9/common/vp9_reconintra.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp9/common/vp9_reconintra.c b/vp9/common/vp9_reconintra.c index 11dd3f325..825d03d69 100644 --- a/vp9/common/vp9_reconintra.c +++ b/vp9/common/vp9_reconintra.c @@ -657,7 +657,7 @@ static void build_intra_predictors_high(const MACROBLOCKD *xd, int i; uint16_t *dst = CONVERT_TO_SHORTPTR(dst8); uint16_t *ref = CONVERT_TO_SHORTPTR(ref8); - DECLARE_ALIGNED(16, uint16_t, left_col[64]); + DECLARE_ALIGNED(16, uint16_t, left_col[32]); DECLARE_ALIGNED(16, uint16_t, above_data[128 + 16]); uint16_t *above_row = above_data + 16; const uint16_t *const_above_row = above_row; @@ -780,7 +780,7 @@ static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int right_available, int x, int y, int plane) { int i; - DECLARE_ALIGNED(16, uint8_t, left_col[64]); + DECLARE_ALIGNED(16, uint8_t, left_col[32]); DECLARE_ALIGNED(16, uint8_t, above_data[128 + 16]); uint8_t *above_row = above_data + 16; const uint8_t *const_above_row = above_row;