Skip to content

Commit e6b64d3

Browse files
committed
features #14
1 parent e5d8506 commit e6b64d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/denoise.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ int main(int argc, char **argv) {
623623
g[i] = sqrt((Ey[i]+1e-3)/(Ex[i]+1e-3));
624624
if (g[i] > 1) g[i] = 1;
625625
if (silence || i > band_lp) g[i] = -1;
626-
if (Ey[i] < 3e-3 && Ex[i] < 3e-3) g[i] = -1;
626+
if (Ey[i] < 5e-2 && Ex[i] < 5e-2) g[i] = -1;
627627
if (vad==0 && noise_gain==0) g[i] = -1;
628628
}
629629
count++;

0 commit comments

Comments
 (0)