fixed noise issue on send, glitch remains :(

This commit is contained in:
Gerald 2016-11-16 22:28:53 +01:00
parent 12bfb6de72
commit 662b235d91

View file

@ -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)