summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mike Lockwood <lockwood@google.com> 2014-10-07 14:47:26 -0700
committer Mike Lockwood <lockwood@google.com> 2014-10-07 14:47:26 -0700
commit28138587ef4ec3da71c5275ac60ffae03ca69fce (patch)
tree9415c44728f407aaf58bbb74c43e2883acabad1c
parent41bb3455e44dc8fde4569bbfd56fa20c6da8a27d (diff)
bootanimation: Tweak parameters for pcm_open for playing boot sounds.
Set start_threshold and avail_min to 1/4th period size and stop_threshold to INT_MAX Change-Id: I0a3aac18533709daa86a024cdd6a32086410723a
-rw-r--r--cmds/bootanimation/AudioPlayer.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmds/bootanimation/AudioPlayer.cpp b/cmds/bootanimation/AudioPlayer.cpp
index a2ee7eadcbb6..471b77f227de 100644
--- a/cmds/bootanimation/AudioPlayer.cpp
+++ b/cmds/bootanimation/AudioPlayer.cpp
@@ -272,6 +272,9 @@ bool AudioPlayer::threadLoop()
config.rate = chunkFmt->sample_rate;
config.period_size = mPeriodSize;
config.period_count = mPeriodCount;
+ config.start_threshold = mPeriodSize / 4;
+ config.stop_threshold = INT_MAX;
+ config.avail_min = config.start_threshold;
if (chunkFmt->bits_per_sample != 16) {
ALOGE("only 16 bit WAV files are supported");
goto exit;