diff options
author | Måns Rullgård <mans@mansr.com> | 2008-12-10 00:50:59 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-12-10 00:50:59 +0000 |
commit | 8153f14444519e0aec299678ad9bc4268d55acff (patch) | |
tree | ed95f4e56f88645069785185da38977520702f04 /libavcodec/aac.h | |
parent | 7b5e49fe2ed4d0169a00bf471e5e695d99c72b9f (diff) | |
download | ffmpeg-8153f14444519e0aec299678ad9bc4268d55acff.tar.gz |
AAC: move scratch array to context to ensure 16-byte alignment
Originally committed as revision 16043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 6022ca66be..dab85b990d 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -288,6 +288,7 @@ typedef struct { int sf_offset; ///< offset into pow2sf_tab as appropriate for dsp.float_to_int16 /** @} */ + DECLARE_ALIGNED(16, float, temp[128]); } AACContext; #endif /* AVCODEC_AAC_H */ |