Home
last modified time | relevance | path

Searched refs:chset (Results 1 – 19 of 19) sorted by relevance

/linux-6.3-rc2/sound/core/seq/
A Dseq_midi_emul.c315 rpn(ops, drv, chan, chset); in do_control()
513 reset_all_channels(chset); in sysex()
528 reset_all_channels(chset); in sysex()
691 chset = kmalloc(sizeof(*chset), GFP_KERNEL); in snd_midi_channel_alloc_set()
692 if (chset) { in snd_midi_channel_alloc_set()
694 chset->private_data = NULL; in snd_midi_channel_alloc_set()
695 chset->max_channels = n; in snd_midi_channel_alloc_set()
697 return chset; in snd_midi_channel_alloc_set()
718 if (chset == NULL) in snd_midi_channel_free_set()
720 kfree(chset->channels); in snd_midi_channel_free_set()
[all …]
/linux-6.3-rc2/sound/drivers/opl4/
A Dopl4_seq.c116 snd_midi_process_event(&opl4_ops, ev, opl4->chset); in snd_opl4_seq_event_input()
124 snd_midi_channel_free_set(opl4->chset); in snd_opl4_seq_free_port()
141 opl4->chset = snd_midi_channel_alloc_set(16); in snd_opl4_seq_probe()
142 if (!opl4->chset) in snd_opl4_seq_probe()
144 opl4->chset->private_data = opl4; in snd_opl4_seq_probe()
150 snd_midi_channel_free_set(opl4->chset); in snd_opl4_seq_probe()
154 opl4->chset->client = client; in snd_opl4_seq_probe()
165 opl4->chset->port = snd_seq_event_port_attach(client, &pcallbacks, in snd_opl4_seq_probe()
174 if (opl4->chset->port < 0) { in snd_opl4_seq_probe()
175 int err = opl4->chset->port; in snd_opl4_seq_probe()
[all …]
A Dopl4_local.h194 struct snd_midi_channel_set *chset; member
229 …d_opl4_sysex(void *p, unsigned char *buf, int len, int parsed, struct snd_midi_channel_set *chset);
A Dopl4_synth.c291 snd_midi_channel_set_clear(opl4->chset); in snd_opl4_synth_reset()
374 att += snd_opl4_volume_table[opl4->chset->gs_master_volume & 0x7f]; in snd_opl4_update_volume()
625 int parsed, struct snd_midi_channel_set *chset) in snd_opl4_sysex() argument
/linux-6.3-rc2/sound/synth/emux/
A Demux_seq.c96 emu->ports[i] = p->chset.port; in snd_emux_init_seq()
138 p->chset.channels = kcalloc(max_channels, sizeof(*p->chset.channels), in snd_emux_create_port()
140 if (!p->chset.channels) { in snd_emux_create_port()
145 p->chset.channels[i].number = i; in snd_emux_create_port()
146 p->chset.private_data = p; in snd_emux_create_port()
147 p->chset.max_channels = max_channels; in snd_emux_create_port()
149 p->chset.client = emu->client; in snd_emux_create_port()
185 kfree(p->chset.channels); in free_port()
217 snd_midi_channel_set_clear(&port->chset); in snd_emux_reset_port()
228 for (i = 0; i < port->chset.max_channels; i++) { in snd_emux_reset_port()
[all …]
A Demux_oss.c125 arg->addr.client = p->chset.client; in snd_emux_open_seq_oss()
126 arg->addr.port = p->chset.port; in snd_emux_open_seq_oss()
178 snd_soundfont_close_check(emu->sflist, SF_CLIENT_NO(p->chset.port)); in snd_emux_close_seq_oss()
179 snd_seq_event_port_detach(p->chset.client, p->chset.port); in snd_emux_close_seq_oss()
209 SF_CLIENT_NO(p->chset.port)); in snd_emux_load_patch_seq_oss()
330 if (voice < 0 || voice >= port->chset.max_channels) in emuspec_control()
333 chan = &port->chset.channels[voice]; in emuspec_control()
388 for (i = 0; i < port->chset.max_channels; i++) { in emuspec_control()
389 chan = &port->chset.channels[i]; in emuspec_control()
428 if (voice < 0 || voice >= port->chset.max_channels) in gusspec_control()
[all …]
A Demux_nrpn.c274 struct snd_midi_channel_set *chset) in snd_emux_nrpn() argument
297 if (port->chset.midi_mode == SNDRV_MIDI_MODE_GS && in snd_emux_nrpn()
366 struct snd_midi_channel_set *chset) in snd_emux_sysex() argument
372 if (snd_BUG_ON(!port || !chset)) in snd_emux_sysex()
382 emu->ops.sysex(emu, buf, len, parsed, chset); in snd_emux_sysex()
A Demux_effect.c276 p->effect = kcalloc(p->chset.max_channels, in snd_emux_create_effect()
279 for (i = 0; i < p->chset.max_channels; i++) in snd_emux_create_effect()
280 p->chset.channels[i].private = p->effect + i; in snd_emux_create_effect()
282 for (i = 0; i < p->chset.max_channels; i++) in snd_emux_create_effect()
283 p->chset.channels[i].private = NULL; in snd_emux_create_effect()
299 p->chset.max_channels); in snd_emux_clear_effect()
A Demux_voice.h61 int parsed, struct snd_midi_channel_set *chset);
65 struct snd_midi_channel_set *chset);
A Demux_synth.c354 if (port->chset.midi_mode == SNDRV_MIDI_MODE_XG) { in snd_emux_control()
771 master_vol = port->chset.gs_master_volume; in calc_volume()
864 switch (port->chset.midi_mode) { in get_bank()
/linux-6.3-rc2/sound/drivers/opl3/
A Dopl3_seq.c148 snd_midi_process_event(&opl3_ops, ev, opl3->chset); in snd_opl3_synth_event_input()
158 snd_midi_channel_free_set(opl3->chset); in snd_opl3_synth_free_port()
169 opl3->chset = snd_midi_channel_alloc_set(16); in snd_opl3_synth_create_port()
170 if (opl3->chset == NULL) in snd_opl3_synth_create_port()
172 opl3->chset->private_data = opl3; in snd_opl3_synth_create_port()
185 opl3->chset->client = opl3->seq_client; in snd_opl3_synth_create_port()
186 opl3->chset->port = snd_seq_event_port_attach(opl3->seq_client, &callbacks, in snd_opl3_synth_create_port()
196 if (opl3->chset->port < 0) { in snd_opl3_synth_create_port()
198 port = opl3->chset->port; in snd_opl3_synth_create_port()
199 snd_midi_channel_free_set(opl3->chset); in snd_opl3_synth_create_port()
A Dopl3_voice.h23 void snd_opl3_nrpn(void *p, struct snd_midi_channel *chan, struct snd_midi_channel_set *chset);
24 …d_opl3_sysex(void *p, unsigned char *buf, int len, int parsed, struct snd_midi_channel_set *chset);
A Dopl3_midi.c838 struct snd_midi_channel_set *chset) in snd_opl3_nrpn() argument
850 int parsed, struct snd_midi_channel_set *chset) in snd_opl3_sysex() argument
/linux-6.3-rc2/include/sound/
A Dseq_midi_emul.h75 struct snd_midi_channel_set *chset);
77 struct snd_midi_channel_set *chset);
180 void snd_midi_channel_set_clear(struct snd_midi_channel_set *chset);
182 void snd_midi_channel_free_set(struct snd_midi_channel_set *chset);
A Demux_synth.h53 struct snd_midi_channel_set *chset);
128 struct snd_midi_channel_set chset; member
A Dopl3.h313 struct snd_midi_channel_set * chset; member
A Dgus.h207 struct snd_midi_channel_set * chset; member
/linux-6.3-rc2/sound/isa/sb/
A Demu8000_callback.c25 struct snd_midi_channel_set *chset);
447 sysex(struct snd_emux *emu, char *buf, int len, int parsed, struct snd_midi_channel_set *chset) in sysex() argument
455 hw->chorus_mode = chset->gs_chorus_mode; in sysex()
460 hw->reverb_mode = chset->gs_reverb_mode; in sysex()
/linux-6.3-rc2/sound/pci/trident/
A Dtrident.h239 struct snd_midi_channel_set * chset; member

Completed in 30 milliseconds