diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-05 15:02:33 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-07 23:53:26 +0200 |
commit | c11d7ca2f0f3d2d3e5164c755b15fb137acd3eed (patch) | |
tree | 66f98a62ea609a408d1ae30b20ff2f3dde46684c | |
parent | 3c7dc9ea59c2ca113e28a2ac4c8143f27acddd01 (diff) | |
download | ffmpeg-c11d7ca2f0f3d2d3e5164c755b15fb137acd3eed.tar.gz |
avfilter/x86/Makefile: Add missing dependencies for sobel filter
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/x86/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/x86/Makefile b/libavfilter/x86/Makefile index e87481bd7a..f63dc45e02 100644 --- a/libavfilter/x86/Makefile +++ b/libavfilter/x86/Makefile @@ -28,6 +28,7 @@ OBJS-$(CONFIG_PSNR_FILTER) += x86/vf_psnr_init.o OBJS-$(CONFIG_PULLUP_FILTER) += x86/vf_pullup_init.o OBJS-$(CONFIG_REMOVEGRAIN_FILTER) += x86/vf_removegrain_init.o OBJS-$(CONFIG_SHOWCQT_FILTER) += x86/avf_showcqt_init.o +OBJS-$(CONFIG_SOBEL_FILTER) += x86/vf_convolution_init.o OBJS-$(CONFIG_SPP_FILTER) += x86/vf_spp.o OBJS-$(CONFIG_SSIM_FILTER) += x86/vf_ssim_init.o OBJS-$(CONFIG_STEREO3D_FILTER) += x86/vf_stereo3d_init.o @@ -71,6 +72,7 @@ ifdef CONFIG_GPL X86ASM-OBJS-$(CONFIG_REMOVEGRAIN_FILTER) += x86/vf_removegrain.o endif X86ASM-OBJS-$(CONFIG_SHOWCQT_FILTER) += x86/avf_showcqt.o +X86ASM-OBJS-$(CONFIG_SOBEL_FILTER) += x86/vf_convolution.o X86ASM-OBJS-$(CONFIG_SSIM_FILTER) += x86/vf_ssim.o X86ASM-OBJS-$(CONFIG_STEREO3D_FILTER) += x86/vf_stereo3d.o X86ASM-OBJS-$(CONFIG_TBLEND_FILTER) += x86/vf_blend.o |