Searched refs:mute (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/javax/sound/midi/
H A DMidiChannel.java34 * for per-channel solo and mute have been added.
422 * Sets the mute state for this channel. A value of {@code true} means the
434 * @param mute the new mute state
438 void setMute(boolean mute); argument
441 * Obtains the current mute state for this channel. If the underlying
H A DSequencer.java410 * Sets the mute state for a track. This method may fail for a number of
418 * @param mute the new mute state for the track. {@code true} implies the
423 void setTrackMute(int track, boolean mute); argument
426 * Obtains the current mute state for a track. The default mute state for
460 * Obtains the current solo state for a track. The default mute state for
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DSoftChannelProxy.java196 public void setMute(boolean mute) { argument
199 channel.setMute(mute);
H A DModelAbstractChannelMixer.java137 public void setMute(boolean mute) { argument
H A DSoftChannel.java99 private boolean mute = false; field in class:SoftChannel
381 voice.setMute(mute);
1549 public void setMute(boolean mute) { argument
1551 current_mixer.setMute(mute);
1553 this.mute = mute;
1556 voices[i].setMute(mute);
1563 return mute;
1596 private void setSoloMute(boolean mute) { argument
1598 if (solomute == mute)
[all...]
H A DRealTimeSequencer.java589 public synchronized void setTrackMute(int track, boolean mute) { argument
593 trackMuted[track] = mute;
1574 boolean[] mute;
1576 mute = trackMuted;
1590 // only the channels with solo play, regardless of mute
1595 // mute the selected channels
1597 newTrackDisabled[i] = (mute != null) && (i < mute.length) && (mute[i]);
1656 * Runtime application of mute/sol
[all...]
H A DSoftVoice.java502 void setMute(boolean mute) { argument
504 lastMuteValue = mute ? -960 : 0;
508 void setSoloMute(boolean mute) { argument
510 lastSoloMuteValue = mute ? -960 : 0;

Completed in 160 milliseconds