From 40d1122752242f5404a42dd824fecfb531714253 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Wed, 17 Feb 2010 20:36:20 +0000 Subject: Use LOCAL_ALIGNED macro for local arrays Originally committed as revision 21866 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264_loopfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h264_loopfilter.c') diff --git a/libavcodec/h264_loopfilter.c b/libavcodec/h264_loopfilter.c index cef256ad7d..1e2b044056 100644 --- a/libavcodec/h264_loopfilter.c +++ b/libavcodec/h264_loopfilter.c @@ -367,7 +367,7 @@ void ff_h264_filter_mb_fast( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, filter_mb_edgech( &img_cr[2*2*uvlinesize], uvlinesize, bS3, qpc, h); return; } else { - DECLARE_ALIGNED_8(int16_t, bS)[2][4][4]; + LOCAL_ALIGNED_8(int16_t, bS, [2], [4][4]); uint64_t (*bSv)[4] = (uint64_t(*)[4])bS; int edges; if( IS_8x8DCT(mb_type) && (h->cbp&7) == 7 ) { -- cgit v1.2.3