Lines Matching refs:note
47 unsigned char note;
214 unsigned char status, unsigned char note, unsigned char velocity)
220 buffer[1] = note;
242 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity);
340 unsigned char status, note, velocity;
344 note = data[j*2+1];
347 if (note < 0x81) { /* note on */
349 note = note - 0x54 + PCMIDI_MIDDLE_C +
352 velocity = 1; /* force note on */
353 } else { /* note off */
355 note = note - 0x94 + PCMIDI_MIDDLE_C +
363 pms->note = note;
375 pcmidi_send_note(pm, status, note, velocity);