gstreamer/gst/coloreffects/Makefile.am
Sebastian Dröge fa2a4af5bb chromahold: Add chromahold color effect
This effect converts all colors except a single one to
grey. The color is selected by an RGB triple and a
tolerance for the color matching in hue degree can be specified.
2010-10-06 11:57:12 +02:00

21 lines
571 B
Makefile

plugin_LTLIBRARIES = libgstcoloreffects.la
libgstcoloreffects_la_SOURCES = \
gstplugin.c \
gstcoloreffects.c \
gstchromahold.c
libgstcoloreffects_la_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CONTROLLER_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS)
libgstcoloreffects_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
$(GST_CONTROLLER_LIBS) \
$(GST_BASE_LIBS) \
$(GST_LIBS)
libgstcoloreffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstcoloreffects_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = gstcoloreffects.h gstchromahold.h