diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-08 08:13:11 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-21 13:09:57 +0100 |
commit | dd2c871aa304ccbc5d2c8be319597d85505ddf89 (patch) | |
tree | d66eed6370df681bc275d5efc440e20aef437944 | |
parent | 760b4709ab241d71a53ff42a01d12c33f6507d05 (diff) | |
download | ffmpeg-dd2c871aa304ccbc5d2c8be319597d85505ddf89.tar.gz |
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 <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/cabac_functions.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 <stddef.h> #include <stdint.h> +#include "libavutil/attributes.h" +#include "libavutil/intmath.h" #include "cabac.h" #include "config.h" |