diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-01 00:14:26 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-04 02:11:50 +0100 |
commit | b9dea251d5ef29c44e9216dd23930d3695a34919 (patch) | |
tree | 5696a1d82a4208593a2247bb4926dd0fc40c0df8 | |
parent | aaf26cffbac108cc3a4916e3284590e68b816865 (diff) | |
download | ffmpeg-b9dea251d5ef29c44e9216dd23930d3695a34919.tar.gz |
avcodec/aacdec: Move buffer to reduce padding
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/aacdec.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/aacdec.h b/libavcodec/aacdec.h index e23310b5b1..1b245f9258 100644 --- a/libavcodec/aacdec.h +++ b/libavcodec/aacdec.h @@ -207,6 +207,7 @@ typedef struct AACDecContext { * @{ */ DECLARE_ALIGNED(32, INTFLOAT, buf_mdct)[1024]; + DECLARE_ALIGNED(32, INTFLOAT, temp)[128]; /** @} */ /** @@ -254,8 +255,6 @@ typedef struct AACDecContext { enum AACOutputChannelOrder output_channel_order; - DECLARE_ALIGNED(32, INTFLOAT, temp)[128]; - OutputConfiguration oc[2]; int warned_num_aac_frames; int warned_960_sbr; |