[Csnd-dev] pfields > 2000
Eduardo Moguillansky <[email protected]>
| Newsgroups | gmane.comp.audio.csound.devel |
|---|---|
| Message-ID | <CAHFFss+xCY0bOVvXcKzJsLXpjssHph77iEnojEMk=L_uzYfROQ@mail.gmail.com> |
I had submitted a PR long ago which fixed this problem, but it seems to not have been applied to csound 7. Whenever the number of pfields exceeds 2000 csound crashes. I don't have the code anymore Test code: <CsoundSynthesizer> <CsOptions> -odac </CsOptions> <CsInstruments> sr = 44100 ksmps = 64 nchnls = 2 0dbfs = 1 instr 10 ipfields[] passign 4 printarray ipfields turnoff endin instr 20 ipfields[] genarray 0, 2000 ipfields[0] = 10 ipfields[1] = 0 ipfields[2] = 1 schedule ipfields turnoff endin </CsInstruments> <CsScore> i 20 0 1 </CsScore> </CsoundSynthesizer>