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

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAuFileFormat.java70 AuFileFormat(AudioFileFormat.Type type, int lengthInBytes, AudioFormat format, int lengthInFrames) { argument
72 super(type,lengthInBytes,format,lengthInFrames);
H A DWaveFileFormat.java82 WaveFileFormat(AudioFileFormat.Type type, int lengthInBytes, AudioFormat format, int lengthInFrames) { argument
84 super(type,lengthInBytes,format,lengthInFrames);
H A DDirectAudioDevice.java1128 int lengthInFrames = (int)stream.getFrameLength();
1129 if (Printer.debug) Printer.debug("DirectClip: open(AIS): lengthInFrames: " + lengthInFrames);
1132 if (lengthInFrames != AudioSystem.NOT_SPECIFIED) {
1134 int arraysize = lengthInFrames * stream.getFormat().getFrameSize();
1170 lengthInFrames = bytesRead / stream.getFormat().getFrameSize();
1172 if (Printer.debug) Printer.debug("Read to end of stream. lengthInFrames: " + lengthInFrames);
1175 open(stream.getFormat(), streamData, lengthInFrames);

Completed in 561 milliseconds