View Single Post
Old 06-21-2015, 02:38 PM   #10
mviljamaa
Human being with feelings
 
Join Date: Jun 2015
Posts: 348
Default

Ok, thanks. I'm switching to queues, using std::queue now and got them to work. The problem now seems to be that using queues Reaper is displaying 6.2% CPU use for my plug-in, using merely one channel. Any idea if this is "normal"? It's like 6x the amount I've seen for other plug-ins.

My queues are of type std::vector<std::queue<double*>> where the outer vector holds the channels and the queue the audio for any particular channel.

Last edited by mviljamaa; 06-21-2015 at 02:45 PM.
mviljamaa is offline   Reply With Quote