diff dca.c @ 11591:59a801bfc636 libavcodec

DCA: align some arrays Optimised implementations of the synth filter will require these arrays 16-byte aligned.
author mru
date Sat, 10 Apr 2010 16:27:47 +0000
parents 8a4984c5cacc
children 18f17f44de37
line wrap: on
line diff
--- a/dca.c	Thu Apr 08 06:27:39 2010 +0000
+++ b/dca.c	Sat Apr 10 16:27:47 2010 +0000
@@ -230,7 +230,7 @@
     /* Subband samples history (for ADPCM) */
     float subband_samples_hist[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS][4];
     DECLARE_ALIGNED(16, float, subband_fir_hist)[DCA_PRIM_CHANNELS_MAX][512];
-    float subband_fir_noidea[DCA_PRIM_CHANNELS_MAX][32];
+    DECLARE_ALIGNED(16, float, subband_fir_noidea)[DCA_PRIM_CHANNELS_MAX][32];
     int hist_index[DCA_PRIM_CHANNELS_MAX];
     DECLARE_ALIGNED(16, float, raXin)[32];