Home | History | Annotate | Download | only in linux

Lines Matching full:note

242 #define WAVE_FAST_RELEASE 0x80	/* bit 7 = Shut off immediately after note off */
259 * playback speed for a note. The base_note defines the tone frequency
263 * The low_note and high_note fields define the minimum and maximum note
269 * the note frequency multiplied by 1000. For example value for the
363 * are for the LSB. Note that just 7 bits are used in MIDI bytes.
441 * Note! SEQ_WAIT, SEQ_MIDIPUTC and SEQ_ECHO are used also as
561 /* Audio data formats (Note! U8=8 and S16_LE=16 for compatibility) */
586 /* Note! 'bytes' could be more than fragments*fragsize */
714 unsigned char data[4000]; /* NOTE! 4000 is not 4k */
792 /* Note! Number 31 cannot be used since the sign bit is reserved */
994 * 0x01 = note event (event[4] = note).
996 * event[2] = MIDI message code (0x80=note off etc.)
1151 #define _CHN_VOICE(dev, event, chn, note, parm) \
1157 _seqbuf[_seqbufptr+4] = (note);\
1163 #define SEQ_START_NOTE(dev, chn, note, vol) \
1164 _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol)
1166 #define SEQ_STOP_NOTE(dev, chn, note, vol) \
1167 _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol)
1169 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \
1170 _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)