Displaying 1 result from an estimated 1 matches for "spectral_mul_accum".
2010 Nov 12
0
A Probably Bug of TWO_PATH Implementation in Speex1.2rc1 AEC
...ro TWO_PATH in Speex AEC to save space,
an error occurred. Dbf is undefined.
The 1.2rc1 code is like this
Dbf = 0;
See = 0;
#ifdef TWO_PATH
/* Difference in response, this is used to estimate the variance of our
residual power estimate */
for (chan = 0; chan < C; chan++)
{
spectral_mul_accum(st->X, st->W+chan*N*K*M, st->Y+chan*N, N, M*K);
spx_ifft(st->fft_table, st->Y+chan*N, st->y+chan*N);
for (i=0;i<st->frame_size;i++)
st->e[chan*N+i] = st->e[chan*N+i+st->frame_size] -
st->y[chan*N+i+st->frame_size];
Dbf += 10+mdf_inne...