From 0cfda90b34844ee7e050978db09beeee529e0a0c Mon Sep 17 00:00:00 2001 From: Gyan Doshi Date: Tue, 19 Nov 2019 12:36:59 +0530 Subject: [PATCH] avfilter/Makefile: add missing dependency for lut3d lut3d requires framesync --- libavfilter/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 56afb2a241..c92c19e281 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -289,7 +289,7 @@ OBJS-$(CONFIG_LUMAKEY_FILTER) += vf_lumakey.o OBJS-$(CONFIG_LUT1D_FILTER) += vf_lut3d.o OBJS-$(CONFIG_LUT_FILTER) += vf_lut.o OBJS-$(CONFIG_LUT2_FILTER) += vf_lut2.o framesync.o -OBJS-$(CONFIG_LUT3D_FILTER) += vf_lut3d.o +OBJS-$(CONFIG_LUT3D_FILTER) += vf_lut3d.o framesync.o OBJS-$(CONFIG_LUTRGB_FILTER) += vf_lut.o OBJS-$(CONFIG_LUTYUV_FILTER) += vf_lut.o OBJS-$(CONFIG_MASKEDCLAMP_FILTER) += vf_maskedclamp.o framesync.o