diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-23 18:44:36 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-24 12:56:49 +0100 |
commit | 2c2d76b50d7ca2ddf3faa396a94a762158128e2d (patch) | |
tree | 2c52c4d671747131f4a95788b46057288c260a4d /libavutil | |
parent | 94d5892beac349ddd2ed3bbac0c9100e3d171d36 (diff) | |
download | ffmpeg-2c2d76b50d7ca2ddf3faa396a94a762158128e2d.tar.gz |
avutil/integer: Don't include common.h
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/integer.c | 4 | ||||
-rw-r--r-- | 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 <michaelni@gmx.at> */ -#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 |