summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/FastMixer.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-03-11 10:58:50 -0700
committerGlenn Kasten <gkasten@google.com>2013-03-11 10:58:50 -0700
commit0d35f7818dedd67844cc90218d5c131a8644f802 (patch)
treea20ec711dad0a1f5945f62346d14ec8570b90f32 /services/audioflinger/FastMixer.h
parent70369845f8250df4f6f22c336414b4df0a3ce53e (diff)
downloadframeworks_av-0d35f7818dedd67844cc90218d5c131a8644f802.zip
frameworks_av-0d35f7818dedd67844cc90218d5c131a8644f802.tar.gz
frameworks_av-0d35f7818dedd67844cc90218d5c131a8644f802.tar.bz2
Increase size of statistics buffer
Bug: 8354576 Change-Id: I327e9dc203e09df8abc21e589ce9056540618abd
Diffstat (limited to 'services/audioflinger/FastMixer.h')
-rw-r--r--services/audioflinger/FastMixer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/FastMixer.h b/services/audioflinger/FastMixer.h
index 462739b..2ab1d04 100644
--- a/services/audioflinger/FastMixer.h
+++ b/services/audioflinger/FastMixer.h
@@ -107,7 +107,7 @@ struct FastMixerDumpState {
#ifdef FAST_MIXER_STATISTICS
// Recently collected samples of per-cycle monotonic time, thread CPU time, and CPU frequency.
// kSamplingN is the size of the sampling frame, and must be a power of 2 <= 0x8000.
- static const uint32_t kSamplingN = 0x1000;
+ static const uint32_t kSamplingN = 0x8000;
// The bounds define the interval of valid samples, and are represented as follows:
// newest open (excluded) endpoint = lower 16 bits of bounds, modulo N
// oldest closed (included) endpoint = upper 16 bits of bounds, modulo N