Displaying 2 results from an estimated 2 matches for "m_preproc".
2007 Jun 26
2
Residual Echo Suppression by the Preprocessor
...W, just to check my understanding... Do I need only the following
initialization code (along with my already-working code that calls the
AEC and preprocessor) to get the echo suppressor working? (Some
declarations omitted, to save labor.)
    // m_EchoState = speex_echo_state_init( ... );
    // m_PreProc = speex_preprocess_state_init( ... );
    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, &...
2007 Jun 26
0
Residual Echo Suppression by the Preprocessor
...I need only the following
> initialization code (along with my already-working code that calls the
> AEC and preprocessor) to get the echo suppressor working? (Some
> declarations omitted, to save labor.)
> 
> 
>     // m_EchoState = speex_echo_state_init( ... );
> 
>     // m_PreProc = speex_preprocess_state_init( ... );
> 
>     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_Pre...