aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_despill.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-08-12 15:29:00 +0200
committerAnton Khirnov <anton@khirnov.net>2024-08-19 21:45:25 +0200
commit1afe42852b25c6bf74f1f5b5f6d6dfa42da02434 (patch)
treede4d3b9da165d4b4bf6c4a4b44d925d79dda71ac /libavfilter/vf_despill.c
parentd8fb44c0aa2f7bc566f937330067be6f2ab83c67 (diff)
downloadffmpeg-1afe42852b25c6bf74f1f5b5f6d6dfa42da02434.tar.gz
lavfi/internal: move functions used by filters to filters.h
internal.h currently mixes interfaces intended to be used by filters with those that should be limited to generic filter- or graph-level code.
Diffstat (limited to 'libavfilter/vf_despill.c')
-rw-r--r--libavfilter/vf_despill.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_despill.c b/libavfilter/vf_despill.c
index 7e8ccf7fe8..ca9b075f0c 100644
--- a/libavfilter/vf_despill.c
+++ b/libavfilter/vf_despill.c
@@ -21,6 +21,7 @@
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
+#include "filters.h"
#include "internal.h"
typedef struct DespillContext {