gate: decrease attack, increase release
This commit is contained in:
parent
ce2212708a
commit
62acece204
1 changed files with 2 additions and 2 deletions
4
gate.c
4
gate.c
|
@ -17,8 +17,8 @@ void gate_init(
|
||||||
|
|
||||||
gate->is_active = false;
|
gate->is_active = false;
|
||||||
gate->cur_gain = 1.0;
|
gate->cur_gain = 1.0;
|
||||||
gate->attack = 1.0 / 512.0;
|
gate->attack = 1.0 / 128.0;
|
||||||
gate->release = 1.0 / 4096.0;
|
gate->release = 1.0 / 8192.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void gate_process(
|
void gate_process(
|
||||||
|
|
Loading…
Reference in a new issue