Home | History | Annotate | Download | only in synth

Lines Matching defs:channel

33  * Very simple polyphonic, single channel synthesizer. It runs a background
85 int channel = (byte) (data[0] & MidiConstants.STATUS_CHANNEL_MASK);
88 noteOff(channel, data[1], data[2]);
91 noteOn(channel, data[1], data[2]);
95 pitchBend(channel, bend);
197 public void noteOff(int channel, int noteIndex, int velocity) {
226 * @param channel
230 public void noteOn(int channel, int noteIndex, int velocity) {
232 noteOff(channel, noteIndex, velocity);
247 public void pitchBend(int channel, int bend) {