From 2d4aef8982791b59000a01ba334a8a3bd3a8d5b3 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sat, 18 Nov 2023 10:26:07 +0800 Subject: [PATCH] lavfi/Makefile: fix vf_cropdetect missed edge_common vf_cropdetect depends on edge_common, it's missing in Makefile. Fix trac issue: http://trac.ffmpeg.org/ticket/10664 Signed-off-by: Jun Zhao --- libavfilter/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 603b532ad0..de51c2a403 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -255,7 +255,7 @@ OBJS-$(CONFIG_COREIMAGE_FILTER) += vf_coreimage.o OBJS-$(CONFIG_CORR_FILTER) += vf_corr.o framesync.o OBJS-$(CONFIG_COVER_RECT_FILTER) += vf_cover_rect.o lavfutils.o OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o -OBJS-$(CONFIG_CROPDETECT_FILTER) += vf_cropdetect.o +OBJS-$(CONFIG_CROPDETECT_FILTER) += vf_cropdetect.o edge_common.o OBJS-$(CONFIG_CUE_FILTER) += f_cue.o OBJS-$(CONFIG_CURVES_FILTER) += vf_curves.o OBJS-$(CONFIG_DATASCOPE_FILTER) += vf_datascope.o