From: Jaroslav Kysela Date: Sat, 7 Dec 2002 09:44:27 +0000 (+0000) Subject: Dirk Kalis X-Git-Tag: v1.0.3~98 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=3343a6b188f42136be3b724feb81a6986072497a;p=alsa-tools.git Dirk Kalis In the patch is the adc volume rate only set to max if ipga volume is set. --- diff --git a/envy24control/volume.c b/envy24control/volume.c index a06a7c2..8698c58 100644 --- a/envy24control/volume.c +++ b/envy24control/volume.c @@ -144,7 +144,7 @@ void adc_volume_update(int idx) void ipga_volume_update(int idx) { snd_ctl_elem_value_t *val; - int err; + int err, ipga_vol; snd_ctl_elem_value_alloca(&val); snd_ctl_elem_value_set_interface(val, SND_CTL_ELEM_IFACE_MIXER); snd_ctl_elem_value_set_name(val, IPGA_VOLUME_NAME); @@ -154,15 +154,17 @@ void ipga_volume_update(int idx) return; } gtk_adjustment_set_value(GTK_ADJUSTMENT(av_ipga_volume_adj[idx]), - -snd_ctl_elem_value_get_integer(val, 0)); + -(ipga_vol = snd_ctl_elem_value_get_integer(val, 0))); snd_ctl_elem_value_set_name(val, ADC_VOLUME_NAME); snd_ctl_elem_value_set_index(val, idx); if ((err = snd_ctl_elem_read(ctl, val)) < 0) { g_print("Unable to read adc volume: %s\n", snd_strerror(err)); return; } - gtk_adjustment_set_value(GTK_ADJUSTMENT(av_adc_volume_adj[idx]), - -127); + // set ADC volume to max if IPGA volume greater 0 + if (ipga_vol) + gtk_adjustment_set_value(GTK_ADJUSTMENT(av_adc_volume_adj[idx]), + -127); } void dac_sense_update(int idx)