mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
8ca420f547
This introduces a new bin which wraps around pulsesink and depending on the formats supported by the sink, plugs in/out a decodebin2 as required. This allows users to switch sinks on the stream and adapts accordingly (for example, you could watch a movie in passthrough mode on your receiver which supports AC3 decode, then plug out and switch to a non-digital profile to continue uninterrupted on analog output). The bin is required because doing the same with playbin2/playsink will require API changes that cannot be made in 0.10. With 0.11/1.0, we should be able to ask for upstream caps renegotiation to deal with all this. https://bugzilla.gnome.org/show_bug.cgi?id=657179
29 lines
738 B
Makefile
29 lines
738 B
Makefile
plugin_LTLIBRARIES = libgstpulse.la
|
|
|
|
libgstpulse_la_SOURCES = \
|
|
plugin.c \
|
|
pulsemixer.c \
|
|
pulsemixerctrl.c \
|
|
pulsemixertrack.c \
|
|
pulseprobe.c \
|
|
pulsesink.c \
|
|
pulseaudiosink.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
|
|
|