diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-03 13:03:17 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-07 09:21:13 +0200 |
commit | 6d15643173263c8ff9e9422bbbdcb843f4bc8f9c (patch) | |
tree | c412ba076fae05b176aa6467848b4191eeaaeb2f /libavfilter/internal.h | |
parent | 50ea7389ecae321ea6c4c585b8f721b84bd64a1d (diff) | |
download | ffmpeg-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/internal.h')
-rw-r--r-- | libavfilter/internal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 58665ff086..2c6e2df69e 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -28,7 +28,6 @@ #include "avfilter.h" #include "formats.h" #include "framequeue.h" -#include "video.h" typedef struct AVFilterCommand { double time; ///< time expressed in seconds |