Home
last modified time | relevance | path

Searched refs:FREQCOUNT (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dnoisered.c97 data->chandata[i].noisegate = lsx_calloc(FREQCOUNT, sizeof(float)); in sox_noisered_start()
98 data->chandata[i].smoothing = lsx_calloc(FREQCOUNT, sizeof(float)); in sox_noisered_start()
115 for (i = 1; i < FREQCOUNT; i ++) { in sox_noisered_start()
118 … "(expected %d, got %lu)", (unsigned long)fchannels, FREQCOUNT, (unsigned long)i); in sox_noisered_start()
153 for (i = 0; i < FREQCOUNT; i ++) in reduce_noise()
164 for (i = 0; i < FREQCOUNT; i ++) { in reduce_noise()
178 for (i = 2; i < FREQCOUNT - 2; i ++) { in reduce_noise()
190 outr[FREQCOUNT-1] *= smoothing[FREQCOUNT-1]; in reduce_noise()
191 outi[FREQCOUNT-1] *= smoothing[FREQCOUNT-1]; in reduce_noise()
193 for (i = 1; i < FREQCOUNT-1; i ++) { in reduce_noise()
[all …]
H A Dnoiseprof.c86 data->chandata[i].sum = lsx_calloc(FREQCOUNT, sizeof(float)); in sox_noiseprof_start()
87 data->chandata[i].profilecount = lsx_calloc(FREQCOUNT, sizeof(int)); in sox_noiseprof_start()
96 float *out = lsx_calloc(FREQCOUNT, sizeof(float)); in collect_data()
101 for (i = 0; i < FREQCOUNT; i ++) { in collect_data()
189 for (j = 0; j < FREQCOUNT; j ++) { in sox_noiseprof_stop()
H A Dnoisered.h26 #define FREQCOUNT (HALFWINDOW + 1) macro