mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
6b728f184f
This allows us to signal what kind of audio we are expecting to record, which should tell the system to apply filters (such as echo cancellation, noise suppression, etc.) if required.
24 lines
838 B
Makefile
24 lines
838 B
Makefile
|
|
plugin_LTLIBRARIES = libgstopensles.la
|
|
|
|
libgstopensles_la_SOURCES = openslescommon.c \
|
|
openslesringbuffer.c \
|
|
openslessink.c \
|
|
openslessrc.c \
|
|
opensles.c
|
|
|
|
libgstopensles_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-Wno-deprecated-declarations
|
|
libgstopensles_la_LIBADD = \
|
|
-lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstopensles_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lOpenSLES
|
|
libgstopensles_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = openslescommon.h \
|
|
openslesringbuffer.h \
|
|
openslessink.h \
|
|
openslessrc.h
|
|
|