mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
6adddc7c51
This element isn't really useful. The original plan was to use this to eventually allow dynamically picking a format based on what we can support while negotiating with the source device. We can just plug in a decodebin downstream and it'll handle RTP depayloading and decoding of whatever format we negotiated with the source device.
30 lines
658 B
Makefile
30 lines
658 B
Makefile
plugin_LTLIBRARIES = libgstbluez.la
|
|
|
|
libgstbluez_la_SOURCES = \
|
|
bluez-plugin.c \
|
|
gsta2dpsink.c \
|
|
gstavdtpsink.c \
|
|
gstavdtpsrc.c \
|
|
gstavdtputil.c
|
|
|
|
libgstbluez_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(DBUS_CFLAGS)
|
|
libgstbluez_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_API_VERSION) \
|
|
-lgstrtp-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(DBUS_LIBS)
|
|
libgstbluez_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstbluez_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
a2dp-codecs.h \
|
|
gsta2dpsink.h \
|
|
gstavdtpsink.h \
|
|
gstavdtpsrc.h \
|
|
gstavdtputil.h
|