We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d8506 commit e6b64d3Copy full SHA for e6b64d3
src/denoise.c
@@ -623,7 +623,7 @@ int main(int argc, char **argv) {
623
g[i] = sqrt((Ey[i]+1e-3)/(Ex[i]+1e-3));
624
if (g[i] > 1) g[i] = 1;
625
if (silence || i > band_lp) g[i] = -1;
626
- if (Ey[i] < 3e-3 && Ex[i] < 3e-3) g[i] = -1;
+ if (Ey[i] < 5e-2 && Ex[i] < 5e-2) g[i] = -1;
627
if (vad==0 && noise_gain==0) g[i] = -1;
628
}
629
count++;
0 commit comments