mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
use pa_sink_set_volume() for changing the volume
This commit is contained in:
parent
b048ae9f78
commit
34f6a516b2
1 changed files with 1 additions and 9 deletions
|
|
@ -95,16 +95,8 @@ static void process_input_volume_change(
|
||||||
|
|
||||||
/* Set the master volume, and normalize inputs */
|
/* Set the master volume, and normalize inputs */
|
||||||
if (!pa_cvolume_equal(&max_volume, &sink->volume)) {
|
if (!pa_cvolume_equal(&max_volume, &sink->volume)) {
|
||||||
/* copied from pa_sink_set_volume(): need to call from here to avoid sink hooks */
|
|
||||||
/* alternatively, could create an extra function pa_sink_set_volume_full()? */
|
|
||||||
sink->volume = max_volume;
|
|
||||||
if (sink->set_volume && sink->set_volume(sink) < 0)
|
|
||||||
sink->set_volume = NULL;
|
|
||||||
|
|
||||||
if (!sink->set_volume)
|
pa_sink_set_volume(sink, &max_volume);
|
||||||
pa_sink_set_soft_volume(sink, &max_volume);
|
|
||||||
|
|
||||||
pa_subscription_post(sink->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, sink->index);
|
|
||||||
|
|
||||||
pa_log_debug("sink = %.2f (changed)", (double)pa_cvolume_avg(&sink->volume)/PA_VOLUME_NORM);
|
pa_log_debug("sink = %.2f (changed)", (double)pa_cvolume_avg(&sink->volume)/PA_VOLUME_NORM);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue