Searched defs:getFrameLength (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java230 public int getFrameLength() { method in class:AudioFileFormat
H A DClip.java142 public int getFrameLength(); method in interface:Clip
H A DAudioInputStream.java181 public long getFrameLength() { method in class:AudioInputStream
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatInputStream.java73 public long getFrameLength() { method in class:AudioFloatInputStream.BytaArrayAudioFloatInputStream
170 public long getFrameLength() { method in class:AudioFloatInputStream.DirectAudioFloatInputStream
171 return stream.getFrameLength();
254 public abstract long getFrameLength(); method in class:AudioFloatInputStream
H A DAudioFloatFormatConverter.java154 public long getFrameLength() { method in class:AudioFloatFormatConverter.AudioFloatInputStreamChannelMixer
155 return ais.getFrameLength();
318 public long getFrameLength() { method in class:AudioFloatFormatConverter.AudioFloatInputStreamResampler
319 return AudioSystem.NOT_SPECIFIED; // ais.getFrameLength();
519 .getFrameLength());
H A DSoftMixingSourceDataLine.java91 public long getFrameLength() { method in class:SoftMixingSourceDataLine.NonBlockingFloatInputStream
92 return ais.getFrameLength();
H A DSoftMixingClip.java276 public int getFrameLength() { method in class:SoftMixingClip
281 return (long) (getFrameLength() * (1000000.0 / (double) getFormat()
309 + getFormat() + " and frame lengh of " + getFrameLength());
315 if (stream.getFrameLength() != AudioSystem.NOT_SPECIFIED) {
316 byte[] data = new byte[(int) stream.getFrameLength()
351 + " and frame lengh of " + getFrameLength());
H A DSoftMixingDataLine.java145 public long getFrameLength() { method in class:SoftMixingDataLine.AudioFloatInputStreamResampler
146 return AudioSystem.NOT_SPECIFIED; // ais.getFrameLength();
H A DDirectAudioDevice.java1069 " and frame lengh of " + getFrameLength());
1126 " and frame lengh of " + getFrameLength());
1128 int lengthInFrames = (int)stream.getFrameLength();
1182 public int getFrameLength() { method in class:DirectAudioDevice.DirectClip
1188 return Toolkit.frames2micros(getFormat(), getFrameLength());
1198 else if (frames >= getFrameLength()) {
1199 frames = getFrameLength();
1259 if (start < 0 || start >= getFrameLength()) {
1262 if (end >= getFrameLength()) {
1267 end = getFrameLength()
[all...]

Completed in 67 milliseconds