Lines Matching refs:channel

29 	uchar channel, uchar note, uchar velocity, bigtime_t time)
31 fMidiObject->NoteOff(channel + 1, note, velocity, MAKE_TIME(time));
37 uchar channel, uchar note, uchar velocity, bigtime_t time)
39 fMidiObject->NoteOn(channel + 1, note, velocity, MAKE_TIME(time));
45 uchar channel, uchar note, uchar pressure, bigtime_t time)
47 fMidiObject->KeyPressure(channel + 1, note, pressure, MAKE_TIME(time));
53 uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time)
56 channel + 1, controlNumber, controlValue, MAKE_TIME(time));
62 uchar channel, uchar programNumber, bigtime_t time)
64 fMidiObject->ProgramChange(channel + 1, programNumber, MAKE_TIME(time));
70 uchar channel, uchar pressure, bigtime_t time)
72 fMidiObject->ChannelPressure(channel + 1, pressure, MAKE_TIME(time));
78 uchar channel, uchar lsb, uchar msb, bigtime_t time)
80 fMidiObject->PitchBend(channel + 1, lsb, msb, MAKE_TIME(time));
123 uchar channel, uchar note, uchar velocity, bigtime_t time)
125 fMidiObject->SprayNoteOff(channel + 1, note, velocity, MAKE_TIME(time));
131 uchar channel, uchar note, uchar velocity, bigtime_t time)
133 fMidiObject->SprayNoteOn(channel + 1, note, velocity, MAKE_TIME(time));
139 uchar channel, uchar note, uchar pressure, bigtime_t time)
142 channel + 1, note, pressure, MAKE_TIME(time));
148 uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time)
151 channel + 1, controlNumber, controlValue, MAKE_TIME(time));
157 uchar channel, uchar programNumber, bigtime_t time)
160 channel + 1, programNumber, MAKE_TIME(time));
166 uchar channel, uchar pressure, bigtime_t time)
168 fMidiObject->SprayChannelPressure(channel + 1, pressure, MAKE_TIME(time));
174 uchar channel, uchar lsb, uchar msb, bigtime_t time)
176 fMidiObject->SprayPitchBend(channel + 1, lsb, msb, MAKE_TIME(time));