diff options
author | James Almer <jamrial@gmail.com> | 2024-10-02 12:44:49 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-02 12:44:49 -0300 |
commit | 358fdf30838682f2b183e67d247e0d4d53b5a6a4 (patch) | |
tree | 18a233caa029e8e9b11299ad6299abc588660f97 | |
parent | b094c47ab20332c54020da956c65ab37b2b144cd (diff) | |
download | ffmpeg-358fdf30838682f2b183e67d247e0d4d53b5a6a4.tar.gz |
avfilter: add missing build deps to msad filter
Signed-off-by: James Almer <jamrial@gmail.com>
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | libavfilter/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -3910,6 +3910,7 @@ mpdecimate_filter_deps="gpl" mpdecimate_filter_select="pixelutils" minterpolate_filter_select="scene_sad" mptestsrc_filter_deps="gpl" +msad_filter_select="scene_sad" negate_filter_deps="lut_filter" nlmeans_opencl_filter_deps="opencl" nlmeans_vulkan_filter_deps="vulkan spirv_compiler" diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 91487afb21..a56c8e8b79 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -394,6 +394,7 @@ OBJS-$(CONFIG_MIX_FILTER) += vf_mix.o framesync.o OBJS-$(CONFIG_MONOCHROME_FILTER) += vf_monochrome.o OBJS-$(CONFIG_MORPHO_FILTER) += vf_morpho.o framesync.o OBJS-$(CONFIG_MPDECIMATE_FILTER) += vf_mpdecimate.o +OBJS-$(CONFIG_MSAD_FILTER) += vf_identity.o framesync.o OBJS-$(CONFIG_MULTIPLY_FILTER) += vf_multiply.o framesync.o OBJS-$(CONFIG_NEGATE_FILTER) += vf_negate.o OBJS-$(CONFIG_NLMEANS_FILTER) += vf_nlmeans.o |