mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
2c7ed42292
The alsamidisrc element allows to get input event from ALSA MIDI sequencer devices, and possibly convert them to sound using some downstream element like fluiddec. Fixes #738687
29 lines
623 B
Makefile
29 lines
623 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)
|
|
libgstalsa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstalsa.h \
|
|
gstalsadeviceprobe.h \
|
|
gstalsasrc.h \
|
|
gstalsasink.h \
|
|
gstalsamidisrc.h
|