[PD] external with more than 6 inlets possible?

i go bananas hard.off at gmail.com
Thu Mar 17 01:56:41 CET 2016


this seems to work:

  // loop through the 4 oscillators, adding the left to right:

  t_sample l[4];

  t_sample r[4];

  t_sample out[4];



  while (n--)

  {

    for (int osc = 3; osc >= 0; osc--)

    {

      l[osc] = *left[osc]++;

      r[osc] = *right[osc]++;

      out[osc] = l[osc] + r[osc];

    }

    for (int osc = 3; osc >= 0; osc--)

    {

      *output[osc]++ = out[osc];

    }

  }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puredata.info/pipermail/pd-list/attachments/20160317/c9ef3289/attachment.html>


More information about the Pd-list mailing list