diff options
author | Måns Rullgård <mans@mansr.com> | 2010-04-10 16:27:47 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-04-10 16:27:47 +0000 |
commit | 38d52f3ea32413a644c4dec22264f3955f90d495 (patch) | |
tree | 1f889c301b60af049129c0a2acaea059443303fd /libavcodec/dca.c | |
parent | b9f60bd8fdc3b1de67d0ee061b24ea0dcd135bd0 (diff) | |
download | ffmpeg-38d52f3ea32413a644c4dec22264f3955f90d495.tar.gz |
DCA: align some arrays
Optimised implementations of the synth filter will require these
arrays 16-byte aligned.
Originally committed as revision 22826 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dca.c')
-rw-r--r-- | libavcodec/dca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 18074cf404..960228202e 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -230,7 +230,7 @@ typedef struct { /* 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]; |