search for: nenable

Displaying 5 results from an estimated 5 matches for "nenable".

Did you mean: enable
2010 Feb 22
0
Speex echo cancellation and denoise issues
...cancellation. Following behavior I have 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(SpxPreproc...
2015 Nov 17
3
Mips unconditionally uses fast-isel?
> > The other thing that might work, is having TargetMachine remember how > > the fast-isel option got set, and make OptLevelChanger do the right > > thing. But that seems like a hack to work around Mips not obeying the > > specified optimization level, honestly. > > I think we should do that as well. I don't think it's right that optnone > enables Fast
2015 Nov 18
4
Mips unconditionally uses fast-isel?
...SelectionDAG FastISel -O3 SelectionDAG SelectionDAG FastISel The cells marked with '*' differ from the current behaviour. In terms of code, I think this part of OptLevelChanger::OptLevelChanger(): if (NewOptLevel == CodeGenOpt::None) { DEBUG(dbgs() << "\nEnable FastISel for Function " << IS.MF->getFunction()->getName() << "\n"); IS.TM.setFastISel(true); } Should be: if (NewOptLevel == CodeGenOpt::None) { DEBUG(dbgs() << "\nEnable FastISel for Function " &lt...
2015 Nov 18
2
Mips unconditionally uses fast-isel?
...SelectionDAG FastISel -O3 SelectionDAG SelectionDAG FastISel The cells marked with '*' differ from the current behaviour. In terms of code, I think this part of OptLevelChanger::OptLevelChanger(): if (NewOptLevel == CodeGenOpt::None) { DEBUG(dbgs() << "\nEnable FastISel for Function " << IS.MF->getFunction()->getName() << "\n"); IS.TM.setFastISel(true); } Should be: if (NewOptLevel == CodeGenOpt::None) { DEBUG(dbgs() << "\nEnable FastISel for Function " &lt...
2010 Feb 28
0
Denoise not working for me
Hi I am trying to use the Denoise 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(SpxPreproce...