Displaying 2 results from an estimated 2 matches for "maxnearendechoattenuationdb".
2007 Jun 26
2
Residual Echo Suppression by the Preprocessor
...);
    speex_preprocess_ctl( 
        m_PreProc, SPEEX_PREPROCESS_SET_ECHO_STATE, m_EchoState );
    //optional:
    INT32 maxEchoAttenuationDB = -40; //use negative; default is -40
    speex_preprocess_ctl( 
        m_PreProc, PREPROCESS_SET_ECHO_SUPPRESS, &maxEchoAttenuationDB
);
    INT32 maxNearEndEchoAttenuationDB = -15; //use negative; default is
-15
    speex_preprocess_ctl( 
        m_PreProc, SPEEX_PREPROCESS_SET_ECHO_SUPPRESS_ACTIVE, 
        & maxNearEndEchoAttenuationDB);
Oh, I've been turning the noise suppressor on, as well, although some of
our users don't like some of the artifacts....
2007 Jun 26
0
Residual Echo Suppression by the Preprocessor
..._PreProc, SPEEX_PREPROCESS_SET_ECHO_STATE, m_EchoState );
> 
>     //optional:
>     INT32 maxEchoAttenuationDB = -40; //use negative; default is -40
>     speex_preprocess_ctl( 
>         m_PreProc, PREPROCESS_SET_ECHO_SUPPRESS, &maxEchoAttenuationDB
> );
> 
>     INT32 maxNearEndEchoAttenuationDB = -15; //use negative; default is
> -15
>     speex_preprocess_ctl( 
>         m_PreProc, SPEEX_PREPROCESS_SET_ECHO_SUPPRESS_ACTIVE, 
>         & maxNearEndEchoAttenuationDB);
> 
> Oh, I've been turning the noise suppressor on, as well, although some of
> our users don&...