mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
79c343bade
Implements a color lookup table filter with 4 presets: - heat: fake heat camera effect - sepia: sepia toning - xray: invert + shade to blue - xpro: cross process https://bugzilla.gnome.org/show_bug.cgi?id=625817
16 lines
460 B
Makefile
16 lines
460 B
Makefile
plugin_LTLIBRARIES = libgstcoloreffects.la
|
|
|
|
libgstcoloreffects_la_SOURCES = \
|
|
gstplugin.c \
|
|
gstcoloreffects.c
|
|
libgstcoloreffects_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstcoloreffects_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstcoloreffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcoloreffects_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstcoloreffects.h
|