logo       

Re: input error(?) on plugin: msg#00193

audio.supercollider.devel

Subject: Re: input error(?) on plugin

Hi Adam,

One thing that may be a problem is that you are assuming there are always 64
samples per control period. You should replace '64' with 'blockSize'.

In TestInput_next:

> for(int i=0; i<64; i++) {
> printf("%f\n", in[i]);
> }

should be:

> for(int i=0; i<blockSize; i++) {
> printf("%f\n", in[i]);
> }


Lance

--
Lance Putnam
Graduate Student
Media Arts and Technology / UCSB
ljputnam-YszBOzCFqnGCCSEA9G1mgw@xxxxxxxxxxxxxxxx


<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

News | FAQ | advertise