diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-23 12:09:06 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-24 12:56:49 +0100 |
commit | e82d94ee469944344ad63dc4ee8cdc6c88613e57 (patch) | |
tree | 26cad9d4619f8455ea2b99db4cdb61dbc9080a5c /libavutil/imgutils.h | |
parent | 9d78acd8617f21ad8fb2dd0e521f7752a9e3aabb (diff) | |
download | ffmpeg-e82d94ee469944344ad63dc4ee8cdc6c88613e57.tar.gz |
avutil/imgutils: Don't include avutil.h
It is a remnant of an FF_API_* inclusion (back from when they were in
avutil.h and not in version.h).
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil/imgutils.h')
-rw-r--r-- | libavutil/imgutils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/imgutils.h b/libavutil/imgutils.h index cb2d74728e..be53335568 100644 --- a/libavutil/imgutils.h +++ b/libavutil/imgutils.h @@ -27,8 +27,10 @@ * @{ */ -#include "avutil.h" +#include <stddef.h> +#include <stdint.h> #include "pixdesc.h" +#include "pixfmt.h" #include "rational.h" /** |