diff options
author | Tanu Kaskinen <tanu.kaskinen@digia.com> | 2012-03-23 09:59:17 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2012-03-28 17:21:59 +0300 |
commit | bce720c85dc5bade8b279af316bb112937a1e15d (patch) | |
tree | 71552399d27e478fc15a69acf8ba248b9c8ed582 | |
parent | b7fab75fdde21569ef0be4c7c52887031393d75c (diff) |
dbus: Fix device latency querying.
-rw-r--r-- | src/modules/dbus/iface-device.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/modules/dbus/iface-device.c b/src/modules/dbus/iface-device.c index df64d36e..a5af7304 100644 --- a/src/modules/dbus/iface-device.c +++ b/src/modules/dbus/iface-device.c @@ -598,13 +598,17 @@ static void handle_get_latency(DBusConnection *conn, DBusMessage *msg, void *use pa_assert(msg); pa_assert(d); - if (d->type == PA_DEVICE_TYPE_SINK && !(d->sink->flags & PA_SINK_LATENCY)) + if (d->type == PA_DEVICE_TYPE_SINK && !(d->sink->flags & PA_SINK_LATENCY)) { pa_dbus_send_error(conn, msg, PA_DBUS_ERROR_NO_SUCH_PROPERTY, "Sink %s doesn't support latency querying.", d->sink->name); - else if (d->type == PA_DEVICE_TYPE_SOURCE && !(d->source->flags & PA_SOURCE_LATENCY)) + return; + } + + if (d->type == PA_DEVICE_TYPE_SOURCE && !(d->source->flags & PA_SOURCE_LATENCY)) { pa_dbus_send_error(conn, msg, PA_DBUS_ERROR_NO_SUCH_PROPERTY, "Source %s doesn't support latency querying.", d->source->name); - return; + return; + } latency = (d->type == PA_DEVICE_TYPE_SINK) ? pa_sink_get_latency(d->sink) : pa_source_get_latency(d->source); |