mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-04 16:51:37 -05:00
Fixed #117 Master Returns now re-enabled
This commit is contained in:
parent
3a6138a0be
commit
c360dad709
1 changed files with 2 additions and 4 deletions
|
@ -528,10 +528,8 @@ void Jack::processFrames(int nframes)
|
|||
if(fabs(masterVol-masterVolLag)>=fabs(masterVolDiff/10.0))
|
||||
masterVolLag+=masterVolDiff/10.0;
|
||||
/// mixdown returns into master buffers
|
||||
// FIXME: Returns broken, due to metronome glitch in master output: buffer
|
||||
// writing issue or such. See #95 on github
|
||||
buffers.audio[Buffers::JACK_MASTER_OUT_L][i] = L * masterVolLag;// (L + returnL*returnVol) * masterVol;
|
||||
buffers.audio[Buffers::JACK_MASTER_OUT_R][i] = R * masterVolLag;// (R + returnR*returnVol) * masterVol;
|
||||
buffers.audio[Buffers::JACK_MASTER_OUT_L][i] = (L + returnL*returnVol) * masterVolLag;
|
||||
buffers.audio[Buffers::JACK_MASTER_OUT_R][i] = (R + returnR*returnVol) * masterVolLag;
|
||||
|
||||
/// write SEND content to JACK port
|
||||
buffers.audio[Buffers::JACK_SEND_OUT][i] = buffers.audio[Buffers::SEND][i];
|
||||
|
|
Loading…
Add table
Reference in a new issue