seq_midi_event.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. #ifndef __SOUND_SEQ_MIDI_EVENT_H
  3. #define __SOUND_SEQ_MIDI_EVENT_H
  4. /*
  5. * MIDI byte <-> sequencer event coder
  6. *
  7. * Copyright (C) 1998,99 Takashi Iwai <[email protected]>,
  8. * Jaroslav Kysela <[email protected]>
  9. */
  10. #include <sound/asequencer.h>
  11. #define MAX_MIDI_EVENT_BUF 256
  12. /* midi status */
  13. struct snd_midi_event {
  14. int qlen; /* queue length */
  15. int read; /* chars read */
  16. int type; /* current event type */
  17. unsigned char lastcmd; /* last command (for MIDI state handling) */
  18. unsigned char nostat; /* no state flag */
  19. int bufsize; /* allocated buffer size */
  20. unsigned char *buf; /* input buffer */
  21. spinlock_t lock;
  22. };
  23. int snd_midi_event_new(int bufsize, struct snd_midi_event **rdev);
  24. void snd_midi_event_free(struct snd_midi_event *dev);
  25. void snd_midi_event_reset_encode(struct snd_midi_event *dev);
  26. void snd_midi_event_reset_decode(struct snd_midi_event *dev);
  27. void snd_midi_event_no_status(struct snd_midi_event *dev, int on);
  28. bool snd_midi_event_encode_byte(struct snd_midi_event *dev, unsigned char c,
  29. struct snd_seq_event *ev);
  30. /* decode from event to bytes - return number of written bytes if success */
  31. long snd_midi_event_decode(struct snd_midi_event *dev, unsigned char *buf, long count,
  32. struct snd_seq_event *ev);
  33. #endif /* __SOUND_SEQ_MIDI_EVENT_H */