mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
228c0d94c5
Original commit message from CVS: * gst/synaesthesia/Makefile.am: * gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_class_init), (gst_synaesthesia_init), (gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_getcaps), (gst_synaesthesia_chain), (plugin_init): * gst/synaesthesia/synaescope.c: * gst/synaesthesia/synaescope.h: Added docs (not yet added to gst-plugins-ugl/docs/plugins as plugin is not built by default). Fixed Makefile.am. Fixed license headers (its GPL as it is derived from GPL code). Fixed GST_SYNAESTHESIA_CLASS macro. Added GST_DEBUG_FUNCPTR. Reflowed _setcaps. Updated pad setup in _init. Fix possible leak in _chain. (#356882)
11 lines
365 B
Makefile
11 lines
365 B
Makefile
plugin_LTLIBRARIES = libgstsynaesthesia.la
|
|
|
|
libgstsynaesthesia_la_SOURCES = gstsynaesthesia.c synaescope.c
|
|
|
|
noinst_HEADERS = synaescope.h
|
|
|
|
libgstsynaesthesia_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstsynaesthesia_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstsynaesthesia_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
EXTRA_DIST = README
|