mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
d64a4b7a69
This reverts commit 69c3c31608
.
All devices have the same name, they are duplicated with pulseaudio one
and the provided does not respond to HW being plugged/unplugged. I think
it's not ready for 1.16.
28 lines
567 B
Makefile
28 lines
567 B
Makefile
plugin_LTLIBRARIES = libgstalsa.la
|
|
|
|
libgstalsa_la_SOURCES = \
|
|
gstalsadeviceprobe.c \
|
|
gstalsaplugin.c \
|
|
gstalsasink.c \
|
|
gstalsasrc.c \
|
|
gstalsamidisrc.c \
|
|
gstalsa.c
|
|
|
|
libgstalsa_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(ALSA_CFLAGS)
|
|
libgstalsa_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-$(GST_API_VERSION).la \
|
|
$(GST_BASE_LIBS) \
|
|
$(ALSA_LIBS)
|
|
|
|
libgstalsa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstalsa.h \
|
|
gstalsadeviceprobe.h \
|
|
gstalsasrc.h \
|
|
gstalsasink.h \
|
|
gstalsamidisrc.h
|