From 241aacca01ee167ec632194ea0edbeffa44145df Mon Sep 17 00:00:00 2001 From: David Conrad Date: Wed, 11 Nov 2009 20:53:49 -0800 Subject: [PATCH] Fix 10l in weightp on ARM --- encoder/slicetype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encoder/slicetype.c b/encoder/slicetype.c index 9c65d03d..615510a0 100644 --- a/encoder/slicetype.c +++ b/encoder/slicetype.c @@ -132,7 +132,7 @@ static NOINLINE unsigned int x264_weight_cost( x264_t *h, x264_frame_t *fenc, ui int i_lines = b_lowres ? fenc->i_lines_lowres : fenc->i_lines[0]; int i_width = b_lowres ? fenc->i_width_lowres : fenc->i_width[0]; uint8_t *fenc_plane = b_lowres ? fenc->lowres[0] : fenc->plane[0]; - ALIGNED_16( uint8_t buf[16*16] ); + ALIGNED_ARRAY_16( uint8_t, buf,[16*16] ); int pixoff = 0; int i_mb = 0; -- 2.40.0