[FFmpeg-cvslog] avfilter/lavfutils.h: Don't include avformat.h

Andreas Rheinhardt git at videolan.org
Thu Feb 25 23:15:00 EET 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Thu Feb 25 16:30:01 2021 +0100| [2869d7149394acfb3b544d76e5ef828db7a8dcff] | committer: Andreas Rheinhardt

avfilter/lavfutils.h: Don't include avformat.h

Only lavfutils.c needs avformat.h, not lavfutils.h.

Reviewed-by: James Almer <jamrial at gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2869d7149394acfb3b544d76e5ef828db7a8dcff
---

 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"
 
 /**
  * Load image from filename and put the resulting image in data.



More information about the ffmpeg-cvslog mailing list