From 1a8cf00ba017a9135d2c857ddb100d8fd23dd43d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 23 Aug 2010 16:38:47 +0200 Subject: make echo-cancel module that exposes a new sink and source Make a new echo-cancel module that exposes a new sink and source. All data sent to the sink is matched against the data captured from the source and echo-canceled using the speex echo canceler. --- src/Makefile.am | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index ec301dad..4345e024 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1017,6 +1017,7 @@ modlibexec_LTLIBRARIES += \ module-rescue-streams.la \ module-intended-roles.la \ module-suspend-on-idle.la \ + module-echo-cancel.la \ module-http-protocol-tcp.la \ module-sine.la \ module-native-protocol-tcp.la \ @@ -1248,6 +1249,7 @@ SYMDEF_FILES = \ modules/module-rescue-streams-symdef.h \ modules/module-intended-roles-symdef.h \ modules/module-suspend-on-idle-symdef.h \ + modules/module-echo-cancel-symdef.h \ modules/module-hal-detect-symdef.h \ modules/module-udev-detect-symdef.h \ modules/bluetooth/module-bluetooth-proximity-symdef.h \ @@ -1602,6 +1604,12 @@ module_suspend_on_idle_la_LDFLAGS = $(MODULE_LDFLAGS) module_suspend_on_idle_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINORMICRO@.la libpulsecommon-@PA_MAJORMINORMICRO@.la libpulse.la module_suspend_on_idle_la_CFLAGS = $(AM_CFLAGS) +# echo-cancel module +module_echo_cancel_la_SOURCES = modules/module-echo-cancel.c +module_echo_cancel_la_LDFLAGS = $(MODULE_LDFLAGS) +module_echo_cancel_la_LIBADD = $(AM_LIBADD) libpulsecore-@PA_MAJORMINORMICRO@.la libpulsecommon-@PA_MAJORMINORMICRO@.la libpulse.la $(LIBSPEEX_LIBS) +module_echo_cancel_la_CFLAGS = $(AM_CFLAGS) $(LIBSPEEX_CFLAGS) + # RTP modules module_rtp_send_la_SOURCES = modules/rtp/module-rtp-send.c module_rtp_send_la_LDFLAGS = $(MODULE_LDFLAGS) -- cgit