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

/openjdk7/jdk/src/share/classes/sun/audio/
H A DAudioDataStream.java31 * An input stream to play AudioData.
34 * @see AudioData
40 private final AudioData ad;
45 public AudioDataStream(final AudioData data) {
51 final AudioData getAudioData() {
H A DAudioData.java43 * the idea here is that the AudioData object encapsulates the
51 public final class AudioData { class
68 public AudioData(byte buffer[]) { method in class:AudioData
93 AudioData(AudioFormat format, byte[] buffer) { method in class:AudioData
H A DContinuousAudioDataStream.java30 * around an AudioData object, the stream is restarted
35 * AudioData data = AudioData.getAudioData(url);
41 * @see AudioData
51 public ContinuousAudioDataStream(AudioData data) {
H A DAudioStream.java100 public AudioData getData() throws IOException {
109 throw new IOException("Could not create AudioData Object");
111 return new AudioData(format, buffer);
120 throw new IOException("could not create AudioData object: no data received");
121 return new AudioData((AudioFormat)format[0], bytes);
125 throw new IOException("could not create AudioData object");

Completed in 42 milliseconds