diff options
author | Mans Rullgard <mans@mansr.com> | 2012-01-27 01:24:55 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-05-05 22:04:21 +0100 |
commit | 47d18d5354e06d4ef7349449fd049b516d6b0ee2 (patch) | |
tree | 4013541c0e433ac0a7c74cf3e09134ec9c491677 /libavcodec/aacpsdsp.c | |
parent | bf1945af301aff54c33352e75f17aec6cb5269d7 (diff) | |
download | ffmpeg-47d18d5354e06d4ef7349449fd049b516d6b0ee2.tar.gz |
aacps: align some arrays
This is required for SIMD optimisations.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/aacpsdsp.c')
-rw-r--r-- | libavcodec/aacpsdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsdsp.c b/libavcodec/aacpsdsp.c index 3d9eb61fd6..c8a2c311cf 100644 --- a/libavcodec/aacpsdsp.c +++ b/libavcodec/aacpsdsp.c @@ -40,7 +40,7 @@ static void ps_mul_pair_single_c(float (*dst)[2], float (*src0)[2], float *src1, } static void ps_hybrid_analysis_c(float (*out)[2], float (*in)[2], - const float (*filter)[7][2], + const float (*filter)[8][2], int stride, int n) { int i, j; |