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.h | |
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.h')
-rw-r--r-- | libavcodec/aacpsdsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsdsp.h b/libavcodec/aacpsdsp.h index 909d3418f2..08d7490065 100644 --- a/libavcodec/aacpsdsp.h +++ b/libavcodec/aacpsdsp.h @@ -30,7 +30,7 @@ typedef struct PSDSPContext { void (*mul_pair_single)(float (*dst)[2], float (*src0)[2], float *src1, int n); void (*hybrid_analysis)(float (*out)[2], float (*in)[2], - const float (*filter)[7][2], + const float (*filter)[8][2], int stride, int n); void (*hybrid_analysis_ileave)(float (*out)[32][2], float L[2][38][64], int i, int len); |