From f0d058cb61d0a18dadb4e31b8e62a69a692940b2 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Thu, 2 Aug 2018 11:29:56 -0300 Subject: [PATCH] Set buffer to 10 ms for android (CALLBACK_ACCELERATOR_RATIO = 1.0) --- libraries/audio-client/src/AudioClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/audio-client/src/AudioClient.cpp b/libraries/audio-client/src/AudioClient.cpp index 2a07d2898a..85ceece702 100644 --- a/libraries/audio-client/src/AudioClient.cpp +++ b/libraries/audio-client/src/AudioClient.cpp @@ -1849,7 +1849,7 @@ const float AudioClient::CALLBACK_ACCELERATOR_RATIO = 2.0f; #endif #ifdef Q_OS_ANDROID -const float AudioClient::CALLBACK_ACCELERATOR_RATIO = 0.25f; +const float AudioClient::CALLBACK_ACCELERATOR_RATIO = 1.0f; #elif defined(Q_OS_LINUX) const float AudioClient::CALLBACK_ACCELERATOR_RATIO = 2.0f; #endif