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

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Sample.java42 long startLoop = 0; field in class:SF2Sample
206 return startLoop;
209 public void setStartLoop(long startLoop) { argument
210 this.startLoop = startLoop;
H A DSF2Soundbank.java437 sample.startLoop = chunk.readUnsignedInt() - start;
439 if (sample.startLoop < 0)
440 sample.startLoop = -1;
795 long startLoop = sample.startLoop + start;
797 if (startLoop < start)
798 startLoop = start;
803 shdr_chunk.writeUnsignedInt(startLoop);
H A DSF2Instrument.java293 if (sample.startLoop >= 0 && sample.endLoop > 0) {
294 osc.setLoopStart((int)(sample.startLoop
296 osc.setLoopLength((int)(sample.endLoop - sample.startLoop

Completed in 37 milliseconds