totalSize = utterance.getInt("mbrolaAudioLength");
} catch (NullPointerException npe) {
totalSize = 0;
}
audioPlayer.begin(totalSize);
for (Iterator it = audioData.iterator(); it.hasNext();) {
byte[] bytes = (byte[]) it.next();
if (!audioPlayer.write(bytes)) {
throw new ProcessException