diff x86/snowdsp_mmx.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 6bf01d174630
children 98970e51365a
line wrap: on
line diff
--- a/x86/snowdsp_mmx.c	Fri Jan 22 01:59:17 2010 +0000
+++ b/x86/snowdsp_mmx.c	Fri Jan 22 03:25:11 2010 +0000
@@ -25,7 +25,7 @@
 
 void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){
     const int w2= (width+1)>>1;
-    DECLARE_ALIGNED_16(IDWTELEM, temp[width>>1]);
+    DECLARE_ALIGNED_16(IDWTELEM, temp)[width>>1];
     const int w_l= (width>>1);
     const int w_r= w2 - 1;
     int i;