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_ocr.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_ocr.c')
-rw-r--r-- | libavfilter/vf_ocr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_ocr.c b/libavfilter/vf_ocr.c index 3cece91edf..f88a1a6e35 100644 --- a/libavfilter/vf_ocr.c +++ b/libavfilter/vf_ocr.c @@ -22,6 +22,7 @@ #include "libavutil/opt.h" #include "avfilter.h" +#include "filters.h" #include "internal.h" #include "video.h" |