From d2d3d0e141f5fc83301632c30af63231be00886a Mon Sep 17 00:00:00 2001 From: Chris Billington Date: Sat, 23 Jan 2016 12:31:33 +1100 Subject: source: Fixed bug: pa_source_set_port() did not update the latency_offset. Unlike pa_sink_set_port(), which calls pa_sink_set_latency_offset() to update the latency offset of the sink to match that of its newly set port, pa_source_set_port() did not do so. This patch adds the appropriate call to pa_source_set_latency_offset() in pa_source_set_port() to fix this. --- src/pulsecore/source.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/pulsecore/source.c b/src/pulsecore/source.c index 8a527d8a9..ee774250d 100644 --- a/src/pulsecore/source.c +++ b/src/pulsecore/source.c @@ -2637,6 +2637,8 @@ int pa_source_set_port(pa_source *s, const char *name, bool save) { s->active_port = port; s->save_port = save; + pa_source_set_latency_offset(s, s->active_port->latency_offset); + pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SOURCE_PORT_CHANGED], s); return 0; -- cgit v1.2.3