From d1646f78af6a43928cb0cd6b3e8d45578c489cb1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 6 Jun 2009 15:32:45 +0200 Subject: core: monitor sources need to inherit the suspend cause from their sinks --- src/pulsecore/sink.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index a087e42d..141084d6 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -505,10 +505,13 @@ int pa_sink_suspend(pa_sink *s, pa_bool_t suspend, pa_suspend_cause_t cause) { pa_assert(PA_SINK_IS_LINKED(s->state)); pa_assert(cause != 0); - if (suspend) + if (suspend) { s->suspend_cause |= cause; - else + s->monitor_source->suspend_cause |= cause; + } else { s->suspend_cause &= ~cause; + s->monitor_source->suspend_cause &= ~cause; + } if ((pa_sink_get_state(s) == PA_SINK_SUSPENDED) == !!s->suspend_cause) return 0; -- cgit