Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavutil/integer.c | 4 +++- libavutil/integer.h | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/libavutil/integer.c b/libavutil/integer.c index 78e252fbde..b709c6d487 100644 --- a/libavutil/integer.c +++ b/libavutil/integer.c @@ -25,9 +25,11 @@ * @author Michael Niedermayer <[email protected]> */ -#include "common.h" +#include <string.h> + #include "integer.h" #include "avassert.h" +#include "intmath.h" static const AVInteger zero_i; diff --git a/libavutil/integer.h b/libavutil/integer.h index 45f733c04c..2d9b5bb10f 100644 --- a/libavutil/integer.h +++ b/libavutil/integer.h @@ -29,7 +29,7 @@ #define AVUTIL_INTEGER_H #include <stdint.h> -#include "common.h" +#include "attributes.h" #define AV_INTEGER_SIZE 8 -- 2.32.0 _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
