OSDN Git Service

bootanimation: Tweak parameters for pcm_open for playing boot sounds.
authorMike Lockwood <lockwood@google.com>
Tue, 7 Oct 2014 21:47:26 +0000 (14:47 -0700)
committerMike Lockwood <lockwood@google.com>
Tue, 7 Oct 2014 21:47:26 +0000 (14:47 -0700)
Set start_threshold and avail_min to 1/4th period size and stop_threshold to INT_MAX

Change-Id: I0a3aac18533709daa86a024cdd6a32086410723a

cmds/bootanimation/AudioPlayer.cpp

index a2ee7ea..471b77f 100644 (file)
@@ -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;