search for: speex_echo_get_sampling_r

Displaying 4 results from an estimated 4 matches for "speex_echo_get_sampling_r".

2008 Feb 12
0
Patch to get impulse response from echo canceller
...--------- 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_SAMPLING_RATE 25 +/* Can't set window sizes */ +/** Get size of impulse response (int32) */ +#define SPEEX_ECHO_GET_IMPULSE_RESPONSE_SIZE 27 + +/* Can't set window content */ +/** Get impulse response (int32[]) */ +#define SPEEX_ECHO_GET_IMPULSE_RESPONSE 29 + /** Internal echo canceller state. Shou...
2008 Feb 02
0
Patch to make analysis data available.
...OCESS_GET_SNR 43 + #ifdef __cplusplus } #endif Index: include/speex/speex_echo.h =================================================================== --- include/speex/speex_echo.h (revision 14443) +++ include/speex/speex_echo.h (working copy) @@ -51,6 +51,14 @@ /** Get sampling rate */ #define SPEEX_ECHO_GET_SAMPLING_RATE 25 +/* Can't set window sizes */ +/** Get weight sizes (int32[2]) */ +#define SPEEX_ECHO_GET_WEIGHT_SIZES 27 + +/* Can't set window content */ +/** Get weights (int32[]) */ +#define SPEEX_ECHO_GET_WEIGHTS 29 + /** Internal echo canceller state. Should never be accessed directly. */ s...
2006 Oct 27
0
Echo Canceller trouble in 1.2beta1
> I will want to use this with a 16K sample rate. Is it expected to > work well with just another slight patch, or will we need to modify > it more deeply? Just use SPEEX_ECHO_GET_SAMPLING_RATE to let the aec know what sampling rate you're using (default is 8000). > Also, are there any tunable parameters besides tail length? I am > wondering about the aggressiveness of adaptation and I know you are > an expert in that area. There's no aggressiveness parameter, though...
2006 Oct 27
2
Echo Canceller trouble in 1.2beta1
Terrific! The patch fixes my problem quite decisively. I will want to use this with a 16K sample rate. Is it expected to work well with just another slight patch, or will we need to modify it more deeply? Also, are there any tunable parameters besides tail length? I am wondering about the aggressiveness of adaptation and I know you are an expert in that area. Thanks so much, Michael