diff options
author | Zhao Zhili <zhilizhao@tencent.com> | 2023-03-01 02:23:00 +0800 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-03-02 14:43:24 -0300 |
commit | 46970dd1555b3e50eee48ec95c893ee9a52f7fab (patch) | |
tree | cc9fe90a7fef2cfd40fb3a312946136d68ac1cb3 /libavcodec | |
parent | 0981053c294f8a0edf1a06c329574fb2ebb5d5da (diff) | |
download | ffmpeg-46970dd1555b3e50eee48ec95c893ee9a52f7fab.tar.gz |
avcodec/aacps_tablegen: fix build error after avutil bump
Fix tickets #10225
DECLARE_ALIGNED has been moved to mem_internal.h.
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
Reviewed-by: Anton Khirnov <anton@khirnov.net>
(cherry picked from commit 814178f92647be2411516bbb82f48532373d2554)
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aacps_tablegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacps_tablegen.h b/libavcodec/aacps_tablegen.h index 0ac4f68d68..5fdd7f0a9d 100644 --- a/libavcodec/aacps_tablegen.h +++ b/libavcodec/aacps_tablegen.h @@ -34,7 +34,7 @@ #include "libavutil/common.h" #include "libavutil/libm.h" #include "libavutil/mathematics.h" -#include "libavutil/mem.h" +#include "libavutil/mem_internal.h" #define NR_ALLPASS_BANDS20 30 #define NR_ALLPASS_BANDS34 50 #define PS_AP_LINKS 3 |