echo66/PhaseVocoderJS

Manage memory "manually"

Closed this issue · 1 comments

Right now, the phase vocoder implementation is creating A LOT of arrays (Array & Float64Array). This has a negative impact due to the fact that I can't control the garbage collector. And, in fact, this may be the real cause for poor performance when dealing with more than two tracks. So, I need to alloc enough memory (i.e. create a memory heap) in the phase vocoder constructor and each vector/array access will be coded as HEAP[start + position].

Instead of creating a heap, I used several objects to hold the arrays that had the same dimensions in every iteration. Unfortunately, I'm still getting dropouts when I play the third audio piece.