summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2019-11-19 12:36:59 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2019-11-19 14:11:20 +0530
commit0cfda90b34844ee7e050978db09beeee529e0a0c (patch)
treee006fd39e786b926f61530050ba1cbaf9e374a82
parentef479ee660e4dfbf2645fe3a50d8639fdc22ab1b (diff)
avfilter/Makefile: add missing dependency for lut3d
lut3d requires framesync
-rw-r--r--libavfilter/Makefile2
1 files changed, 1 insertions, 1 deletions
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