mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
fixed noise issue on send, glitch remains :(
This commit is contained in:
parent
12bfb6de72
commit
662b235d91
1 changed files with 3 additions and 2 deletions
|
@ -24,8 +24,9 @@ void JackSendReturn::process(unsigned int nframes, Buffers *buffers)
|
|||
|
||||
//Copy result of previous AudioProcessor to send port
|
||||
// memcpy(send,buffers->audio[Buffers::SEND_TRACK_0+m_trackid],nframes*sizeof(float));
|
||||
// memset(send,0,nframes*sizeof(float));
|
||||
for(int i=0;i<nframes;i++)
|
||||
send[i]+=m_sendvol*buffers->audio[Buffers::SEND_TRACK_0+m_trackid][i];
|
||||
send[i]=m_sendvol*buffers->audio[Buffers::SEND_TRACK_0+m_trackid][i];
|
||||
|
||||
|
||||
if(m_active)
|
||||
|
|
Loading…
Add table
Reference in a new issue