From: Lennart Poettering Date: Mon, 2 Feb 2009 00:51:27 +0000 (+0100) Subject: fix soft_mute handling X-Git-Tag: 1.0_branch~2224 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2854afbb1b6f2d0686c9803eb18d7c99daf4254d;p=profile%2Fivi%2Fpulseaudio.git fix soft_mute handling --- diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index aa79b4a..b669a71 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -1506,7 +1506,7 @@ int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offse case PA_SINK_MESSAGE_SET_MUTE: - if (!s->thread_info.soft_muted != s->muted) { + if (s->thread_info.soft_muted != s->muted) { s->thread_info.soft_muted = s->muted; pa_sink_request_rewind(s, (size_t) -1); }