4 struct usb_mixer_interface {
5 struct snd_usb_audio *chip;
6 struct usb_host_interface *hostif;
8 unsigned int ignore_ctl_error;
10 /* array[MAX_ID_ELEMS], indexed by unit id */
11 struct usb_mixer_elem_info **id_elems;
13 /* the usb audio specification version this interface complies to */
16 /* Sound Blaster remote control stuff */
17 const struct rc_config *rc_cfg;
19 wait_queue_head_t rc_waitq;
21 struct usb_ctrlrequest *rc_setup_packet;
28 #define MAX_CHANNELS 16 /* max logical channels */
32 USB_MIXER_INV_BOOLEAN,
39 struct usb_mixer_elem_info {
40 struct usb_mixer_interface *mixer;
41 struct usb_mixer_elem_info *next_id_elem; /* list of controls with same id */
42 struct snd_ctl_elem_id *elem_id;
44 unsigned int control; /* CS or ICN (high byte) */
45 unsigned int cmask; /* channel mask bitmap: 0 = master */
46 unsigned int idx_off; /* Control index offset */
47 unsigned int ch_readonly;
48 unsigned int master_readonly;
54 int cache_val[MAX_CHANNELS];
58 int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
60 void snd_usb_mixer_disconnect(struct list_head *p);
62 void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid);
64 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
65 int request, int validx, int value_set);
66 void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer);
67 int snd_usb_mixer_activate(struct usb_mixer_interface *mixer);
69 int snd_usb_mixer_add_control(struct usb_mixer_interface *mixer,
70 struct snd_kcontrol *kctl);
72 int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
73 unsigned int size, unsigned int __user *_tlv);
75 #endif /* __USBMIXER_H */