[FFmpeg-cvslog] avfilter/stack_internal: add missing header includes

James Almer git at videolan.org
Fri Mar 10 21:30:43 EET 2023


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Mar  7 23:56:30 2023 -0300| [205117d87fdc01cd8e150aa6f4d16cf69f7b4ca4] | committer: James Almer

avfilter/stack_internal: add missing header includes

Fixes make checkheaders

Signed-off-by: James Almer <jamrial at gmail.com>

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

 libavfilter/Makefile         | 2 +-
 libavfilter/stack_internal.h | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index b3d3d981dd..fc75d705e0 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -629,7 +629,7 @@ SKIPHEADERS-$(CONFIG_LIBVIDSTAB)             += vidstabutils.h
 
 SKIPHEADERS-$(CONFIG_QSVVPP)                 += qsvvpp.h
 SKIPHEADERS-$(CONFIG_OPENCL)                 += opencl.h
-SKIPHEADERS-$(CONFIG_VAAPI)                  += vaapi_vpp.h
+SKIPHEADERS-$(CONFIG_VAAPI)                  += vaapi_vpp.h stack_internal.h
 SKIPHEADERS-$(CONFIG_VULKAN)                 += vulkan.h vulkan_filter.h
 
 TOOLS     = graph2dot
diff --git a/libavfilter/stack_internal.h b/libavfilter/stack_internal.h
index ace8886152..a5be36c270 100644
--- a/libavfilter/stack_internal.h
+++ b/libavfilter/stack_internal.h
@@ -19,6 +19,12 @@
 #ifndef AVFILTER_STACK_INTERNAL_H
 #define AVFILTER_STACK_INTERNAL_H
 
+#include <stdint.h>
+
+#include "libavutil/attributes.h"
+#include "framesync.h"
+#include "vaapi_vpp.h"
+
 enum {
     STACK_H = 0,
     STACK_V = 1,



More information about the ffmpeg-cvslog mailing list