Lines Matching full:note

21 static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
77 * Converts the note frequency to block and fnum values for the FM chip
87 int note, struct snd_midi_channel *chan)
89 int block = ((note / 12) & 0x07) - 1;
90 int idx = (note % 12) + 2;
132 * Get a FM voice (channel) to play a note on.
246 snd_opl3_note_off_unsafe(opl3, vp->note, 0,
284 * Start a note.
286 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
306 int key = note;
316 opl3_dbg(opl3, "Note on, ch %i, inst %i, note %i, vel %i\n",
317 chan->number, chan->midi_program, note, vel);
325 prg = note;
343 snd_opl3_drum_switch(opl3, note, vel, 1, chan);
525 note = fm->fix_key;
530 note += (fm->trnsps - 64);
532 snd_opl3_calc_pitch(&fnum, &blocknum, note, chan);
548 /* kill note after fixed duration (in centiseconds) */
562 vp->note = key;
570 vp2->note = key;
584 debug_alloc(opl3, "note on ", voice);
642 debug_alloc(opl3, "note off", voice);
648 * Release a note in response to a midi note off.
650 static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
660 opl3_dbg(opl3, "Note off, ch %i, inst %i, note %i\n",
661 chan->number, chan->midi_program, note);
665 snd_opl3_drum_switch(opl3, note, vel, 0, chan);
669 they are grouped by the same channel and note values */
672 if (vp->state > 0 && vp->chan == chan && vp->note == note) {
685 void snd_opl3_note_off(void *p, int note, int vel,
692 snd_opl3_note_off_unsafe(p, note, vel, chan);
699 void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan)
706 * terminate note
708 void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan)
710 opl3_dbg(p, "Terminate note, ch#: %i, inst#: %i\n",
741 snd_opl3_calc_pitch(&fnum, &blocknum, vp->note, vp->chan);