Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2008-05-15 18:30:01 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2008-05-15 18:30:01 +0400
commit928e2784a501e6a87b434585913a92a5a4e4fe29 (patch)
treeb4d72e113ebe628f00c16a9fdcd49396e1be91f6 /libspeex
parent497379924e01823fd632454b10449f32ee6b2072 (diff)
oops, forgot to remove the muting in the previous commit.
git-svn-id: http://svn.xiph.org/trunk/speex@14888 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex')
-rw-r--r--libspeex/mdf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libspeex/mdf.c b/libspeex/mdf.c
index dbb4b8a..93adbf4 100644
--- a/libspeex/mdf.c
+++ b/libspeex/mdf.c
@@ -887,7 +887,6 @@ EXPORT void speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *in, c
/* This is an arbitrary test for saturation in the microphone signal */
if (in[i] <= -32000 || in[i] >= 32000)
{
- tmp_out = 0;
if (st->saturated == 0)
st->saturated = 1;
}