diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-03 23:44:07 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-07 09:21:13 +0200 |
commit | 19af142d45309176e3c0e10c0cc5af2a52c8f104 (patch) | |
tree | fb10165db38d5d7a268a2c93f4e8c8ce8d95379e /libavfilter/af_apulsator.c | |
parent | 571d0359fa89fb9fb4709eba980fba0935e1c9b0 (diff) | |
download | ffmpeg-19af142d45309176e3c0e10c0cc5af2a52c8f104.tar.gz |
avfilter/internal: Don't include formats.h
internal.h doesn't rely on it; instead include it directly
in every user that needs it (a filter needing it is basically
equivalent to it using FILTER_QUERY_FUNC, i.e. a majority of
filters doesn't need it).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/af_apulsator.c')
-rw-r--r-- | libavfilter/af_apulsator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/af_apulsator.c b/libavfilter/af_apulsator.c index 51b4344a39..909a50215e 100644 --- a/libavfilter/af_apulsator.c +++ b/libavfilter/af_apulsator.c @@ -22,6 +22,7 @@ #include "libavutil/channel_layout.h" #include "libavutil/opt.h" #include "avfilter.h" +#include "formats.h" #include "internal.h" #include "audio.h" |