diff options
author | Eric Laurent <elaurent@google.com> | 2015-05-07 15:35:42 -0700 |
---|---|---|
committer | The Android Automerger <android-build@google.com> | 2015-05-08 12:57:09 -0700 |
commit | f34885409f15aea16a1d8a2258eb8ca434a96bb5 (patch) | |
tree | b646d6d5b168372aedbf7fb2d6acfb3a4b868e9e | |
parent | 72e42d22827c4caa6b01391e22fa2d3c9140e040 (diff) | |
download | frameworks_av-f34885409f15aea16a1d8a2258eb8ca434a96bb5.zip frameworks_av-f34885409f15aea16a1d8a2258eb8ca434a96bb5.tar.gz frameworks_av-f34885409f15aea16a1d8a2258eb8ca434a96bb5.tar.bz2 |
Revert "Enable full floating point path in AudioMixer"
This reverts commit 5b8fde71e08f57478ef25d040fc5f66294011ac6.
temporary revert while we investigate.
Bug: 20912450.
-rw-r--r-- | services/audioflinger/AudioMixer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/services/audioflinger/AudioMixer.cpp b/services/audioflinger/AudioMixer.cpp index 7040af4..193fd64 100644 --- a/services/audioflinger/AudioMixer.cpp +++ b/services/audioflinger/AudioMixer.cpp @@ -66,9 +66,9 @@ #define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0])) #endif -// Set kUseNewMixer to true to use the new mixer engine always. Otherwise the -// original code will be used for stereo sinks, the new mixer for multichannel. -static const bool kUseNewMixer = true; +// Set kUseNewMixer to true to use the new mixer engine. Otherwise the +// original code will be used. This is false for now. +static const bool kUseNewMixer = false; // Set kUseFloat to true to allow floating input into the mixer engine. // If kUseNewMixer is false, this is ignored or may be overridden internally |