Lines Matching refs:status
32 * (6) changed mf_write_midi_event to use running status
314 /* This array is indexed by the high half of a status byte. It's */
325 int running = 0; /* 1 when running status used */
326 int status = 0; /* status value (e.g. 0x90==note-on) */
417 { /* running status? */
418 if (status == 0)
419 mferror ("unexpected running status");
424 status = c;
428 needed = chantype[(status >> 4) & 0xf];
437 chanmessage (status, c1, (needed > 1) ? egetc () : 0);
590 chanmessage (status, c1, c2)
591 int status;
594 int chan = status & 0xf;
601 switch (status & 0xf0)