aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-08-03 13:03:17 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-08-07 09:21:13 +0200
commit6d15643173263c8ff9e9422bbbdcb843f4bc8f9c (patch)
treec412ba076fae05b176aa6467848b4191eeaaeb2f /libavfilter/avfilter.c
parent50ea7389ecae321ea6c4c585b8f721b84bd64a1d (diff)
downloadffmpeg-6d15643173263c8ff9e9422bbbdcb843f4bc8f9c.tar.gz
avfilter/internal: Don't include video.h
internal.h does not depend on video.h (and should not depend on it) and therefore should not include video.h at all; instead all users of video.h should include it directly. Doing so also avoids unnecessary video.h inclusions in files that don't need it, like most audio filters. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 3b0b6afeca..23bf8685e9 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -43,6 +43,7 @@
#include "formats.h"
#include "framepool.h"
#include "internal.h"
+#include "video.h"
static void tlog_ref(void *ctx, AVFrame *ref, int end)
{