diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-28 21:51:03 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-17 18:05:38 +0200 |
commit | 8fe0c527f33fe6d2e89d62a23ae912553572452b (patch) | |
tree | d955208bfcffbad28d1aedce78b758effe17e8b6 /libavfilter/Makefile | |
parent | 85afbb1d00d58812df5d634e946b2fcf653bcd8e (diff) | |
download | ffmpeg-8fe0c527f33fe6d2e89d62a23ae912553572452b.tar.gz |
lavfi: add LUT (LookUp Table) generic filters
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 4bd06e9f2f..9659fd692f 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -33,6 +33,9 @@ OBJS-$(CONFIG_FREI0R_FILTER) += vf_frei0r.o OBJS-$(CONFIG_GRADFUN_FILTER) += vf_gradfun.o OBJS-$(CONFIG_HFLIP_FILTER) += vf_hflip.o OBJS-$(CONFIG_HQDN3D_FILTER) += vf_hqdn3d.o +OBJS-$(CONFIG_LUT_FILTER) += vf_lut.o +OBJS-$(CONFIG_LUTRGB_FILTER) += vf_lut.o +OBJS-$(CONFIG_LUTYUV_FILTER) += vf_lut.o OBJS-$(CONFIG_NOFORMAT_FILTER) += vf_format.o OBJS-$(CONFIG_NULL_FILTER) += vf_null.o OBJS-$(CONFIG_OCV_FILTER) += vf_libopencv.o |