summaryrefslogtreecommitdiffstats
path: root/TOOLS/vf_dlopen/Makefile
diff options
context:
space:
mode:
authorRudolf Polzer <divverent@xonotic.org>2013-05-16 20:12:23 +0200
committerRudolf Polzer <divverent@xonotic.org>2013-05-16 20:14:50 +0200
commitcfa0515e0e32d9f2d6c9bb7ae95fdcec6749a697 (patch)
treed859b4bb1288b58872c79eb25ad64052dd2c1b79 /TOOLS/vf_dlopen/Makefile
parentd4987bf5ebc7f7830259326daf9dc1c685b34ac0 (diff)
downloadmpv-cfa0515e0e32d9f2d6c9bb7ae95fdcec6749a697.tar.bz2
mpv-cfa0515e0e32d9f2d6c9bb7ae95fdcec6749a697.tar.xz
vf_dlopen examples: add framestep filter
Usage: -vf dlopen=./framestep.so:5
Diffstat (limited to 'TOOLS/vf_dlopen/Makefile')
-rw-r--r--TOOLS/vf_dlopen/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/vf_dlopen/Makefile b/TOOLS/vf_dlopen/Makefile
index 332c890821..c1eb5e0c9f 100644
--- a/TOOLS/vf_dlopen/Makefile
+++ b/TOOLS/vf_dlopen/Makefile
@@ -19,7 +19,7 @@
# 02110-1301 USA
#
-FILTERS = showqscale telecine tile rectangle
+FILTERS = showqscale telecine tile rectangle framestep
COMMON = filterutils.o
OBJECTS = $(patsubst %,%.o,$(FILTERS)) $(COMMON)
@@ -28,7 +28,7 @@ OUT = $(patsubst %,%.so,$(FILTERS))
CFLAGS ?= -Wall -Wextra -O3 -march=native -mtune=native -ffast-math
-CPPFLAGS += -I../../libmpcodecs
+CPPFLAGS += -I../../video/filter
CFLAGS += -fPIC
LDFLAGS += -shared -fPIC