diff options
| author | cbdev <cb@cbcdn.com> | 2021-06-21 21:02:20 +0200 | 
|---|---|---|
| committer | cbdev <cb@cbcdn.com> | 2021-06-21 21:02:20 +0200 | 
| commit | 30268b29abe37847eab1770897e3a7f502ca8bda (patch) | |
| tree | aca60b934fe46b9cf0ddd72d083b40147f5b3133 /backends/rtpmidi.h | |
| parent | fca46bef7dd8448216d44f0777f0b5ef31ac5883 (diff) | |
| parent | 91764dfc3ad86994ce27e5c80a92c034e12b849c (diff) | |
| download | midimonster-30268b29abe37847eab1770897e3a7f502ca8bda.tar.gz midimonster-30268b29abe37847eab1770897e3a7f502ca8bda.tar.bz2 midimonster-30268b29abe37847eab1770897e3a7f502ca8bda.zip  | |
Merge branch 'master' into mqttmqtt
Diffstat (limited to 'backends/rtpmidi.h')
| -rw-r--r-- | backends/rtpmidi.h | 23 | 
1 files changed, 18 insertions, 5 deletions
diff --git a/backends/rtpmidi.h b/backends/rtpmidi.h index 7e6eccc..e88530f 100644 --- a/backends/rtpmidi.h +++ b/backends/rtpmidi.h @@ -32,13 +32,21 @@ static int rtpmidi_shutdown(size_t n, instance** inst);  #define DNS_OPCODE(a) (((a) & 0x78) >> 3)  #define DNS_RESPONSE(a) ((a) & 0x80) +#define EPN_NRPN 8 +#define EPN_PARAMETER_HI 4 +#define EPN_PARAMETER_LO 2 +#define EPN_VALUE_HI 1 +  enum /*_rtpmidi_channel_type*/ {  	none = 0,  	note = 0x90, -	cc = 0xB0,  	pressure = 0xA0, +	cc = 0xB0, +	program = 0xC0,  	aftertouch = 0xD0, -	pitchbend = 0xE0 +	pitchbend = 0xE0, +	rpn = 0xF1, +	nrpn = 0xF2  };  typedef enum /*_rtpmidi_instance_mode*/ { @@ -49,10 +57,10 @@ typedef enum /*_rtpmidi_instance_mode*/ {  typedef union {  	struct { -		uint8_t pad[5]; +		uint8_t pad[4];  		uint8_t type;  		uint8_t channel; -		uint8_t control; +		uint16_t control;  	} fields;  	uint64_t label;  } rtpmidi_channel_ident; @@ -67,7 +75,7 @@ typedef struct /*_rtpmidi_peer*/ {  	ssize_t invite; //invite-list index for apple-mode learned peers (used to track ipv6/ipv4 overlapping invitations)  } rtpmidi_peer; -typedef struct /*_rtmidi_instance_data*/ { +typedef struct /*_rtpmidi_instance_data*/ {  	rtpmidi_instance_mode mode;  	int fd; @@ -79,6 +87,11 @@ typedef struct /*_rtmidi_instance_data*/ {  	uint32_t ssrc;  	uint16_t sequence; +	uint8_t epn_tx_short; +	uint16_t epn_control[16]; +	uint16_t epn_value[16]; +	uint8_t epn_status[16]; +  	//apple-midi config  	char* accept;  	uint64_t last_announce;  | 
