mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
b6c08a233a
Original commit message from CVS: Added esdmon plugin. Monitors output from the esd sound daemon. Particularly useful for displaying a visualisation of the audio being played on your system. eg: gst-launch esdmon ! goom ! { queue leaky=yes ! colorspace ! sdlvideosink } You can even have several of them going at once. :)
16 lines
474 B
Makefile
16 lines
474 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libesdsink.la libesdmon.la
|
|
|
|
libesdsink_la_SOURCES = esdsink.c
|
|
libesdsink_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS)
|
|
libesdsink_la_LIBADD = $(GST_LIBS) $(ESD_LIBS)
|
|
libesdsink_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
libesdmon_la_SOURCES = esdmon.c
|
|
libesdmon_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS)
|
|
libesdmon_la_LIBADD = $(GST_LIBS) $(ESD_LIBS)
|
|
libesdmon_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
noinst_HEADERS = esdsink.h
|
|
EXTRA_DIST = README
|