search for: spxpreprocessst

Displaying 2 results from an estimated 2 matches for "spxpreprocessst".

2010 Feb 22
0
Speex echo cancellation and denoise issues
...ve observed while using various options. I would really appreciate if you could help me with the issues I am facing. 1. Denoise: I have written the following to code to perform denoise. //To initialize speex preprocess state and set the denoise option int nEnable = 1; SpxPreprocessState = speex_preprocess_state_init(160, 8000); //20ms audio at 8000 bps speex_preprocess_ctl(SpxPreprocessState, SPEEX_PREPROCESS_SET_DENOISE, &nEnable); //Run the preprocess on the buffer captured before encoding speex_preprocess_run(SpxPreprocessState, (short*)pbBuffer);...
2010 Feb 28
0
Denoise not working for me
...option of speex but unable to do so successfully. I would really appreciate if some one could help me and identify what exactly wrong i am doing... I am using below code to perform denoise. //Initialize speex preprocess state and set the denoise option int nEnable = 1; SpxPreprocessState = speex_preprocess_state_init(160, 8000); //20ms audio at 8000 bps speex_preprocess_ctl(SpxPreprocessState, SPEEX_PREPROCESS_SET_DENOISE, &nEnable); //Run the preprocess on the buffer captured before encoding speex_preprocess_run(SpxPreprocessState, (short*)pbBuffer);...