diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-08-12 15:29:00 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-08-19 21:45:25 +0200 |
commit | 1afe42852b25c6bf74f1f5b5f6d6dfa42da02434 (patch) | |
tree | de4d3b9da165d4b4bf6c4a4b44d925d79dda71ac /libavfilter/af_hdcd.c | |
parent | d8fb44c0aa2f7bc566f937330067be6f2ab83c67 (diff) | |
download | ffmpeg-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/af_hdcd.c')
-rw-r--r-- | libavfilter/af_hdcd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/af_hdcd.c b/libavfilter/af_hdcd.c index 27f35dd196..90831d5b2a 100644 --- a/libavfilter/af_hdcd.c +++ b/libavfilter/af_hdcd.c @@ -47,6 +47,7 @@ #include "libavutil/opt.h" #include "libavutil/avassert.h" #include "avfilter.h" +#include "filters.h" #include "formats.h" #include "internal.h" #include "audio.h" |