search for: ubbwr

Displaying 3 results from an estimated 3 matches for "ubbwr".

Did you mean: ubbw
2008 Feb 12
0
Second part of data export patch
...t. It allows fetching the speech probability of the current frame (the value that the _PROB_START and _PROB_CONTINUE parameters are compared to in the current VAD). I've verified that they give the same results in fixed and floating point mode. -------------- next part -------------- diff -ubBwr get_agc_gain/include/speex/speex_preprocess.h get_psd/include/speex/speex_preprocess.h --- get_agc_gain/include/speex/speex_preprocess.h 2008-02-12 17:13:04.000000000 +0100 +++ get_psd/include/speex/speex_preprocess.h 2008-02-12 17:15:10.000000000 +0100 @@ -186,6 +186,22 @@ /** Get current gain (i...
2008 Feb 12
0
Patch to get impulse response from echo canceller
Hi, Here's the second attempt of a patch to get the impulse response from the echo canceller :) -------------- next part -------------- diff -ubBwr clean/include/speex/speex_echo.h get_impulse/include/speex/speex_echo.h --- clean/include/speex/speex_echo.h 2007-10-09 13:08:15.000000000 +0200 +++ get_impulse/include/speex/speex_echo.h 2008-02-12 23:58:11.000000000 +0100 @@ -51,6 +51,14 @@ /** Get sampling rate */ #define SPEEX_ECHO_GET_SAMPLI...
2008 Feb 13
1
Fixed-point scaling of mdf impulse response
...in fixed point, it will overflow unless it's properly scaled. This patch uses the same scaling as that used when updating the filters, and the outputs now have the same shape and the same scale in fixed and floating point. Best regards, Thorvald -------------- next part -------------- diff -ubBwr clean/libspeex/mdf.c impulse_scale/libspeex/mdf.c --- clean/libspeex/mdf.c 2008-02-13 11:12:13.000000000 +0100 +++ impulse_scale/libspeex/mdf.c 2008-02-13 22:47:44.000000000 +0100 @@ -1180,13 +1180,13 @@ { #ifdef FIXED_POINT for (i=0;i<N;i++) - st->wtmp2[...