Searched defs:bend (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiChannel.java316 * (For pitch bend to cease, the value needs to be reset to the
319 * stipulates that pitch bend be a 14-bit value, where zero
320 * is maximum downward bend, 16383 is maximum upward bend, and
321 * 8192 is the center (no pitch bend). The actual
323 * a pitch-bend sensitivity setting. However, the General MIDI
332 * @param bend the amount of pitch change, as a nonnegative 14-bit value
333 * (8192 = no bend)
337 public void setPitchBend(int bend); argument
341 * If the device does not support setting pitch bend,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelAbstractChannelMixer.java118 public void setPitchBend(int bend) { argument
H A DSoftChannelProxy.java185 public void setPitchBend(int bend) { argument
188 channel.setPitchBend(bend);
H A DSoftChannel.java1286 public void setPitchBend(int bend) { argument
1287 bend = restrict14Bit(bend);
1289 current_mixer.setPitchBend(bend);
1292 co_midi_pitch[0] = bend * (1.0 / 16384.0);
1293 pitchbend = bend;
1296 voices[i].setPitchBend(bend);
H A DSoftVoice.java488 void setPitchBend(int bend) { argument

Completed in 56 milliseconds