diff mbox series

[FFmpeg-devel] avcodec/aacps_tablegen: fix build error after 21814a7

Message ID tencent_3EE854D3E1136E75C6290E4EB8C549D31105@qq.com
State Accepted
Commit 814178f92647be2411516bbb82f48532373d2554
Headers show
Series [FFmpeg-devel] avcodec/aacps_tablegen: fix build error after 21814a7 | 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

Zhao Zhili Feb. 28, 2023, 6:23 p.m. UTC
From: Zhao Zhili <zhilizhao@tencent.com>

Fix tickets #10225

DECLARE_ALIGNED has been moved to mem_internal.h.

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
---
 libavcodec/aacps_tablegen.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Anton Khirnov March 1, 2023, 2:38 p.m. UTC | #1
Quoting Zhao Zhili (2023-02-28 19:23:00)
> From: Zhao Zhili <zhilizhao@tencent.com>
> 
> Fix tickets #10225
> 
> DECLARE_ALIGNED has been moved to mem_internal.h.
> 
> Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
> ---
>  libavcodec/aacps_tablegen.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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
> -- 
> 2.25.1

looks ok
diff mbox series

Patch

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