Get output stream latency. --- android/client/if-audio.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/android/client/if-audio.c b/android/client/if-audio.c index 985b60c..1ca84f5 100644 --- a/android/client/if-audio.c +++ b/android/client/if-audio.c @@ -286,6 +286,15 @@ static void resume_p(int argc, const char **argv) pthread_mutex_unlock(&state_mutex); } +static void get_latency_p(int argc, const char **argv) +{ + RETURN_IF_NULL(if_audio); + RETURN_IF_NULL(stream_out); + + haltest_info("Output audio stream latency: %d\n", + stream_out->get_latency(stream_out)); +} + static struct method methods[] = { STD_METHOD(init), STD_METHOD(cleanup), @@ -295,6 +304,7 @@ static struct method methods[] = { STD_METHOD(stop), STD_METHOD(suspend), STD_METHOD(resume), + STD_METHOD(get_latency), END_METHOD }; -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html