Lines Matching refs:kcontrol

729 snd_vortex_a3d_hrtf_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)  in snd_vortex_a3d_hrtf_info()  argument
738 snd_vortex_a3d_itd_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) in snd_vortex_a3d_itd_info() argument
747 snd_vortex_a3d_ild_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) in snd_vortex_a3d_ild_info() argument
756 snd_vortex_a3d_filter_info(struct snd_kcontrol *kcontrol, in snd_vortex_a3d_filter_info() argument
767 snd_vortex_a3d_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) in snd_vortex_a3d_get() argument
776 snd_vortex_a3d_hrtf_put(struct snd_kcontrol *kcontrol, in snd_vortex_a3d_hrtf_put() argument
779 a3dsrc_t *a = kcontrol->private_data; in snd_vortex_a3d_hrtf_put()
793 snd_vortex_a3d_itd_put(struct snd_kcontrol *kcontrol, in snd_vortex_a3d_itd_put() argument
796 a3dsrc_t *a = kcontrol->private_data; in snd_vortex_a3d_itd_put()
812 snd_vortex_a3d_ild_put(struct snd_kcontrol *kcontrol, in snd_vortex_a3d_ild_put() argument
815 a3dsrc_t *a = kcontrol->private_data; in snd_vortex_a3d_ild_put()
829 snd_vortex_a3d_filter_put(struct snd_kcontrol *kcontrol, in snd_vortex_a3d_filter_put() argument
832 a3dsrc_t *a = kcontrol->private_data; in snd_vortex_a3d_filter_put()
861 struct snd_kcontrol *kcontrol; in vortex_a3d_register_controls() local
865 if ((kcontrol = in vortex_a3d_register_controls()
868 kcontrol->id.numid = CTRLID_HRTF; in vortex_a3d_register_controls()
869 kcontrol->info = snd_vortex_a3d_hrtf_info; in vortex_a3d_register_controls()
870 kcontrol->put = snd_vortex_a3d_hrtf_put; in vortex_a3d_register_controls()
871 if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0) in vortex_a3d_register_controls()
876 if ((kcontrol = in vortex_a3d_register_controls()
879 kcontrol->id.numid = CTRLID_ITD; in vortex_a3d_register_controls()
880 kcontrol->info = snd_vortex_a3d_itd_info; in vortex_a3d_register_controls()
881 kcontrol->put = snd_vortex_a3d_itd_put; in vortex_a3d_register_controls()
882 if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0) in vortex_a3d_register_controls()
887 if ((kcontrol = in vortex_a3d_register_controls()
890 kcontrol->id.numid = CTRLID_GAINS; in vortex_a3d_register_controls()
891 kcontrol->info = snd_vortex_a3d_ild_info; in vortex_a3d_register_controls()
892 kcontrol->put = snd_vortex_a3d_ild_put; in vortex_a3d_register_controls()
893 if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0) in vortex_a3d_register_controls()
898 if ((kcontrol = in vortex_a3d_register_controls()
901 kcontrol->id.numid = CTRLID_FILTER; in vortex_a3d_register_controls()
902 kcontrol->info = snd_vortex_a3d_filter_info; in vortex_a3d_register_controls()
903 kcontrol->put = snd_vortex_a3d_filter_put; in vortex_a3d_register_controls()
904 if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0) in vortex_a3d_register_controls()