summaryrefslogtreecommitdiffstats
path: root/src/modules/echo-cancel/adrian.h
Commit message (Collapse)AuthorAgeFilesLines
* echo-cancel: Add SSE optimisation to the adrian moduleArun Raghavan2010-09-231-1/+1
| | | | | | Optimises the core inner-product function, which takes the most CPU. The SSE-optimised bits of the adrian echo canceller only if the CPU that PA is running on actually supports SSE.
* echo-cancel: Add alternative echo-cancellation implementationArun Raghavan2010-09-071-0/+31
This adds Andre Adrian's AEC implementation from his intercom project (http://andreadrian.de/intercom/) as an alternative to the speex echo cancellation routines. Since the implementation was in C++ and not in the form of a library, I have converted the code to C and made a local copy of the implementation. The implementation actually works on floating point data, so we can tweak it to work with both integer and floating point samples (currently we just use S16LE).