diff imc.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 0dce4fe6e6f3
children 98970e51365a
line wrap: on
line diff
--- a/imc.c	Fri Jan 22 01:59:17 2010 +0000
+++ b/imc.c	Fri Jan 22 03:25:11 2010 +0000
@@ -84,8 +84,8 @@
 
     DSPContext dsp;
     FFTContext fft;
-    DECLARE_ALIGNED_16(FFTComplex, samples[COEFFS/2]);
-    DECLARE_ALIGNED_16(float, out_samples[COEFFS]);
+    DECLARE_ALIGNED_16(FFTComplex, samples)[COEFFS/2];
+    DECLARE_ALIGNED_16(float, out_samples)[COEFFS];
 } IMCContext;
 
 static VLC huffman_vlc[4][4];