summaryrefslogtreecommitdiff
path: root/libavfilter/Makefile
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-05 10:22:55 +0200
committerAnton Khirnov <anton@khirnov.net>2012-05-06 16:22:29 +0200
commit25b3babe111a37697d98890400f5864f560ae167 (patch)
tree413c6a3b9f7adbdd9aca575c9189155784cb4443 /libavfilter/Makefile
parentfd18ee0ff659fc73e56bd43f5b93ed82934c6c7f (diff)
lavfi: always enable the scale filter and depend on sws.
The scale filter is used for internal colorspace conversions, so it must always be present.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r--libavfilter/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 6ee94e9a1b..46fa93dc4f 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -1,7 +1,6 @@
NAME = avfilter
-FFLIBS = avutil
+FFLIBS = avutil swscale
FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec
-FFLIBS-$(CONFIG_SCALE_FILTER) += swscale
HEADERS = avfilter.h avfiltergraph.h buffersrc.h version.h vsrc_buffer.h
@@ -12,6 +11,7 @@ OBJS = allfilters.o \
drawutils.o \
formats.o \
graphparser.o \
+ vf_scale.o \
vsrc_buffer.o
OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o
@@ -46,7 +46,6 @@ OBJS-$(CONFIG_OCV_FILTER) += vf_libopencv.o
OBJS-$(CONFIG_OVERLAY_FILTER) += vf_overlay.o
OBJS-$(CONFIG_PAD_FILTER) += vf_pad.o
OBJS-$(CONFIG_PIXDESCTEST_FILTER) += vf_pixdesctest.o
-OBJS-$(CONFIG_SCALE_FILTER) += vf_scale.o
OBJS-$(CONFIG_SELECT_FILTER) += vf_select.o
OBJS-$(CONFIG_SETDAR_FILTER) += vf_aspect.o
OBJS-$(CONFIG_SETPTS_FILTER) += vf_setpts.o