diff options
author | Arun Raghavan <arun@centricular.com> | 2015-01-27 15:25:59 +0530 |
---|---|---|
committer | Arun Raghavan <git@arunraghavan.net> | 2015-06-13 16:03:00 +0530 |
commit | 6b728f184f779fce2718eb292243a4f117d54852 (patch) | |
tree | 9e0b7f1b9c91899e2d85d13a285d2fc7766b2277 /sys/opensles/Makefile.am | |
parent | e3aaff400a98e7fd9d8f3040c0def6f1d9dd42a4 (diff) | |
download | gstreamer-plugins-bad-6b728f184f779fce2718eb292243a4f117d54852.tar.gz |
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.
Diffstat (limited to 'sys/opensles/Makefile.am')
-rw-r--r-- | sys/opensles/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/opensles/Makefile.am b/sys/opensles/Makefile.am index c0ef4ec98..62368337b 100644 --- a/sys/opensles/Makefile.am +++ b/sys/opensles/Makefile.am @@ -1,7 +1,8 @@ plugin_LTLIBRARIES = libgstopensles.la -libgstopensles_la_SOURCES = openslesringbuffer.c \ +libgstopensles_la_SOURCES = openslescommon.c \ + openslesringbuffer.c \ openslessink.c \ openslessrc.c \ opensles.c @@ -16,7 +17,8 @@ libgstopensles_la_LIBADD = \ libgstopensles_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lOpenSLES libgstopensles_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) -noinst_HEADERS = openslesringbuffer.h \ +noinst_HEADERS = openslescommon.h \ + openslesringbuffer.h \ openslessink.h \ openslessrc.h |