From de86c6e3ade17c3b29fd57afb47efb3a88a423d4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 5 Feb 2009 01:22:05 +0100 Subject: add a 'volume factor' that is implicitly multiplied into the volume of a sink input without being visible to the outside --- src/pulsecore/sink.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/pulsecore/sink.c') diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index 0c297ec3..57725873 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -990,6 +990,7 @@ void pa_sink_update_flat_volume(pa_sink *s, pa_cvolume *new_volume) { remapped_new_volume = *new_volume; pa_cvolume_remap(&remapped_new_volume, &s->channel_map, &i->channel_map); pa_sw_cvolume_divide(&i->soft_volume, &i->virtual_volume, &remapped_new_volume); + pa_sw_cvolume_multiply(&i->soft_volume, &i->soft_volume, &i->volume_factor); /* Hooks have the ability to play games with i->soft_volume */ pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_INPUT_SET_VOLUME], i); -- cgit