diff mbox series

[FFmpeg-devel,3/4] avcodec/aacdec: Move buffer to reduce padding

Message ID AS8P250MB07445EB97500492B582ACA6F8F5E2@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit b9dea251d5ef29c44e9216dd23930d3695a34919
Headers show
Series [FFmpeg-devel,1/4] avcodec/lpc: Don't use AAC defines directly | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt March 1, 2024, 3:08 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/aacdec.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

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;