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

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DMidiUtils.java116 public static long ticks2microsec(long tick, double tempoMPQ, int resolution) { argument
117 return (long) (((double) tick) * tempoMPQ / resolution);
125 public static long microsec2ticks(long us, double tempoMPQ, int resolution) { argument
127 //return (long) Math.round((((double)us) * resolution) / tempoMPQ);
128 return (long) ((((double)us) * resolution) / tempoMPQ);
H A DRealTimeSequencer.java1485 synchronized void setTempoMPQ(float tempoMPQ) { argument
1486 if (tempoMPQ > 0 && tempoMPQ != currTempo) {
1488 this.currTempo = tempoMPQ;

Completed in 35 milliseconds