mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
print the right software volume
This commit is contained in:
parent
611154caca
commit
98821c783d
2 changed files with 4 additions and 4 deletions
|
|
@ -929,11 +929,11 @@ static void sink_set_volume_cb(pa_sink *s) {
|
|||
char t[PA_CVOLUME_SNPRINT_MAX];
|
||||
|
||||
/* Match exactly what the user requested by software */
|
||||
pa_sw_cvolume_divide(&s->soft_volume, &s->virtual_volume, &r);
|
||||
pa_sw_cvolume_divide(&s->soft_volume, &s->virtual_volume, &s->hardware_volume);
|
||||
|
||||
pa_log_debug("Requested volume: %s", pa_cvolume_snprint(t, sizeof(t), &s->virtual_volume));
|
||||
pa_log_debug("Got hardware volume: %s", pa_cvolume_snprint(t, sizeof(t), &u->hardware_volume));
|
||||
pa_log_debug("Calculated software volume: %s", pa_cvolume_snprint(t, sizeof(t), &r));
|
||||
pa_log_debug("Calculated software volume: %s", pa_cvolume_snprint(t, sizeof(t), &s->soft_volume));
|
||||
|
||||
} else
|
||||
|
||||
|
|
|
|||
|
|
@ -876,11 +876,11 @@ static void source_set_volume_cb(pa_source *s) {
|
|||
|
||||
/* Match exactly what the user requested by software */
|
||||
|
||||
pa_sw_cvolume_divide(&s->soft_volume, &s->virtual_volume, &r);
|
||||
pa_sw_cvolume_divide(&s->soft_volume, &s->virtual_volume, &s->hardware_volume);
|
||||
|
||||
pa_log_debug("Requested volume: %s", pa_cvolume_snprint(t, sizeof(t), &s->virtual_volume));
|
||||
pa_log_debug("Got hardware volume: %s", pa_cvolume_snprint(t, sizeof(t), &u->hardware_volume));
|
||||
pa_log_debug("Calculated software volume: %s", pa_cvolume_snprint(t, sizeof(t), &r));
|
||||
pa_log_debug("Calculated software volume: %s", pa_cvolume_snprint(t, sizeof(t), &s->soft_volume));
|
||||
|
||||
} else
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue