gstreamer/sys/opensles/Makefile.am
Arun Raghavan 6b728f184f openslessrc: Implement recording presets
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.
2015-06-13 16:03:00 +05:30

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