Fix Buffer Allocation
This commit is contained in:
parent
1a928255f9
commit
65926bad13
1 changed files with 3 additions and 3 deletions
|
@ -69,9 +69,9 @@ Jack::Jack() :
|
|||
masterR.resize( buffers.nframes );
|
||||
|
||||
/// prepare internal buffers
|
||||
buffers.audio[Buffers::REVERB] = new float( buffers.nframes );
|
||||
buffers.audio[Buffers::SIDECHAIN] = new float( buffers.nframes );
|
||||
buffers.audio[Buffers::POST_SIDECHAIN] = new float( buffers.nframes );
|
||||
buffers.audio[Buffers::REVERB] = new float[ buffers.nframes ];
|
||||
buffers.audio[Buffers::SIDECHAIN] = new float[ buffers.nframes ];
|
||||
buffers.audio[Buffers::POST_SIDECHAIN] = new float[ buffers.nframes ];
|
||||
|
||||
buffers.audio[Buffers::MASTER_OUT_L] = &masterL[0]; //new float( buffers.nframes );
|
||||
buffers.audio[Buffers::MASTER_OUT_R] = &masterR[0]; //new float( buffers.nframes );
|
||||
|
|
Loading…
Reference in a new issue