cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

VST_RT
Journeyman III

VST-Plugin

Using ATI Stream with Brook+ for a VST-Plugin AND a general question!

Hi all,

 

iam trying to make a VST-Plugin which uses the GPU. I got a HD4670 AGP Card.

So i do my signal processing in the vst:rocessreplacing function, which gets called everytime a new input_vector is full. A blocksize of 1024 @ 44,1khz would mean, a call every ~20ms.

So iam calling for every channel! within the 20ms:

brook::Stream inputStream(rank, streamSize);

inputStream.read(inputBuffer);

memset(outputBuffer, 0, width * height * sizeof(float));

brook::Stream outputStream(rank, streamSize);
       
copy(inputStream, outputStream); //KERNEL

outputStream.write(outputBuffer);

 

Its works, but i get som VPU Recovery (because driver doenst respond) error, when i minimize/maximize some other windows.

do i just make to many kernel calls?

 

thank you very much.

MS

 

0 Likes
13 Replies