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/dcadata.h | |
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/dcadata.h')
-rw-r--r-- | libavcodec/dcadata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dcadata.h b/libavcodec/dcadata.h index 1ee7c5837a..b5eddcfab6 100644 --- a/libavcodec/dcadata.h +++ b/libavcodec/dcadata.h @@ -6282,7 +6282,7 @@ static const int8_t high_freq_vq[1024][32] = /* FIR filter coefficients, they can be cut on half and maybe use float instead of double*/ -static const float fir_32bands_perfect[] = +DECLARE_ALIGNED(16, static const float, fir_32bands_perfect)[] = { +1.135985195E-010, +7.018770981E-011, @@ -6798,7 +6798,7 @@ static const float fir_32bands_perfect[] = -1.135985195E-010 }; -static const float fir_32bands_nonperfect[] = +DECLARE_ALIGNED(16, static const float, fir_32bands_nonperfect)[] = { -1.390191784E-007, -1.693738625E-007, |