summaryrefslogtreecommitdiff
path: root/libavfilter/Makefile
diff options
context:
space:
mode:
authordanielgtaylor <dan@programmer-art.org>2011-10-04 01:31:18 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-04 02:14:21 +0200
commit0cc2ed4a206551d3c1def87e6b40c67bc1caf294 (patch)
tree765946d77176e5e4f4a5bae2989b9f1a83c6ae91 /libavfilter/Makefile
parent7985381e236a95c711a5315a83c891eef0c56d3b (diff)
libavfilter: add deshake filter
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r--libavfilter/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 5fc0e48e6d..d35020fff8 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -18,7 +18,8 @@ OBJS = allfilters.o \
defaults.o \
drawutils.o \
formats.o \
- graphparser.o \
+ graphparser.o \
+ transform.o \
OBJS-$(CONFIG_AVCODEC) += avcodec.o
@@ -41,6 +42,7 @@ OBJS-$(CONFIG_COPY_FILTER) += vf_copy.o
OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o
OBJS-$(CONFIG_CROPDETECT_FILTER) += vf_cropdetect.o
OBJS-$(CONFIG_DELOGO_FILTER) += vf_delogo.o
+OBJS-$(CONFIG_DESHAKE_FILTER) += vf_deshake.o
OBJS-$(CONFIG_DRAWBOX_FILTER) += vf_drawbox.o
OBJS-$(CONFIG_DRAWTEXT_FILTER) += vf_drawtext.o
OBJS-$(CONFIG_FADE_FILTER) += vf_fade.o