Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __SOUND_SEQ_MIDI_EVENT_H |
| 3 | #define __SOUND_SEQ_MIDI_EVENT_H |
| 4 | |
| 5 | /* |
| 6 | * MIDI byte <-> sequencer event coder |
| 7 | * |
| 8 | * Copyright (C) 1998,99 Takashi Iwai <tiwai@suse.de>, |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 9 | * Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 12 | #include <sound/asequencer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #define MAX_MIDI_EVENT_BUF 256 |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | /* midi status */ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 17 | struct snd_midi_event { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | int qlen; /* queue length */ |
| 19 | int read; /* chars read */ |
| 20 | int type; /* current event type */ |
| 21 | unsigned char lastcmd; /* last command (for MIDI state handling) */ |
| 22 | unsigned char nostat; /* no state flag */ |
| 23 | int bufsize; /* allocated buffer size */ |
| 24 | unsigned char *buf; /* input buffer */ |
| 25 | spinlock_t lock; |
| 26 | }; |
| 27 | |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 28 | int snd_midi_event_new(int bufsize, struct snd_midi_event **rdev); |
| 29 | void snd_midi_event_free(struct snd_midi_event *dev); |
| 30 | void snd_midi_event_reset_encode(struct snd_midi_event *dev); |
| 31 | void snd_midi_event_reset_decode(struct snd_midi_event *dev); |
| 32 | void snd_midi_event_no_status(struct snd_midi_event *dev, int on); |
Takashi Iwai | ef965ad | 2018-08-01 14:38:18 +0200 | [diff] [blame] | 33 | bool snd_midi_event_encode_byte(struct snd_midi_event *dev, unsigned char c, |
| 34 | struct snd_seq_event *ev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | /* decode from event to bytes - return number of written bytes if success */ |
Takashi Iwai | c7e0b5b | 2005-11-17 14:04:02 +0100 | [diff] [blame] | 36 | long snd_midi_event_decode(struct snd_midi_event *dev, unsigned char *buf, long count, |
| 37 | struct snd_seq_event *ev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #endif /* __SOUND_SEQ_MIDI_EVENT_H */ |