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.rheinha...@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.


_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to