SoftSynthesizer.getChannels() returns internal channels array.
If somebody modify the array it may causes failures. It should return copy of 
the array.

SoftSynthesizer.getVoiceStatus() returns "internal" tempVoiceStatusArray array.
This may causes sharing violation. also it make impossible to do something like:
VoiceStatus[] voices1 = synth.getVoiceStatus();
<some actions>
VoiceStatus[] voices2 = synth.getVoiceStatus();
<compare voices1 & voices2 and do something if voices are changed>


Regards
Alex
_______________________________________________
audio-engine-dev mailing list
[email protected]
http://mail.openjdk.java.net/mailman/listinfo/audio-engine-dev

Reply via email to