[pulseaudio-commits] Branch 'next' - src/modules
Arun Raghavan
arun at kemper.freedesktop.org
Sun Jan 17 23:39:42 PST 2016
src/modules/module-solaris.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
New commits:
commit eee7f0422e186b281617efcc466afe2ae86f4d03
Author: Jonathan Perkin <jperkin at joyent.com>
Date: Mon Dec 21 04:10:34 2015 +0100
solaris: Catch up with newer API
Patch upstreamed from pkgsrc by Kamil Rytarowski <n54 at gmx.com>.
See commit e4a7625ba884c5cce20468d75937857343751c35 for why this was
originally done.
diff --git a/src/modules/module-solaris.c b/src/modules/module-solaris.c
index c79918a..2fa0bff 100644
--- a/src/modules/module-solaris.c
+++ b/src/modules/module-solaris.c
@@ -412,10 +412,12 @@ static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offse
pa_smoother_resume(u->smoother, pa_rtclock_now(), true);
if (!u->source || u->source_suspended) {
+ bool mute;
if (unsuspend(u) < 0)
return -1;
u->sink->get_volume(u->sink);
- u->sink->get_mute(u->sink);
+ if (u->sink->get_mute(u->sink, &mute) >= 0)
+ pa_sink_set_mute(u->sink, mute, false);
}
u->sink_suspended = false;
}
@@ -1033,8 +1035,12 @@ int pa__init(pa_module *m) {
if (sink_new_data.muted_is_set)
u->sink->set_mute(u->sink);
- else
- u->sink->get_mute(u->sink);
+ else {
+ bool mute;
+
+ if (u->sink->get_mute(u->sink, &mute) >= 0)
+ pa_sink_set_mute(u->sink, mute, false);
+ }
pa_sink_put(u->sink);
}
More information about the pulseaudio-commits
mailing list