Searched refs:osc_buff (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftVoice.java79 private float[][] osc_buff = new float[2][]; field in class:SoftVoice
625 if (osc_buff == null || osc_buff.length < osc_stream_nrofchannels)
626 osc_buff = new float[osc_stream_nrofchannels][];
825 osc_buff[0] = buffer[SoftMainMixer.CHANNEL_LEFT_DRY].array();
827 osc_buff[1] = buffer[SoftMainMixer.CHANNEL_RIGHT_DRY].array();
828 int ret = osc_stream.read(osc_buff, 0, bufferlen);
834 Arrays.fill(osc_buff[0], ret, bufferlen, 0f);
836 Arrays.fill(osc_buff[1], ret, bufferlen, 0f);

Completed in 30 milliseconds