Dear community,
after executing the below quoted code I get the following message:
SECTION 1:
67.2295 -3.7705 -3.7705 -3.7705 66.2295 67.2295 64.2295 67.2295
Score finished in csoundPerform().
inactive allocs returned to freespace
end of score. overall amps: 0.00000 0.00000
overall samples out of range: 0 0
0 errors in performance
corrupted size vs. prev_size
csound command: Abort
And after the last message I can’t execute a command in the command line. I don’t understand the meanig of the “corrupted size vs. prev_size” line.
Here’s the code:
-odac -m0d ; ============================================== sr = 44100 nchnls = 2 0dbfs = 1 seed 0opcode StefansRandIntArray,i,iii
iMin,iMax,iSize xin
iOut init iSize
iOut[0] random iMin,iMax
iOut[0] = round(iOut[0])
index = 1
while index <iSize do
irandNum random iMin,iMax
irandNum = round(irandNum)
if irandNum != iOut[index-1] then
iOut[index] = irandNum
index +=1
endif
od
xout iOut
endop
instr 1
iPchNums StefansRandIntArray 60,72,8
iRandTransPose random -5,5
iPchNums += iRandTransPose
printarray iPchNums
endin
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here