Displaying 1 result from an estimated 1 matches for "test_denoise".
2006 Dec 20
1
Broken denoiser in SVN (?)
Hi,
I'm trying to use a denoiser on a wince with a FIXED_POINT defined.
Denoiser works OK - it removes the noise, but then it unacceptable hurts
a voice.
Here is a code that I use:
#define TEST_DENOISE_SAMPLES 2000
void test_denoise()
{
FILE *fin;
FILE *fout;
spx_int32_t rate=0;
int chan=1;
int fmt=16;
int denoise_enabled = 1;
SpeexPreprocessState *preprocess;
fin = _tfopen(_T("Storage Card\\1.raw"), _T("rb"));
if(!fin)
return;...