[FFmpeg-devel] [PATCH] avfilter/lavfutils.h: Don't include avformat.h
James Almer
jamrial at gmail.com
Thu Feb 25 20:53:33 EET 2021
On 2/25/2021 1:35 PM, Andreas Rheinhardt wrote:
> Only lavfutils.c needs avformat.h, not lavfutils.h.
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> ---
> libavfilter/lavfutils.c | 1 +
> libavfilter/lavfutils.h | 3 ++-
> 2 files changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/libavfilter/lavfutils.c b/libavfilter/lavfutils.c
> index f8f8415c80..34051ee61d 100644
> --- a/libavfilter/lavfutils.c
> +++ b/libavfilter/lavfutils.c
> @@ -19,6 +19,7 @@
> */
>
> #include "libavutil/imgutils.h"
> +#include "libavformat/avformat.h"
> #include "lavfutils.h"
>
> int ff_load_image(uint8_t *data[4], int linesize[4],
> diff --git a/libavfilter/lavfutils.h b/libavfilter/lavfutils.h
> index 2d5308f79c..96738cead1 100644
> --- a/libavfilter/lavfutils.h
> +++ b/libavfilter/lavfutils.h
> @@ -24,7 +24,8 @@
> #ifndef AVFILTER_LAVFUTILS_H
> #define AVFILTER_LAVFUTILS_H
>
> -#include "libavformat/avformat.h"
> +#include <stdint.h>
> +#include "libavutil/pixfmt.h"
Ok if make checkheaders passes.
>
> /**
> * Load image from filename and put the resulting image in data.
>
More information about the ffmpeg-devel
mailing list