From dd2c871aa304ccbc5d2c8be319597d85505ddf89 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 8 Aug 2021 08:13:11 +0200 Subject: [PATCH] avcodec/cabac_functions: Add missing headers Fixes make checkheaders on PPC, for which no arch-specific header exists that indirectly includes attributes.h. Signed-off-by: Andreas Rheinhardt --- libavcodec/cabac_functions.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/cabac_functions.h b/libavcodec/cabac_functions.h index 2f2d48a8f8..c3f08d3410 100644 --- a/libavcodec/cabac_functions.h +++ b/libavcodec/cabac_functions.h @@ -30,6 +30,8 @@ #include #include +#include "libavutil/attributes.h" +#include "libavutil/intmath.h" #include "cabac.h" #include "config.h"