Diff between d40b147c2bb6933d30b429cedf71276291c66701 and e19841f0d3023016a0f30ce4fdde2e72edcfd7f4

Changed Files

File Additions Deletions Status
android/client/if-audio.c +10 -0 modified

Full Patch

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
 };