2019-05-27 09:55:05 +03:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
2005-04-17 02:20:36 +04:00
# ifndef __SOUND_SEQ_MIDI_EVENT_H
# define __SOUND_SEQ_MIDI_EVENT_H
/*
* MIDI byte < - > sequencer event coder
*
* Copyright ( C ) 1998 , 99 Takashi Iwai < tiwai @ suse . de > ,
2007-10-15 11:50:19 +04:00
* Jaroslav Kysela < perex @ perex . cz >
2005-04-17 02:20:36 +04:00
*/
2012-10-02 21:01:25 +04:00
# include <sound/asequencer.h>
2005-04-17 02:20:36 +04:00
# define MAX_MIDI_EVENT_BUF 256
/* midi status */
2005-11-17 16:04:02 +03:00
struct snd_midi_event {
2005-04-17 02:20:36 +04:00
int qlen ; /* queue length */
int read ; /* chars read */
int type ; /* current event type */
unsigned char lastcmd ; /* last command (for MIDI state handling) */
unsigned char nostat ; /* no state flag */
int bufsize ; /* allocated buffer size */
unsigned char * buf ; /* input buffer */
spinlock_t lock ;
} ;
2005-11-17 16:04:02 +03:00
int snd_midi_event_new ( int bufsize , struct snd_midi_event * * rdev ) ;
void snd_midi_event_free ( struct snd_midi_event * dev ) ;
void snd_midi_event_reset_encode ( struct snd_midi_event * dev ) ;
void snd_midi_event_reset_decode ( struct snd_midi_event * dev ) ;
void snd_midi_event_no_status ( struct snd_midi_event * dev , int on ) ;
2018-08-01 15:38:18 +03:00
bool snd_midi_event_encode_byte ( struct snd_midi_event * dev , unsigned char c ,
struct snd_seq_event * ev ) ;
2005-04-17 02:20:36 +04:00
/* decode from event to bytes - return number of written bytes if success */
2005-11-17 16:04:02 +03:00
long snd_midi_event_decode ( struct snd_midi_event * dev , unsigned char * buf , long count ,
struct snd_seq_event * ev ) ;
2005-04-17 02:20:36 +04:00
# endif /* __SOUND_SEQ_MIDI_EVENT_H */