apply better smoothing parameter

main
Georg Krause 2018-04-29 13:23:49 +02:00
parent 5dfc7bc639
commit 91803ee6eb
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ void Jack::processFrames(int nframes)
buffers.audio[Buffers::SIDECHAIN_SIGNAL_R][i] += inputR * inputToXSideVol;
//compute master volume lag;
masterVolLag += 0.1 * (masterVol - masterVolLag);
masterVolLag += 0.05 * (masterVol - masterVolLag);
/// mixdown returns into master buffers
buffers.audio[Buffers::JACK_MASTER_OUT_L][i] = (L + returnL*returnVol) * masterVolLag;
buffers.audio[Buffers::JACK_MASTER_OUT_R][i] = (R + returnR*returnVol) * masterVolLag;