mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
fa2a4af5bb
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.
20 lines
571 B
Makefile
20 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
|