[FFmpeg-cvslog] avcodec/aacdec: Move buffer to reduce padding

Andreas Rheinhardt git at videolan.org
Mon Mar 4 03:24:09 EET 2024


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Fri Mar  1 00:14:26 2024 +0100| [b9dea251d5ef29c44e9216dd23930d3695a34919] | committer: Andreas Rheinhardt

avcodec/aacdec: Move buffer to reduce padding

Reviewed-by: Lynne <dev at lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b9dea251d5ef29c44e9216dd23930d3695a34919
---

 libavcodec/aacdec.h | 3 +--
 1 file changed, 1 insertion(+), 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;



More information about the ffmpeg-cvslog mailing list