mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
b870ff15b5
Adds the new 'gaudieffects' plugin, originally found here: http://github.com/luisbg/gaudi_effects Contains the following video effect elements: burn, chromium, dilate, dodge, exclusion and solarize. Thanks to Jan Schmidt for the reviewing and refactoring
13 lines
598 B
Makefile
13 lines
598 B
Makefile
plugin_LTLIBRARIES = libgstgaudieffects.la
|
|
|
|
libgstgaudieffects_la_SOURCES = gstburn.c gstchromium.c gstdilate.c \
|
|
gstdodge.c gstexclusion.c gstsolarize.c gstplugin.c
|
|
libgstgaudieffects_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstgaudieffects_la_LIBADD = $(GST_LIBS) -lgstvideo-@GST_MAJORMINOR@
|
|
libgstgaudieffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstgaudieffects_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
gstburn.h gstchromium.h gstdilate.h gstdodge.h \
|
|
gstexclusion.h gstplugin.h gstsolarize.h
|