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/vf_random.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/vf_random.c')
-rw-r--r-- | libavfilter/vf_random.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_random.c b/libavfilter/vf_random.c index 8c7cf8b806..1b433be08b 100644 --- a/libavfilter/vf_random.c +++ b/libavfilter/vf_random.c @@ -22,6 +22,7 @@ #include "libavutil/opt.h" #include "libavutil/random_seed.h" #include "avfilter.h" +#include "filters.h" #include "internal.h" #define MAX_FRAMES 512 |