aboutsummaryrefslogtreecommitdiff
path: root/sound/core/seq/oss/seq_oss_event.h
blob: bf1d4d3f53c9153db4e1ca5da0b0c7f7d93e949f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
 * OSS compatible sequencer driver
 *
 * seq_oss_event.h - OSS event queue record
 *
 * Copyright (C) 1998,99 Takashi Iwai <tiwai@suse.de>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#ifndef __SEQ_OSS_EVENT_H
#define __SEQ_OSS_EVENT_H

#include "seq_oss_device.h"

#define SHORT_EVENT_SIZE	4
#define LONG_EVENT_SIZE		8

/* short event (4bytes) */
typedef struct evrec_short_t {
	unsigned char code;
	unsigned char parm1;
	unsigned char dev;
	unsigned char parm2;
} evrec_short_t;
	
/* short note events (4bytes) */
typedef struct evrec_note_t {
	unsigned char code;
	unsigned char chn;
	unsigned char note;
	unsigned char vel;
} evrec_note_t;
	
/* long timer events (8bytes) */
typedef struct evrec_timer_t {
	unsigned char code;
	unsigned char cmd;
	unsigned char dummy1, dummy2;
	unsigned int time;
} evrec_timer_t;

/* long extended events (8bytes) */
typedef struct evrec_extended_t {
	unsigned char code;
	unsigned char cmd;
	unsigned char dev;
	unsigned char chn;
	unsigned char p1, p2, p3, p4;
} evrec_extended_t;

/* long channel events (8bytes) */
typedef struct evrec_long_t {
	unsigned char code;
	unsigned char dev;
	unsigned char cmd;
	unsigned char chn;
	unsigned char p1, p2;
	unsigned short val;
} evrec_long_t;
	
/* channel voice events (8bytes) */
typedef struct evrec_voice_t {
	unsigned char code;
	unsigned char dev;
	unsigned char cmd;
	unsigned char chn;
	unsigned char note, parm;
	unsigned short dummy;
} evrec_voice_t;

/* sysex events (8bytes) */
typedef struct evrec_sysex_t {
	unsigned char code;
	unsigned char dev;
	unsigned char buf[6];
} evrec_sysex_t;

/* event record */
union evrec_t {
	evrec_short_t s;
	evrec_note_t n;
	evrec_long_t l;
	evrec_voice_t v;
	evrec_timer_t t;
	evrec_extended_t e;
	evrec_sysex_t x;
	unsigned int echo;
	unsigned char c[LONG_EVENT_SIZE];
};

#define ev_is_long(ev) ((ev)->s.code >= 128)
#define ev_length(ev) ((ev)->s.code >= 128 ? LONG_EVENT_SIZE : SHORT_EVENT_SIZE)

int snd_seq_oss_process_event(seq_oss_devinfo_t *dp, evrec_t *q, snd_seq_event_t *ev);
int snd_seq_oss_process_timer_event(seq_oss_timer_t *rec, evrec_t *q);
int snd_seq_oss_event_input(snd_seq_event_t *ev, int direct, void *private_data, int atomic, int hop);


#endif /* __SEQ_OSS_EVENT_H */