mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
sink-input, source-output: Add logging to set_mute()
This commit is contained in:
parent
70441d40fb
commit
080bdf1b6b
2 changed files with 14 additions and 2 deletions
|
|
@ -1399,16 +1399,22 @@ pa_cvolume *pa_sink_input_get_volume(pa_sink_input *i, pa_cvolume *volume, bool
|
||||||
|
|
||||||
/* Called from main context */
|
/* Called from main context */
|
||||||
void pa_sink_input_set_mute(pa_sink_input *i, bool mute, bool save) {
|
void pa_sink_input_set_mute(pa_sink_input *i, bool mute, bool save) {
|
||||||
|
bool old_mute;
|
||||||
|
|
||||||
pa_sink_input_assert_ref(i);
|
pa_sink_input_assert_ref(i);
|
||||||
pa_assert_ctl_context();
|
pa_assert_ctl_context();
|
||||||
pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
|
pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
|
||||||
|
|
||||||
if (mute == i->muted) {
|
old_mute = i->muted;
|
||||||
|
|
||||||
|
if (mute == old_mute) {
|
||||||
i->save_muted |= save;
|
i->save_muted |= save;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
i->muted = mute;
|
i->muted = mute;
|
||||||
|
pa_log_debug("The mute of sink input %u changed from %s to %s.", i->index, pa_yes_no(old_mute), pa_yes_no(mute));
|
||||||
|
|
||||||
i->save_muted = save;
|
i->save_muted = save;
|
||||||
|
|
||||||
pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_SOFT_MUTE, NULL, 0, NULL) == 0);
|
pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_SOFT_MUTE, NULL, 0, NULL) == 0);
|
||||||
|
|
|
||||||
|
|
@ -1057,16 +1057,22 @@ pa_cvolume *pa_source_output_get_volume(pa_source_output *o, pa_cvolume *volume,
|
||||||
|
|
||||||
/* Called from main context */
|
/* Called from main context */
|
||||||
void pa_source_output_set_mute(pa_source_output *o, bool mute, bool save) {
|
void pa_source_output_set_mute(pa_source_output *o, bool mute, bool save) {
|
||||||
|
bool old_mute;
|
||||||
|
|
||||||
pa_source_output_assert_ref(o);
|
pa_source_output_assert_ref(o);
|
||||||
pa_assert_ctl_context();
|
pa_assert_ctl_context();
|
||||||
pa_assert(PA_SOURCE_OUTPUT_IS_LINKED(o->state));
|
pa_assert(PA_SOURCE_OUTPUT_IS_LINKED(o->state));
|
||||||
|
|
||||||
if (mute == o->muted) {
|
old_mute = o->muted;
|
||||||
|
|
||||||
|
if (mute == old_mute) {
|
||||||
o->save_muted |= save;
|
o->save_muted |= save;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
o->muted = mute;
|
o->muted = mute;
|
||||||
|
pa_log_debug("The mute of source output %u changed from %s to %s.", o->index, pa_yes_no(old_mute), pa_yes_no(mute));
|
||||||
|
|
||||||
o->save_muted = save;
|
o->save_muted = save;
|
||||||
|
|
||||||
pa_assert_se(pa_asyncmsgq_send(o->source->asyncmsgq, PA_MSGOBJECT(o), PA_SOURCE_OUTPUT_MESSAGE_SET_SOFT_MUTE, NULL, 0, NULL) == 0);
|
pa_assert_se(pa_asyncmsgq_send(o->source->asyncmsgq, PA_MSGOBJECT(o), PA_SOURCE_OUTPUT_MESSAGE_SET_SOFT_MUTE, NULL, 0, NULL) == 0);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue