diff options
author | Mans Rullgard <mans@mansr.com> | 2012-01-13 14:31:18 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-01-28 14:56:18 +0000 |
commit | 8996ed2b7324f35798c4198b495f8a6955d2047d (patch) | |
tree | ef7f03c11dc75aca6ff932593e317e8183382ed8 /libavcodec/sbr.h | |
parent | aac46e088d67a390489af686b846dea4987d8ffb (diff) | |
download | ffmpeg-8996ed2b7324f35798c4198b495f8a6955d2047d.tar.gz |
aacsbr: align some arrays
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/sbr.h')
-rw-r--r-- | libavcodec/sbr.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/sbr.h b/libavcodec/sbr.h index 58f4b61341..7d06faddde 100644 --- a/libavcodec/sbr.h +++ b/libavcodec/sbr.h @@ -88,8 +88,8 @@ typedef struct { ///QMF values of the original signal float W[2][32][32][2]; ///QMF output of the HF adjustor - float Y[2][38][64][2]; - float g_temp[42][48]; + DECLARE_ALIGNED(16, float, Y)[2][38][64][2]; + DECLARE_ALIGNED(16, float, g_temp)[42][48]; float q_temp[42][48]; uint8_t s_indexmapped[8][48]; ///Envelope scalefactors @@ -156,15 +156,15 @@ typedef struct { uint8_t patch_num_subbands[6]; uint8_t patch_start_subband[6]; ///QMF low frequency input to the HF generator - float X_low[32][40][2]; + DECLARE_ALIGNED(16, float, X_low)[32][40][2]; ///QMF output of the HF generator - float X_high[64][40][2]; + DECLARE_ALIGNED(16, float, X_high)[64][40][2]; ///QMF values of the reconstructed signal DECLARE_ALIGNED(16, float, X)[2][2][38][64]; ///Zeroth coefficient used to filter the subband signals - float alpha0[64][2]; + DECLARE_ALIGNED(16, float, alpha0)[64][2]; ///First coefficient used to filter the subband signals - float alpha1[64][2]; + DECLARE_ALIGNED(16, float, alpha1)[64][2]; ///Dequantized envelope scalefactors, remapped float e_origmapped[7][48]; ///Dequantized noise scalefactors, remapped |