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

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents b1218e0b0f2b
children 98970e51365a
line wrap: on
line diff
--- a/x86/cavsdsp_mmx.c	Fri Jan 22 01:59:17 2010 +0000
+++ b/x86/cavsdsp_mmx.c	Fri Jan 22 03:25:11 2010 +0000
@@ -113,7 +113,7 @@
 static void cavs_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride)
 {
     int i;
-    DECLARE_ALIGNED_8(int16_t, b2[64]);
+    DECLARE_ALIGNED_8(int16_t, b2)[64];
 
     for(i=0; i<2; i++){
         DECLARE_ALIGNED_8(uint64_t, tmp);