diff ppc/float_altivec.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 02798c603744
children
line wrap: on
line diff
--- a/ppc/float_altivec.c	Fri Jan 22 01:59:17 2010 +0000
+++ b/ppc/float_altivec.c	Fri Jan 22 03:25:11 2010 +0000
@@ -226,7 +226,7 @@
             dst+=8;
         }
     } else {
-        DECLARE_ALIGNED(16, int16_t, tmp[len]);
+        DECLARE_ALIGNED(16, int16_t, tmp)[len];
         int c, j;
         for (c = 0; c < channels; c++) {
             float_to_int16_altivec(tmp, src[c], len);