summaryrefslogtreecommitdiffstats
path: root/src/modules/module-alsa-source.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-08-07 16:50:15 +0000
committerLennart Poettering <lennart@poettering.net>2006-08-07 16:50:15 +0000
commit5d8ccfd83984c6b0559857e6a0bf13037818ca95 (patch)
treeb327677ed090608135d1ba4e42eab13def604560 /src/modules/module-alsa-source.c
parentd953870564c13bc4742634a17300c58abbf1eadf (diff)
try to reduce volume updates in the ALSA sinks/sources: only touch the shadowed hw volme if necessary
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1189 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/modules/module-alsa-source.c')
-rw-r--r--src/modules/module-alsa-source.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/modules/module-alsa-source.c b/src/modules/module-alsa-source.c
index ca4ac9d0..3952a385 100644
--- a/src/modules/module-alsa-source.c
+++ b/src/modules/module-alsa-source.c
@@ -213,13 +213,18 @@ static int source_get_hw_volume_cb(pa_source *s) {
assert(u && u->mixer_elem);
for (i = 0;i < s->hw_volume.channels;i++) {
+ long set_vol;
+
assert(snd_mixer_selem_has_capture_channel(u->mixer_elem, i));
-
- err = snd_mixer_selem_get_capture_volume(u->mixer_elem, i, &vol);
- if (err < 0)
+
+ if ((err = snd_mixer_selem_get_capture_volume(u->mixer_elem, i, &vol)) < 0)
goto fail;
- s->hw_volume.values[i] =
- (vol - u->hw_volume_min) * PA_VOLUME_NORM / (u->hw_volume_max - u->hw_volume_min);
+
+ set_vol = (long) roundf(((float) s->hw_volume.values[i] * (u->hw_volume_max - u->hw_volume_min)) / PA_VOLUME_NORM) + u->hw_volume_min;
+
+ /* Try to avoid superfluous volume changes */
+ if (set_vol != vol)
+ s->hw_volume.values[i] = (pa_volume_t) roundf(((float) (vol - u->hw_volume_min) * PA_VOLUME_NORM) / (u->hw_volume_max - u->hw_volume_min));
}
return 0;
@@ -247,10 +252,9 @@ static int source_set_hw_volume_cb(pa_source *s) {
if (vol > PA_VOLUME_NORM)
vol = PA_VOLUME_NORM;
- vol = vol * (u->hw_volume_max - u->hw_volume_min) /
- PA_VOLUME_NORM + u->hw_volume_min;
- err = snd_mixer_selem_set_capture_volume(u->mixer_elem, i, vol);
- if (err < 0)
+ vol = (long) roundf(((float) vol * (u->hw_volume_max - u->hw_volume_min)) / PA_VOLUME_NORM) + u->hw_volume_min;
+
+ if ((err = snd_mixer_selem_set_capture_volume(u->mixer_elem, i, vol)) < 0)
goto fail;
}