Lines Matching full:control

35 	unsigned char control[128];	/* Current value of all controls */  member
73 void (*control)(void *private_data, int type, struct snd_midi_channel *chan); member
94 #define gm_bank_select control[0]
95 #define gm_modulation control[1]
96 #define gm_breath control[2]
97 #define gm_foot_pedal control[4]
98 #define gm_portamento_time control[5]
99 #define gm_data_entry control[6]
100 #define gm_volume control[7]
101 #define gm_balance control[8]
102 #define gm_pan control[10]
103 #define gm_expression control[11]
104 #define gm_effect_control1 control[12]
105 #define gm_effect_control2 control[13]
106 #define gm_slider1 control[16]
107 #define gm_slider2 control[17]
108 #define gm_slider3 control[18]
109 #define gm_slider4 control[19]
111 #define gm_bank_select_lsb control[32]
112 #define gm_modulation_wheel_lsb control[33]
113 #define gm_breath_lsb control[34]
114 #define gm_foot_pedal_lsb control[36]
115 #define gm_portamento_time_lsb control[37]
116 #define gm_data_entry_lsb control[38]
117 #define gm_volume_lsb control[39]
118 #define gm_balance_lsb control[40]
119 #define gm_pan_lsb control[42]
120 #define gm_expression_lsb control[43]
121 #define gm_effect_control1_lsb control[44]
122 #define gm_effect_control2_lsb control[45]
124 #define gm_sustain control[MIDI_CTL_SUSTAIN]
126 #define gm_portamento control[MIDI_CTL_PORTAMENTO]
127 #define gm_sostenuto control[MIDI_CTL_SOSTENUTO]
134 #define SNDRV_GM_BANK_SELECT(cp) (((cp)->control[0]<<7)|((cp)->control[32]))
135 #define SNDRV_GM_MODULATION_WHEEL(cp) (((cp)->control[1]<<7)|((cp)->control[33]))
136 #define SNDRV_GM_BREATH(cp) (((cp)->control[2]<<7)|((cp)->control[34]))
137 #define SNDRV_GM_FOOT_PEDAL(cp) (((cp)->control[4]<<7)|((cp)->control[36]))
138 #define SNDRV_GM_PORTAMENTO_TIME(cp) (((cp)->control[5]<<7)|((cp)->control[37]))
139 #define SNDRV_GM_DATA_ENTRY(cp) (((cp)->control[6]<<7)|((cp)->control[38]))
140 #define SNDRV_GM_VOLUME(cp) (((cp)->control[7]<<7)|((cp)->control[39]))
141 #define SNDRV_GM_BALANCE(cp) (((cp)->control[8]<<7)|((cp)->control[40]))
142 #define SNDRV_GM_PAN(cp) (((cp)->control[10]<<7)|((cp)->control[42]))
143 #define SNDRV_GM_EXPRESSION(cp) (((cp)->control[11]<<7)|((cp)->control[43]))