mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
c8bd74fa9a
This uses the tinyalsa library to playback to an ALSA device. Future work can include using the mmap interface. https://bugzilla.gnome.org/show_bug.cgi?id=761230
19 lines
590 B
Makefile
19 lines
590 B
Makefile
|
|
plugin_LTLIBRARIES = libgsttinyalsa.la
|
|
|
|
libgsttinyalsa_la_SOURCES = tinyalsasink.c \
|
|
tinyalsa.c
|
|
|
|
libgsttinyalsa_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-Wno-deprecated-declarations
|
|
libgsttinyalsa_la_LIBADD = \
|
|
-ltinyalsa \
|
|
-lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgsttinyalsa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsttinyalsa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = tinyalsasink.h
|
|
|