summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-03-07 23:56:30 -0300
committerJames Almer <jamrial@gmail.com>2023-03-10 16:27:05 -0300
commit205117d87fdc01cd8e150aa6f4d16cf69f7b4ca4 (patch)
treefbe5e4adf9d7a9efb1dd42c9d54cbeec9cb73a7a
parente60cd2e98b8ea11e4e40584b20e9599ca291fbaa (diff)
avfilter/stack_internal: add missing header includes
Fixes make checkheaders Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavfilter/Makefile2
-rw-r--r--libavfilter/stack_internal.h6
2 files changed, 7 insertions, 1 deletions
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,