mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ff74718616
This is causing us lots of headaches in 0.10 and needs to be done differently and properly in 0.11. playbin or decodebin should reconfigure themselves based on reconfigure events, for example.
28 lines
718 B
Makefile
28 lines
718 B
Makefile
plugin_LTLIBRARIES = libgstpulse.la
|
|
|
|
libgstpulse_la_SOURCES = \
|
|
plugin.c \
|
|
pulsemixer.c \
|
|
pulsemixerctrl.c \
|
|
pulsemixertrack.c \
|
|
pulseprobe.c \
|
|
pulsesink.c \
|
|
pulsesrc.c \
|
|
pulseutil.c
|
|
|
|
libgstpulse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(PULSE_CFLAGS)
|
|
libgstpulse_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) -lgstpbutils-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(PULSE_LIBS)
|
|
libgstpulse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstpulse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
pulsemixerctrl.h \
|
|
pulsemixer.h \
|
|
pulsemixertrack.h \
|
|
pulseprobe.h \
|
|
pulsesink.h \
|
|
pulsesrc.h \
|
|
pulseutil.h
|
|
|