Threads.cpp revision 1b92868010b5c1409692a86f6b27e4a265b64c1a
181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent/*
281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Copyright 2012, The Android Open Source Project
481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Licensed under the Apache License, Version 2.0 (the "License");
681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** you may not use this file except in compliance with the License.
781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** You may obtain a copy of the License at
881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**     http://www.apache.org/licenses/LICENSE-2.0
1081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
1181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Unless required by applicable law or agreed to in writing, software
1281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** distributed under the License is distributed on an "AS IS" BASIS,
1381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** See the License for the specific language governing permissions and
1581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** limitations under the License.
1681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent*/
1781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#define LOG_TAG "AudioFlinger"
2081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent//#define LOG_NDEBUG 0
21371eb9756c32109ea572b91216b19bb623f6d3fdAlex Ray#define ATRACE_TAG ATRACE_TAG_AUDIO
2281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23153b9fe667e6e78e0218ff0159353097428c7657Glenn Kasten#include "Configuration.h"
2481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <math.h>
2581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <fcntl.h>
2681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <sys/stat.h>
2781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <cutils/properties.h>
281ab85ec401801ef9a9184650d0f5a1639b45eeb9Glenn Kasten#include <media/AudioParameter.h>
29cd04484f4837b8ca0041d118286ab6a98e84fc75Andy Hung#include <media/AudioResamplerPublic.h>
3081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <utils/Log.h>
31371eb9756c32109ea572b91216b19bb623f6d3fdAlex Ray#include <utils/Trace.h>
3281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <private/media/AudioTrackShared.h>
3481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <hardware/audio.h>
3581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <audio_effects/effect_ns.h>
3681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <audio_effects/effect_aec.h>
3781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <audio_utils/primitives.h>
3898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung#include <audio_utils/format.h>
39c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten#include <audio_utils/minifloat.h>
4081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// NBAIO implementations
426dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#include <media/nbaio/AudioStreamInSource.h>
4381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/nbaio/AudioStreamOutSink.h>
4481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/nbaio/MonoPipe.h>
4581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/nbaio/MonoPipeReader.h>
4681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/nbaio/Pipe.h>
4781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/nbaio/PipeReader.h>
4881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/nbaio/SourceAudioBufferProvider.h>
4981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <powermanager/PowerManager.h>
5181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <common_time/cc_helper.h>
5381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <common_time/local_clock.h>
5481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "AudioFlinger.h"
5681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "AudioMixer.h"
5781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "FastMixer.h"
586dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#include "FastCapture.h"
5981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "ServiceUtilities.h"
6081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "SchedulingPolicyService.h"
6181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef ADD_BATTERY_DATA
6381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/IMediaPlayerService.h>
6481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <media/IMediaDeathNotifier.h>
6581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
6681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef DEBUG_CPU_USAGE
6881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <cpustats/CentralTendencyStatistics.h>
6981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include <cpustats/ThreadCpuUsage.h>
7081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
7181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
7381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// Note: the following macro is used for extremely verbose logging message.  In
7581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
7681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// 0; but one side effect of this is to turn all LOGV's as well.  Some messages
7781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// are so verbose that we want to suppress them even when we have ALOG_ASSERT
7881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// turned on.  Do not uncomment the #def below unless you really know what you
7981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// are doing and want to see all of the extremely verbose messages.
8081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent//#define VERY_VERY_VERBOSE_LOGGING
8181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef VERY_VERY_VERBOSE_LOGGING
8281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#define ALOGVV ALOGV
8381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#else
8481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#define ALOGVV(a...) do { } while(0)
8581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
8681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
8749d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten#define max(a, b) ((a) > (b) ? (a) : (b))
8849d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten
8981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentnamespace android {
9081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
9181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// retry counts for buffer fill timeout
9281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// 50 * ~20msecs = 1 second
9381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const int8_t kMaxTrackRetries = 50;
9481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const int8_t kMaxTrackStartupRetries = 50;
9581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// allow less retry attempts on direct output thread.
9681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// direct outputs can be a scarce resource in audio hardware and should
9781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// be released as quickly as possible.
9881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const int8_t kMaxTrackRetriesDirect = 2;
9981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// don't warn about blocked writes or record buffer overflows more often than this
10181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const nsecs_t kWarningThrottleNs = seconds(5);
10281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// RecordThread loop sleep time upon application overrun or audio HAL read error
10481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const int kRecordThreadSleepUs = 5000;
10581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1061035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent// maximum time to wait in sendConfigEvent_l() for a status to be received
1071035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurentstatic const nsecs_t kConfigEventTimeoutNs = seconds(2);
10881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// minimum sleep time for the mixer thread loop when tracks are active but in underrun
11081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const uint32_t kMinThreadSleepTimeUs = 5000;
11181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// maximum divider applied to the active sleep time in the mixer thread loop
11281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const uint32_t kMaxThreadSleepTimeShift = 2;
11381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
11409a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung// minimum normal sink buffer size, expressed in milliseconds rather than frames
11509a5007b17acb49d25cfa386a2e2534d942e8854Andy Hungstatic const uint32_t kMinNormalSinkBufferSizeMs = 20;
11609a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung// maximum normal sink buffer size
11709a5007b17acb49d25cfa386a2e2534d942e8854Andy Hungstatic const uint32_t kMaxNormalSinkBufferSizeMs = 24;
11881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
119972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent// Offloaded output thread standby delay: allows track transition without going to standby
120972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurentstatic const nsecs_t kOffloadStandbyDelayNs = seconds(1);
121972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent
12281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// Whether to use fast mixer
12381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const enum {
12481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixer_Never,    // never initialize or use: for debugging only
12581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixer_Always,   // always initialize and use, even if not needed: for debugging only
12681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        // normal mixer multiplier is 1
12781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixer_Static,   // initialize if needed, then use all the time if initialized,
12881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        // multiplier is calculated based on min & max normal mixer buffer size
12981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixer_Dynamic,  // initialize if needed, then use dynamically depending on track load,
13081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        // multiplier is calculated based on min & max normal mixer buffer size
13181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME for FastMixer_Dynamic:
13281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //  Supporting this option will require fixing HALs that can't handle large writes.
13381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //  For example, one HAL implementation returns an error from a large write,
13481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //  and another HAL implementation corrupts memory, possibly in the sample rate converter.
13581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //  We could either fix the HAL implementations, or provide a wrapper that breaks
13681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //  up large writes into smaller ones, and the wrapper would need to deal with scheduler.
13781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent} kUseFastMixer = FastMixer_Static;
13881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1396dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten// Whether to use fast capture
1406dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kastenstatic const enum {
1416dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    FastCapture_Never,  // never initialize or use: for debugging only
1426dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    FastCapture_Always, // always initialize and use, even if not needed: for debugging only
1436dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    FastCapture_Static, // initialize if needed, then use all the time if initialized
1446dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten} kUseFastCapture = FastCapture_Static;
1456dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// Priorities for requestPriority
14781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const int kPriorityAudioApp = 2;
14881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic const int kPriorityFastMixer = 3;
1496dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kastenstatic const int kPriorityFastCapture = 3;
15081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
15181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// IAudioFlinger::createTrack() reports back to client the total size of shared memory area
15281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// for the track.  The client then sub-divides this into smaller buffers for its use.
153b5fed68bcdd6f44424c9e4d12bfe9a3ff51bd62eGlenn Kasten// Currently the client uses N-buffering by default, but doesn't tell us about the value of N.
154b5fed68bcdd6f44424c9e4d12bfe9a3ff51bd62eGlenn Kasten// So for now we just assume that client is double-buffered for fast tracks.
155b5fed68bcdd6f44424c9e4d12bfe9a3ff51bd62eGlenn Kasten// FIXME It would be better for client to tell AudioFlinger the value of N,
156b5fed68bcdd6f44424c9e4d12bfe9a3ff51bd62eGlenn Kasten// so AudioFlinger could allocate the right amount of memory.
15781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// See the client's minBufCount and mNotificationFramesAct calculations for details.
1580349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten
1590349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten// This is the default value, if not specified by property.
160b5fed68bcdd6f44424c9e4d12bfe9a3ff51bd62eGlenn Kastenstatic const int kFastTrackMultiplier = 2;
16181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1620349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten// The minimum and maximum allowed values
1630349009fd19f89f8414c428f6b71b369f7546085Glenn Kastenstatic const int kFastTrackMultiplierMin = 1;
1640349009fd19f89f8414c428f6b71b369f7546085Glenn Kastenstatic const int kFastTrackMultiplierMax = 2;
1650349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten
1660349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten// The actual value to use, which can be specified per-device via property af.fast_track_multiplier.
1670349009fd19f89f8414c428f6b71b369f7546085Glenn Kastenstatic int sFastTrackMultiplier = kFastTrackMultiplier;
1680349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten
169b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten// See Thread::readOnlyHeap().
170b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten// Initially this heap is used to allocate client buffers for "fast" AudioRecord.
171b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten// Eventually it will be the single buffer that FastCapture writes into via HAL read(),
172b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten// and that all "fast" AudioRecord clients read from.  In either case, the size can be small.
1739f81de3452dfb2385bd57dc05456a045174a1ab1Glenn Kastenstatic const size_t kRecordThreadReadOnlyHeapSize = 0x2000;
174b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten
17581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
17681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1770349009fd19f89f8414c428f6b71b369f7546085Glenn Kastenstatic pthread_once_t sFastTrackMultiplierOnce = PTHREAD_ONCE_INIT;
1780349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten
1790349009fd19f89f8414c428f6b71b369f7546085Glenn Kastenstatic void sFastTrackMultiplierInit()
1800349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten{
1810349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten    char value[PROPERTY_VALUE_MAX];
1820349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten    if (property_get("af.fast_track_multiplier", value, NULL) > 0) {
1830349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten        char *endptr;
1840349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten        unsigned long ul = strtoul(value, &endptr, 0);
1850349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten        if (*endptr == '\0' && kFastTrackMultiplierMin <= ul && ul <= kFastTrackMultiplierMax) {
1860349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten            sFastTrackMultiplier = (int) ul;
1870349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten        }
1880349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten    }
1890349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten}
1900349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten
1910349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten// ----------------------------------------------------------------------------
1920349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten
19381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef ADD_BATTERY_DATA
19481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// To collect the amplifier usage
19581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatic void addBatteryData(uint32_t params) {
19681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
19781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (service == NULL) {
19881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // it already logged
19981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return;
20081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
20181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
20281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    service->addBatteryData(params);
20381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
20481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
20581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
20681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
20781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
20881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent//      CPU Stats
20981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
21081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
21181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass CpuStats {
21281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
21381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    CpuStats();
21481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void sample(const String8 &title);
21581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef DEBUG_CPU_USAGE
21681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
21781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ThreadCpuUsage mCpuUsage;           // instantaneous thread CPU usage in wall clock ns
21881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns
21981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles
22181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int mCpuNum;                        // thread's current CPU number
22381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int mCpukHz;                        // frequency of thread's current CPU in kHz
22481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
22581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
22681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22781784c37c61b09289654b979567a42bf73cd2b12Eric LaurentCpuStats::CpuStats()
22881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef DEBUG_CPU_USAGE
22981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    : mCpuNum(-1), mCpukHz(-1)
23081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
23181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
23281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
23381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2340f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenvoid CpuStats::sample(const String8 &title
2350f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten#ifndef DEBUG_CPU_USAGE
2360f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten                __unused
2370f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten#endif
2380f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten        ) {
23981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef DEBUG_CPU_USAGE
24081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // get current thread's delta CPU time in wall clock ns
24181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    double wcNs;
24281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool valid = mCpuUsage.sampleAndEnable(wcNs);
24381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
24481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // record sample for wall clock statistics
24581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (valid) {
24681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mWcStats.sample(wcNs);
24781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
24881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
24981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // get the current CPU number
25081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int cpuNum = sched_getcpu();
25181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // get the current CPU frequency in kHz
25381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int cpukHz = mCpuUsage.getCpukHz(cpuNum);
25481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // check if either CPU number or frequency changed
25681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (cpuNum != mCpuNum || cpukHz != mCpukHz) {
25781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mCpuNum = cpuNum;
25881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mCpukHz = cpukHz;
25981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // ignore sample for purposes of cycles
26081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        valid = false;
26181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
26281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
26381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // if no change in CPU number or frequency, then record sample for cycle statistics
26481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (valid && mCpukHz > 0) {
26581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        double cycles = wcNs * cpukHz * 0.000001;
26681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mHzStats.sample(cycles);
26781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
26881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
26981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    unsigned n = mWcStats.n();
27081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mCpuUsage.elapsed() is expensive, so don't call it every loop
27181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if ((n & 127) == 1) {
27281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        long long elapsed = mCpuUsage.elapsed();
27381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
27481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double perLoop = elapsed / (double) n;
27581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double perLoop100 = perLoop * 0.01;
27681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double perLoop1k = perLoop * 0.001;
27781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double mean = mWcStats.mean();
27881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double stddev = mWcStats.stddev();
27981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double minimum = mWcStats.minimum();
28081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double maximum = mWcStats.maximum();
28181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double meanCycles = mHzStats.mean();
28281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double stddevCycles = mHzStats.stddev();
28381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double minCycles = mHzStats.minimum();
28481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            double maxCycles = mHzStats.maximum();
28581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mCpuUsage.resetElapsed();
28681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mWcStats.reset();
28781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mHzStats.reset();
28881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGD("CPU usage for %s over past %.1f secs\n"
28981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                "  (%u mixer loops at %.1f mean ms per loop):\n"
29081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                "  us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
29181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                "  %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
29281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                "  MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
29381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    title.string(),
29481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    elapsed * .000000001, n, perLoop * .000001,
29581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mean * .001,
29681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    stddev * .001,
29781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    minimum * .001,
29881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    maximum * .001,
29981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mean / perLoop100,
30081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    stddev / perLoop100,
30181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    minimum / perLoop100,
30281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    maximum / perLoop100,
30381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    meanCycles / perLoop1k,
30481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    stddevCycles / perLoop1k,
30581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    minCycles / perLoop1k,
30681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    maxCycles / perLoop1k);
30781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
30881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
30981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
31081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
31181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
31281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
31381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
31481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent//      ThreadBase
31581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
31681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
31781784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
31881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_devices_t outDevice, audio_devices_t inDevice, type_t type)
31981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    :   Thread(false /*canCallJava*/),
32081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mType(type),
3219b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten        mAudioFlinger(audioFlinger),
32270949c47fbae3f836d15f040551d7631be3ed7c2Glenn Kasten        // mSampleRate, mFrameCount, mChannelMask, mChannelCount, mFrameSize, mFormat, mBufferSize
323deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten        // are set by PlaybackThread::readOutputParameters_l() or
324deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten        // RecordThread::readInputParameters_l()
325fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        //FIXME: mStandby should be true here. Is this some kind of hack?
32681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mStandby(false), mOutDevice(outDevice), mInDevice(inDevice),
32781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioSource(AUDIO_SOURCE_DEFAULT), mId(id),
32881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mName will be set by concrete (non-virtual) subclass
32981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mDeathRecipient(new PMDeathRecipient(this))
33081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
33181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
33281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
33381784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::ThreadBase::~ThreadBase()
33481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
335c6ae3c8a261794fd4445e4e152d1ada074a3f92fGlenn Kasten    // mConfigEvents should be empty, but just in case it isn't, free the memory it owns
336c6ae3c8a261794fd4445e4e152d1ada074a3f92fGlenn Kasten    mConfigEvents.clear();
337c6ae3c8a261794fd4445e4e152d1ada074a3f92fGlenn Kasten
33881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // do not lock the mutex in destructor
33981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    releaseWakeLock_l();
34081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mPowerManager != 0) {
34181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<IBinder> binder = mPowerManager->asBinder();
34281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        binder->unlinkToDeath(mDeathRecipient);
34381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
34481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
34581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
346cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kastenstatus_t AudioFlinger::ThreadBase::readyToRun()
347cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten{
348cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten    status_t status = initCheck();
349cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten    if (status == NO_ERROR) {
350cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten        ALOGI("AudioFlinger's thread %p ready to run", this);
351cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten    } else {
352cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten        ALOGE("No working audio driver found.");
353cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten    }
354cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten    return status;
355cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten}
356cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten
35781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::exit()
35881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
35981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("ThreadBase::exit");
36081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // do any cleanup required for exit to succeed
36181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    preExit();
36281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    {
36381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // This lock prevents the following race in thread (uniprocessor for illustration):
36481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //  if (!exitPending()) {
36581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //      // context switch from here to exit()
36681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //      // exit() calls requestExit(), what exitPending() observes
36781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //      // exit() calls signal(), which is dropped since no waiters
36881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //      // context switch back from exit() to here
36981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //      mWaitWorkCV.wait(...);
37081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //      // now thread is hung
37181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //  }
37281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        AutoMutex lock(mLock);
37381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        requestExit();
37481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mWaitWorkCV.broadcast();
37581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
37681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // When Thread::requestExitAndWait is made virtual and this method is renamed to
37781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // "virtual status_t requestExitAndWait()", replace by "return Thread::requestExitAndWait();"
37881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    requestExitAndWait();
37981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
38081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
38181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
38281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
38381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t status;
38481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
38581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
38681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
38781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3881035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    return sendSetParameterConfigEvent_l(keyValuePairs);
3891035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent}
3901035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
3911035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent// sendConfigEvent_l() must be called with ThreadBase::mLock held
3921035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent// Can temporarily release the lock if waiting for a reply from processConfigEvents_l().
3931035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurentstatus_t AudioFlinger::ThreadBase::sendConfigEvent_l(sp<ConfigEvent>& event)
3941035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent{
3951035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    status_t status = NO_ERROR;
3961035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
3971035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    mConfigEvents.add(event);
3981035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    ALOGV("sendConfigEvent_l() num events %d event %d", mConfigEvents.size(), event->mType);
39981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mWaitWorkCV.signal();
4001035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    mLock.unlock();
4011035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    {
4021035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        Mutex::Autolock _l(event->mLock);
4031035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        while (event->mWaitStatus) {
4041035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (event->mCond.waitRelative(event->mLock, kConfigEventTimeoutNs) != NO_ERROR) {
4051035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                event->mStatus = TIMED_OUT;
4061035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                event->mWaitStatus = false;
4071035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            }
4081035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
4091035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        status = event->mStatus;
41081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
4111035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    mLock.lock();
41281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return status;
41381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
41481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
41581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::sendIoConfigEvent(int event, int param)
41681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
41781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
41881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sendIoConfigEvent_l(event, param);
41981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
42081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
42181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// sendIoConfigEvent_l() must be called with ThreadBase::mLock held
42281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::sendIoConfigEvent_l(int event, int param)
42381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
4241035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    sp<ConfigEvent> configEvent = (ConfigEvent *)new IoConfigEvent(event, param);
4251035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    sendConfigEvent_l(configEvent);
42681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
42781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
42881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// sendPrioConfigEvent_l() must be called with ThreadBase::mLock held
42981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio)
43081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
4311035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    sp<ConfigEvent> configEvent = (ConfigEvent *)new PrioConfigEvent(pid, tid, prio);
4321035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    sendConfigEvent_l(configEvent);
43381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
43481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4351035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent// sendSetParameterConfigEvent_l() must be called with ThreadBase::mLock held
4361035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurentstatus_t AudioFlinger::ThreadBase::sendSetParameterConfigEvent_l(const String8& keyValuePair)
43781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
4381035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    sp<ConfigEvent> configEvent = (ConfigEvent *)new SetParameterConfigEvent(keyValuePair);
4391035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    return sendConfigEvent_l(configEvent);
440f777331418a86cd9fd709af898ef24a69967aeb4Glenn Kasten}
441f777331418a86cd9fd709af898ef24a69967aeb4Glenn Kasten
4421c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurentstatus_t AudioFlinger::ThreadBase::sendCreateAudioPatchConfigEvent(
4431c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                                        const struct audio_patch *patch,
4441c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                                        audio_patch_handle_t *handle)
4451c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent{
4461c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    Mutex::Autolock _l(mLock);
4471c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    sp<ConfigEvent> configEvent = (ConfigEvent *)new CreateAudioPatchConfigEvent(*patch, *handle);
4481c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    status_t status = sendConfigEvent_l(configEvent);
4491c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    if (status == NO_ERROR) {
4501c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        CreateAudioPatchConfigEventData *data =
4511c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                        (CreateAudioPatchConfigEventData *)configEvent->mData.get();
4521c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        *handle = data->mHandle;
4531c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    }
4541c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    return status;
4551c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent}
4561c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
4571c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurentstatus_t AudioFlinger::ThreadBase::sendReleaseAudioPatchConfigEvent(
4581c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                                                const audio_patch_handle_t handle)
4591c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent{
4601c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    Mutex::Autolock _l(mLock);
4611c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    sp<ConfigEvent> configEvent = (ConfigEvent *)new ReleaseAudioPatchConfigEvent(handle);
4621c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    return sendConfigEvent_l(configEvent);
4631c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent}
4641c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
4651c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
4662cfbf88b89854f30b295e8ae26a031edb8d712f8Glenn Kasten// post condition: mConfigEvents.isEmpty()
467021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurentvoid AudioFlinger::ThreadBase::processConfigEvents_l()
468f777331418a86cd9fd709af898ef24a69967aeb4Glenn Kasten{
4691035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    bool configChanged = false;
4701035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
47181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    while (!mConfigEvents.isEmpty()) {
4721035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        ALOGV("processConfigEvents_l() remaining events %d", mConfigEvents.size());
4731035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        sp<ConfigEvent> event = mConfigEvents[0];
47481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mConfigEvents.removeAt(0);
4751035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        switch (event->mType) {
4763468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten        case CFG_EVENT_PRIO: {
4771035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            PrioConfigEventData *data = (PrioConfigEventData *)event->mData.get();
4781035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // FIXME Need to understand why this has to be done asynchronously
4791035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            int err = requestPriority(data->mPid, data->mTid, data->mPrio,
4803468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten                    true /*asynchronous*/);
4813468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten            if (err != 0) {
4823468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten                ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
4831035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                      data->mPrio, data->mPid, data->mTid, err);
4843468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten            }
4853468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten        } break;
4863468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten        case CFG_EVENT_IO: {
4871035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            IoConfigEventData *data = (IoConfigEventData *)event->mData.get();
488021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent            audioConfigChanged(data->mEvent, data->mParam);
4891035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } break;
4901035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        case CFG_EVENT_SET_PARAMETER: {
4911035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            SetParameterConfigEventData *data = (SetParameterConfigEventData *)event->mData.get();
4921035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (checkForNewParameter_l(data->mKeyValuePairs, event->mStatus)) {
4931035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                configChanged = true;
494d5418eb594435c958d6c37fa9938161a0112adbdGlenn Kasten            }
4953468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten        } break;
4961c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        case CFG_EVENT_CREATE_AUDIO_PATCH: {
4971c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            CreateAudioPatchConfigEventData *data =
4981c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                            (CreateAudioPatchConfigEventData *)event->mData.get();
4991c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            event->mStatus = createAudioPatch_l(&data->mPatch, &data->mHandle);
5001c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        } break;
5011c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        case CFG_EVENT_RELEASE_AUDIO_PATCH: {
5021c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            ReleaseAudioPatchConfigEventData *data =
5031c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                            (ReleaseAudioPatchConfigEventData *)event->mData.get();
5041c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            event->mStatus = releaseAudioPatch_l(data->mHandle);
5051c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        } break;
5063468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten        default:
5071035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            ALOG_ASSERT(false, "processConfigEvents_l() unknown event type %d", event->mType);
5083468e8a4d79cc6a7bb0f03f8382426195bed44dfGlenn Kasten            break;
50981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
5101035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        {
5111035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            Mutex::Autolock _l(event->mLock);
5121035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (event->mWaitStatus) {
5131035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                event->mWaitStatus = false;
5141035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                event->mCond.signal();
5151035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            }
5161035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
5171035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        ALOGV_IF(mConfigEvents.isEmpty(), "processConfigEvents_l() DONE thread %p", this);
5181035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
5191035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
5201035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (configChanged) {
5211035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        cacheParameters_l();
52281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
52381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
52481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
525b220884bf3129253cc5bc8d030bc475411ea4911Marco NelissenString8 channelMaskToString(audio_channel_mask_t mask, bool output) {
526b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    String8 s;
527b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (output) {
528b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_FRONT_LEFT) s.append("front-left, ");
529b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_FRONT_RIGHT) s.append("front-right, ");
530b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_FRONT_CENTER) s.append("front-center, ");
531b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_LOW_FREQUENCY) s.append("low freq, ");
532b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_BACK_LEFT) s.append("back-left, ");
533b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_BACK_RIGHT) s.append("back-right, ");
534b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_FRONT_LEFT_OF_CENTER) s.append("front-left-of-center, ");
535b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_FRONT_RIGHT_OF_CENTER) s.append("front-right-of-center, ");
536b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_BACK_CENTER) s.append("back-center, ");
537b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_SIDE_LEFT) s.append("side-left, ");
538b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_SIDE_RIGHT) s.append("side-right, ");
539b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_CENTER) s.append("top-center ,");
540b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_LEFT) s.append("top-front-left, ");
541b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_CENTER) s.append("top-front-center, ");
542b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_RIGHT) s.append("top-front-right, ");
543b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_LEFT) s.append("top-back-left, ");
544b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_CENTER) s.append("top-back-center, " );
545b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_RIGHT) s.append("top-back-right, " );
546b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & ~AUDIO_CHANNEL_OUT_ALL) s.append("unknown,  ");
547b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    } else {
548b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_LEFT) s.append("left, ");
549b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_RIGHT) s.append("right, ");
550b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_FRONT) s.append("front, ");
551b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_BACK) s.append("back, ");
552b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_LEFT_PROCESSED) s.append("left-processed, ");
553b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_RIGHT_PROCESSED) s.append("right-processed, ");
554b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_FRONT_PROCESSED) s.append("front-processed, ");
555b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_BACK_PROCESSED) s.append("back-processed, ");
556b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_PRESSURE) s.append("pressure, ");
557b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_X_AXIS) s.append("X, ");
558b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_Y_AXIS) s.append("Y, ");
559b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_Z_AXIS) s.append("Z, ");
560b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_VOICE_UPLINK) s.append("voice-uplink, ");
561b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & AUDIO_CHANNEL_IN_VOICE_DNLINK) s.append("voice-dnlink, ");
562b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        if (mask & ~AUDIO_CHANNEL_IN_ALL) s.append("unknown,  ");
563b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    }
564b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    int len = s.length();
565b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (s.length() > 2) {
566b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        char *str = s.lockBuffer(len);
567b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        s.unlockBuffer(len - 2);
568b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    }
569b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    return s;
570b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen}
571b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen
5720f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenvoid AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args __unused)
57381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
57481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const size_t SIZE = 256;
57581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    char buffer[SIZE];
57681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    String8 result;
57781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
57881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool locked = AudioFlinger::dumpTryLock(mLock);
57981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!locked) {
58087cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, "thread %p maybe dead locked\n", this);
581b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    }
582b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen
58387cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  I/O handle: %d\n", mId);
58487cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  TID: %d\n", getTid());
58587cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Standby: %s\n", mStandby ? "yes" : "no");
58687cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Sample rate: %u\n", mSampleRate);
58787cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  HAL frame count: %zu\n", mFrameCount);
58887cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  HAL buffer size: %u bytes\n", mBufferSize);
58987cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Channel Count: %u\n", mChannelCount);
59087cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Channel Mask: 0x%08x (%s)\n", mChannelMask,
591b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            channelMaskToString(mChannelMask, mType != RECORD).string());
592463be250de73907965faa6a216c00312bf81e049Andy Hung    dprintf(fd, "  Format: 0x%x (%s)\n", mHALFormat, formatToString(mHALFormat));
59387cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Frame size: %zu\n", mFrameSize);
59487cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Pending config events:");
595b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numConfig = mConfigEvents.size();
596b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (numConfig) {
597b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        for (size_t i = 0; i < numConfig; i++) {
598b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            mConfigEvents[i]->dump(buffer, SIZE);
59987cebadd48710e42474756fc3513df678de045ceElliott Hughes            dprintf(fd, "\n    %s", buffer);
600b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        }
60187cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, "\n");
602b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    } else {
60387cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, " none\n");
60481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
60581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
60681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (locked) {
60781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mLock.unlock();
60881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
60981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
61081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
61181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
61281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
61381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const size_t SIZE = 256;
61481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    char buffer[SIZE];
61581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    String8 result;
61681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
617b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numEffectChains = mEffectChains.size();
6181d6fa7af1288b550faabe4ec2cf98684236723dbNarayan Kamath    snprintf(buffer, SIZE, "  %zu Effect Chains\n", numEffectChains);
61981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    write(fd, buffer, strlen(buffer));
62081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
621b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    for (size_t i = 0; i < numEffectChains; ++i) {
62281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<EffectChain> chain = mEffectChains[i];
62381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chain != 0) {
62481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->dump(fd, args);
62581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
62681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
62781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
62881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
629e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissenvoid AudioFlinger::ThreadBase::acquireWakeLock(int uid)
63081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
63181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
632e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen    acquireWakeLock_l(uid);
63381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
63481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
635014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan KamathString16 AudioFlinger::ThreadBase::getWakeLockTag()
636014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath{
637014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath    switch (mType) {
638014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath        case MIXER:
639014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            return String16("AudioMix");
640014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath        case DIRECT:
641014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            return String16("AudioDirectOut");
642014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath        case DUPLICATING:
643014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            return String16("AudioDup");
644014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath        case RECORD:
645014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            return String16("AudioIn");
646014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath        case OFFLOAD:
647014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            return String16("AudioOffload");
648014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath        default:
649014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            ALOG_ASSERT(false);
650014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath            return String16("AudioUnknown");
651014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath    }
652014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath}
653014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath
654e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissenvoid AudioFlinger::ThreadBase::acquireWakeLock_l(int uid)
65581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
656462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    getPowerManager_l();
65781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mPowerManager != 0) {
65881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<IBinder> binder = new BBinder();
659e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen        status_t status;
660e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen        if (uid >= 0) {
661547789d25dc6bd6561553bcf6b384fb0d4fee834Eric Laurent            status = mPowerManager->acquireWakeLockWithUid(POWERMANAGER_PARTIAL_WAKE_LOCK,
662e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen                    binder,
663014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath                    getWakeLockTag(),
664e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen                    String16("media"),
6653abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten                    uid,
6663abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten                    true /* FIXME force oneway contrary to .aidl */);
667e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen        } else {
668547789d25dc6bd6561553bcf6b384fb0d4fee834Eric Laurent            status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
669e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen                    binder,
670014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath                    getWakeLockTag(),
6713abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten                    String16("media"),
6723abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten                    true /* FIXME force oneway contrary to .aidl */);
673e14a5d6d2cc91dd2fc09ffdf7aa670b37da0795dMarco Nelissen        }
67481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (status == NO_ERROR) {
67581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mWakeLockToken = binder;
67681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
67781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("acquireWakeLock_l() %s status %d", mName, status);
67881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
67981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
68081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
68181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::releaseWakeLock()
68281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
68381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
68481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    releaseWakeLock_l();
68581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
68681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
68781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::releaseWakeLock_l()
68881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
68981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mWakeLockToken != 0) {
69081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("releaseWakeLock_l() %s", mName);
69181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mPowerManager != 0) {
6923abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten            mPowerManager->releaseWakeLock(mWakeLockToken, 0,
6933abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten                    true /* FIXME force oneway contrary to .aidl */);
69481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
69581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mWakeLockToken.clear();
69681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
69781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
69881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
699462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissenvoid AudioFlinger::ThreadBase::updateWakeLockUids(const SortedVector<int> &uids) {
700462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    Mutex::Autolock _l(mLock);
701462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    updateWakeLockUids_l(uids);
702462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen}
703462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
704462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissenvoid AudioFlinger::ThreadBase::getPowerManager_l() {
705462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
706462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    if (mPowerManager == 0) {
707462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        // use checkService() to avoid blocking if power service is not up yet
708462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        sp<IBinder> binder =
709462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            defaultServiceManager()->checkService(String16("power"));
710462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        if (binder == 0) {
711462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            ALOGW("Thread %s cannot connect to the power manager service", mName);
712462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        } else {
713462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            mPowerManager = interface_cast<IPowerManager>(binder);
714462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            binder->linkToDeath(mDeathRecipient);
715462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        }
716462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    }
717462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen}
718462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
719462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissenvoid AudioFlinger::ThreadBase::updateWakeLockUids_l(const SortedVector<int> &uids) {
720462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
721462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    getPowerManager_l();
722462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    if (mWakeLockToken == NULL) {
723462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        ALOGE("no wake lock to update!");
724462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        return;
725462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    }
726462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    if (mPowerManager != 0) {
727462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        sp<IBinder> binder = new BBinder();
728462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        status_t status;
7293abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten        status = mPowerManager->updateWakeLockUids(mWakeLockToken, uids.size(), uids.array(),
7303abc2ded40066f3b1df23aceb553f22d569c5cd3Glenn Kasten                    true /* FIXME force oneway contrary to .aidl */);
731462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        ALOGV("acquireWakeLock_l() %s status %d", mName, status);
732462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    }
733462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen}
734462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
73581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::clearPowerManager()
73681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
73781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
73881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    releaseWakeLock_l();
73981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mPowerManager.clear();
74081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
74181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7420f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenvoid AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who __unused)
74381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
74481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<ThreadBase> thread = mThread.promote();
74581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (thread != 0) {
74681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        thread->clearPowerManager();
74781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
74881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGW("power manager service died !!!");
74981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
75081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
75181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::setEffectSuspended(
75281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const effect_uuid_t *type, bool suspend, int sessionId)
75381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
75481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
75581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    setEffectSuspended_l(type, suspend, sessionId);
75681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
75781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
75881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::setEffectSuspended_l(
75981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const effect_uuid_t *type, bool suspend, int sessionId)
76081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
76181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = getEffectChain_l(sessionId);
76281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain != 0) {
76381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (type != NULL) {
76481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->setEffectSuspended_l(type, suspend);
76581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
76681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->setEffectSuspendedAll_l(suspend);
76781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
76881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
76981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
77081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    updateSuspendedSessions_l(type, suspend, sessionId);
77181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
77281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
77381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
77481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
77581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ssize_t index = mSuspendedSessions.indexOfKey(chain->sessionId());
77681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (index < 0) {
77781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return;
77881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
77981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
78081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const KeyedVector <int, sp<SuspendedSessionDesc> >& sessionEffects =
78181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mSuspendedSessions.valueAt(index);
78281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
78381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < sessionEffects.size(); i++) {
78481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
78581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        for (int j = 0; j < desc->mRefCount; j++) {
78681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
78781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                chain->setEffectSuspendedAll_l(true);
78881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
78981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
79081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    desc->mType.timeLow);
79181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                chain->setEffectSuspended_l(&desc->mType, true);
79281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
79381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
79481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
79581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
79681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
79781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
79881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                         bool suspend,
79981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                         int sessionId)
80081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
80181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ssize_t index = mSuspendedSessions.indexOfKey(sessionId);
80281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
80381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
80481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
80581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (suspend) {
80681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (index >= 0) {
80781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sessionEffects = mSuspendedSessions.valueAt(index);
80881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
80981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mSuspendedSessions.add(sessionId, sessionEffects);
81081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
81181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
81281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (index < 0) {
81381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return;
81481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
81581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sessionEffects = mSuspendedSessions.valueAt(index);
81681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
81781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
81881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
81981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int key = EffectChain::kKeyForSuspendAll;
82081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (type != NULL) {
82181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        key = type->timeLow;
82281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
82381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    index = sessionEffects.indexOfKey(key);
82481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
82581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<SuspendedSessionDesc> desc;
82681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (suspend) {
82781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (index >= 0) {
82881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            desc = sessionEffects.valueAt(index);
82981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
83081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            desc = new SuspendedSessionDesc();
83181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (type != NULL) {
83281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                desc->mType = *type;
83381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
83481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sessionEffects.add(key, desc);
83581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
83681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
83781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc->mRefCount++;
83881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
83981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (index < 0) {
84081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return;
84181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
84281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc = sessionEffects.valueAt(index);
84381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (--desc->mRefCount == 0) {
84481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
84581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sessionEffects.removeItemsAt(index);
84681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (sessionEffects.isEmpty()) {
84781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGV("updateSuspendedSessions_l() restore removing session %d",
84881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                 sessionId);
84981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mSuspendedSessions.removeItem(sessionId);
85081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
85181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
85281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
85381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!sessionEffects.isEmpty()) {
85481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
85581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
85681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
85781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
85881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
85981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                            bool enabled,
86081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                            int sessionId)
86181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
86281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
86381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
86481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
86581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
86681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
86781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                            bool enabled,
86881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                            int sessionId)
86981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
87081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mType != RECORD) {
87181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
87281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // another session. This gives the priority to well behaved effect control panels
87381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // and applications not using global effects.
87481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Enabling post processing in AUDIO_SESSION_OUTPUT_STAGE session does not affect
87581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // global effects
87681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if ((sessionId != AUDIO_SESSION_OUTPUT_MIX) && (sessionId != AUDIO_SESSION_OUTPUT_STAGE)) {
87781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
87881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
87981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
88081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
88181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = getEffectChain_l(sessionId);
88281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain != 0) {
88381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain->checkSuspendOnEffectEnabled(effect, enabled);
88481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
88581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
88681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
88781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ThreadBase::createEffect_l() must be called with AudioFlinger::mLock held
88881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
88981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<AudioFlinger::Client>& client,
89081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<IEffectClient>& effectClient,
89181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int32_t priority,
89281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int sessionId,
89381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        effect_descriptor_t *desc,
89481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int *enabled,
8959156ef3e11b68cc4b6d3cea77f1f63673855a6d1Glenn Kasten        status_t *status)
89681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
89781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectModule> effect;
89881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectHandle> handle;
89981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t lStatus;
90081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain;
90181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool chainCreated = false;
90281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool effectCreated = false;
90381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool effectRegistered = false;
90481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
90581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    lStatus = initCheck();
90681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (lStatus != NO_ERROR) {
90781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGW("createEffect_l() Audio driver not initialized.");
90881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        goto Exit;
90981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
91081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
91198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Reject any effect on Direct output threads for now, since the format of
91298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // mSinkBuffer is not guaranteed to be compatible with effect processing (PCM 16 stereo).
91398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    if (mType == DIRECT) {
91498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        ALOGW("createEffect_l() Cannot add effect %s on Direct output type thread %s",
91598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                desc->name, mName);
91698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        lStatus = BAD_VALUE;
91798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        goto Exit;
91898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    }
91998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
920389cfdbb9a92a438a0d7710321c2964c7ad55ecaAndy Hung    // Reject any effect on mixer or duplicating multichannel sinks.
9219a59276fb465e492138e0576523b54079671e8f4Andy Hung    // TODO: fix both format and multichannel issues with effects.
922389cfdbb9a92a438a0d7710321c2964c7ad55ecaAndy Hung    if ((mType == MIXER || mType == DUPLICATING) && mChannelCount != FCC_2) {
923389cfdbb9a92a438a0d7710321c2964c7ad55ecaAndy Hung        ALOGW("createEffect_l() Cannot add effect %s for multichannel(%d) %s threads",
924389cfdbb9a92a438a0d7710321c2964c7ad55ecaAndy Hung                desc->name, mChannelCount, mType == MIXER ? "MIXER" : "DUPLICATING");
9259a59276fb465e492138e0576523b54079671e8f4Andy Hung        lStatus = BAD_VALUE;
9269a59276fb465e492138e0576523b54079671e8f4Andy Hung        goto Exit;
9279a59276fb465e492138e0576523b54079671e8f4Andy Hung    }
9289a59276fb465e492138e0576523b54079671e8f4Andy Hung
9295baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent    // Allow global effects only on offloaded and mixer threads
9305baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent    if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
9315baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        switch (mType) {
9325baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        case MIXER:
9335baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        case OFFLOAD:
9345baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent            break;
9355baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        case DIRECT:
9365baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        case DUPLICATING:
9375baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        case RECORD:
9385baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        default:
9395baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent            ALOGW("createEffect_l() Cannot add global effect %s on thread %s", desc->name, mName);
9405baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent            lStatus = BAD_VALUE;
9415baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent            goto Exit;
9425baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent        }
94381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
9445baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent
94581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Only Pre processor effects are allowed on input threads and only on input threads
94681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if ((mType == RECORD) != ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
94781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
94881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                desc->name, desc->flags, mType);
94981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        lStatus = BAD_VALUE;
95081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        goto Exit;
95181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
95281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
95381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
95481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
95581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    { // scope for mLock
95681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Mutex::Autolock _l(mLock);
95781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
95881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // check for existing effect chain with the requested audio session
95981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain = getEffectChain_l(sessionId);
96081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chain == 0) {
96181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // create a new chain for this session
96281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("createEffect_l() new effect chain for session %d", sessionId);
96381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain = new EffectChain(this, sessionId);
96481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            addEffectChain_l(chain);
96581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->setStrategy(getStrategyForSession_l(sessionId));
96681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chainCreated = true;
96781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
96881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effect = chain->getEffectFromDesc_l(desc);
96981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
97081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
97181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
97281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
97381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (effect == 0) {
97481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int id = mAudioFlinger->nextUniqueId();
97581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // Check CPU and memory usage
97681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
97781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (lStatus != NO_ERROR) {
97881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                goto Exit;
97981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
98081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effectRegistered = true;
98181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // create a new effect module if none present in the chain
98281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effect = new EffectModule(this, chain, desc, id, sessionId);
98381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            lStatus = effect->status();
98481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (lStatus != NO_ERROR) {
98581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                goto Exit;
98681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
9875baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent            effect->setOffloaded(mType == OFFLOAD, mId);
9885baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent
98981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            lStatus = chain->addEffect_l(effect);
99081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (lStatus != NO_ERROR) {
99181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                goto Exit;
99281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
99381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effectCreated = true;
99481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
99581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effect->setDevice(mOutDevice);
99681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effect->setDevice(mInDevice);
99781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effect->setMode(mAudioFlinger->getMode());
99881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            effect->setAudioSource(mAudioSource);
99981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
100081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // create effect handle and connect it to effect module
100181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        handle = new EffectHandle(effect, client, effectClient, priority);
1002e75da4004b2c814987aa2adf8a76190f92d99c65Glenn Kasten        lStatus = handle->initCheck();
1003e75da4004b2c814987aa2adf8a76190f92d99c65Glenn Kasten        if (lStatus == OK) {
1004e75da4004b2c814987aa2adf8a76190f92d99c65Glenn Kasten            lStatus = effect->addHandle(handle.get());
1005e75da4004b2c814987aa2adf8a76190f92d99c65Glenn Kasten        }
100681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (enabled != NULL) {
100781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            *enabled = (int)effect->isEnabled();
100881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
100981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
101081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
101181784c37c61b09289654b979567a42bf73cd2b12Eric LaurentExit:
101281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
101381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Mutex::Autolock _l(mLock);
101481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (effectCreated) {
101581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->removeEffect_l(effect);
101681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
101781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (effectRegistered) {
101881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            AudioSystem::unregisterEffect(effect->id());
101981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
102081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chainCreated) {
102181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            removeEffectChain_l(chain);
102281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
102381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        handle.clear();
102481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
102581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10269156ef3e11b68cc4b6d3cea77f1f63673855a6d1Glenn Kasten    *status = lStatus;
102781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return handle;
102881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
102981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
103081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect(int sessionId, int effectId)
103181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
103281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
103381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return getEffect_l(sessionId, effectId);
103481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
103581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
103681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
103781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
103881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = getEffectChain_l(sessionId);
103981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
104081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
104181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
104281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
104381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// PlaybackThread::mLock held
104481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
104581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
104681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // check for existing effect chain with the requested audio session
104781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int sessionId = effect->sessionId();
104881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = getEffectChain_l(sessionId);
104981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool chainCreated = false;
105081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10515baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent    ALOGD_IF((mType == OFFLOAD) && !effect->isOffloadable(),
10525baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent             "addEffect_l() on offloaded thread %p: effect %s does not support offload flags %x",
10535baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent                    this, effect->desc().name, effect->desc().flags);
10545baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent
105581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain == 0) {
105681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // create a new chain for this session
105781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("addEffect_l() new effect chain for session %d", sessionId);
105881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain = new EffectChain(this, sessionId);
105981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        addEffectChain_l(chain);
106081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain->setStrategy(getStrategyForSession_l(sessionId));
106181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chainCreated = true;
106281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
106381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
106481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
106581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain->getEffectFromId_l(effect->id()) != 0) {
106681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGW("addEffect_l() %p effect %s already present in chain %p",
106781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                this, effect->desc().name, chain.get());
106881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return BAD_VALUE;
106981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
107081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10715baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent    effect->setOffloaded(mType == OFFLOAD, mId);
10725baf2af52cd186633b7173196c1e4a4cd3435f22Eric Laurent
107381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t status = chain->addEffect_l(effect);
107481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (status != NO_ERROR) {
107581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chainCreated) {
107681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            removeEffectChain_l(chain);
107781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
107881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return status;
107981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
108081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
108181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    effect->setDevice(mOutDevice);
108281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    effect->setDevice(mInDevice);
108381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    effect->setMode(mAudioFlinger->getMode());
108481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    effect->setAudioSource(mAudioSource);
108581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return NO_ERROR;
108681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
108781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
108881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
108981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
109081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("removeEffect_l() %p effect %p", this, effect.get());
109181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    effect_descriptor_t desc = effect->desc();
109281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
109381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        detachAuxEffect_l(effect->id());
109481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
109581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
109681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = effect->chain().promote();
109781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain != 0) {
109881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // remove effect chain if removing last effect
109981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chain->removeEffect_l(effect) == 0) {
110081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            removeEffectChain_l(chain);
110181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
110281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
110381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
110481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
110581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
110681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
110781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::lockEffectChains_l(
110881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Vector< sp<AudioFlinger::EffectChain> >& effectChains)
110981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
111081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    effectChains = mEffectChains;
111181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mEffectChains.size(); i++) {
111281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mEffectChains[i]->lock();
111381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
111481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
111581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
111681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::unlockEffectChains(
111781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const Vector< sp<AudioFlinger::EffectChain> >& effectChains)
111881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
111981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < effectChains.size(); i++) {
112081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        effectChains[i]->unlock();
112181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
112281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
112381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
112481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
112581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
112681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
112781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return getEffectChain_l(sessionId);
112881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
112981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
113081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId) const
113181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
113281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t size = mEffectChains.size();
113381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < size; i++) {
113481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mEffectChains[i]->sessionId() == sessionId) {
113581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return mEffectChains[i];
113681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
113781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
113881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return 0;
113981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
114081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
114181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
114281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
114381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
114481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t size = mEffectChains.size();
114581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < size; i++) {
114681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mEffectChains[i]->setMode_l(mode);
114781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
114881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
114981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
115083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::ThreadBase::getAudioPortConfig(struct audio_port_config *config)
115183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
115283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->type = AUDIO_PORT_TYPE_MIX;
115383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->ext.mix.handle = mId;
115483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->sample_rate = mSampleRate;
115583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->format = mFormat;
115683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->channel_mask = mChannelMask;
115783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->config_mask = AUDIO_PORT_CONFIG_SAMPLE_RATE|AUDIO_PORT_CONFIG_CHANNEL_MASK|
115883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                            AUDIO_PORT_CONFIG_FORMAT;
115983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
116083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
116183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
116281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
116381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent//      Playback
116481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
116581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
116681784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
116781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                             AudioStreamOut* output,
116881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                             audio_io_handle_t id,
116981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                             audio_devices_t device,
117081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                             type_t type)
117181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    :   ThreadBase(audioFlinger, id, device, AUDIO_DEVICE_NONE, type),
11722098f2744cedf2dc3fa36f608aa965a34602e7c0Andy Hung        mNormalFrameCount(0), mSinkBuffer(NULL),
11736146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung        mMixerBufferEnabled(AudioFlinger::kEnableExtendedPrecision),
117469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        mMixerBuffer(NULL),
117569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        mMixerBufferSize(0),
117669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        mMixerBufferFormat(AUDIO_FORMAT_INVALID),
117769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        mMixerBufferValid(false),
11786146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung        mEffectBufferEnabled(AudioFlinger::kEnableExtendedPrecision),
117998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        mEffectBuffer(NULL),
118098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        mEffectBufferSize(0),
118198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        mEffectBufferFormat(AUDIO_FORMAT_INVALID),
118298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        mEffectBufferValid(false),
1183c1fac191069774c7bfcb062edbb821ea56e7dbc0Glenn Kasten        mSuspended(0), mBytesWritten(0),
1184462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        mActiveTracksGeneration(0),
118581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mStreamTypes[] initialized in constructor body
118681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mOutput(output),
118781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
118881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mMixerStatus(MIXER_IDLE),
118981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mMixerStatusIgnoringFastTracks(MIXER_IDLE),
119081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        standbyDelay(AudioFlinger::mStandbyTimeInNsecs),
1191bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mBytesRemaining(0),
1192bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mCurrentWriteLength(0),
1193bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mUseAsyncWrite(false),
11943b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mWriteAckSequence(0),
11953b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mDrainSequence(0),
1196ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent        mSignalPending(false),
119781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mScreenState(AudioFlinger::mScreenState),
119881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // index 0 is reserved for normal mixer's submix
1199bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten        mFastTrackAvailMask(((1 << FastMixerState::kMaxFastTracks) - 1) & ~1),
1200bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten        // mLatchD, mLatchQ,
1201bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten        mLatchDValid(false), mLatchQValid(false)
120281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
120381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    snprintf(mName, kNameLength, "AudioOut_%X", id);
12049e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    mNBLogWriter = audioFlinger->newWriter_l(kLogSize, mName);
120581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
120681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Assumes constructor is called by AudioFlinger with it's mLock held, but
120781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // it would be safer to explicitly pass initial masterVolume/masterMute as
120881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // parameter.
120981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //
121081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // If the HAL we are using has support for master volume or master mute,
121181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // then do not attenuate or mute during mixing (just leave the volume at 1.0
121281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // and the mute set to false).
121381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mMasterVolume = audioFlinger->masterVolume_l();
121481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mMasterMute = audioFlinger->masterMute_l();
121581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mOutput && mOutput->audioHwDev) {
121681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mOutput->audioHwDev->canSetMasterVolume()) {
121781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mMasterVolume = 1.0;
121881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
121981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
122081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mOutput->audioHwDev->canSetMasterMute()) {
122181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mMasterMute = false;
122281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
122381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
122481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1225deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten    readOutputParameters_l();
122681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
122781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
122881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
122966e4635cb09fadcaccf912f37c387396c428378aGlenn Kasten    for (audio_stream_type_t stream = AUDIO_STREAM_MIN; stream < AUDIO_STREAM_CNT;
123081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            stream = (audio_stream_type_t) (stream + 1)) {
123181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
123281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
123381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
123481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mStreamTypes[AUDIO_STREAM_CNT] exists but isn't explicitly initialized here,
123581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // because mAudioFlinger doesn't have one to copy from
123681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
123781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
123881784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::PlaybackThread::~PlaybackThread()
123981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
12409e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    mAudioFlinger->unregisterWriter(mNBLogWriter);
1241010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    free(mSinkBuffer);
124269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    free(mMixerBuffer);
124398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    free(mEffectBuffer);
124481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
124581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
124681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
124781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
124881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpInternals(fd, args);
124981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpTracks(fd, args);
125081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpEffectChains(fd, args);
125181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
125281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
12530f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenvoid AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args __unused)
125481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
125581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const size_t SIZE = 256;
125681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    char buffer[SIZE];
125781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    String8 result;
125881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1259b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    result.appendFormat("  Stream volumes in dB: ");
126081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (int i = 0; i < AUDIO_STREAM_CNT; ++i) {
126181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const stream_type_t *st = &mStreamTypes[i];
126281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (i > 0) {
126381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            result.appendFormat(", ");
126481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
126581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        result.appendFormat("%d:%.2g", i, 20.0 * log10(st->volume));
126681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (st->mute) {
126781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            result.append("M");
126881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
126981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
127081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    result.append("\n");
127181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    write(fd, result.string(), result.length());
127281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    result.clear();
127381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1274b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    // These values are "raw"; they will wrap around.  See prepareTracks_l() for a better way.
1275b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    FastTrackUnderruns underruns = getFastTrackUnderruns(0);
127687cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Normal mixer raw underrun counters: partial=%u empty=%u\n",
1277b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            underruns.mBitFields.mPartial, underruns.mBitFields.mEmpty);
1278b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen
1279b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numtracks = mTracks.size();
1280b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numactive = mActiveTracks.size();
128187cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  %d Tracks", numtracks);
1282b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numactiveseen = 0;
1283b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (numtracks) {
128487cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, " of which %d are active\n", numactive);
1285b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        Track::appendDumpHeader(result);
1286b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        for (size_t i = 0; i < numtracks; ++i) {
1287b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            sp<Track> track = mTracks[i];
1288b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            if (track != 0) {
1289b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                bool active = mActiveTracks.indexOf(track) >= 0;
1290b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                if (active) {
1291b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                    numactiveseen++;
1292b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                }
1293b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                track->dump(buffer, SIZE, active);
1294b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                result.append(buffer);
1295b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            }
129681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
1297b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    } else {
1298b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        result.append("\n");
129981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
1300b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (numactiveseen != numactive) {
1301b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        // some tracks in the active list were not in the tracks list
1302b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        snprintf(buffer, SIZE, "  The following tracks are in the active list but"
1303b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                " not in the track list\n");
1304b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        result.append(buffer);
1305b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        Track::appendDumpHeader(result);
1306b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        for (size_t i = 0; i < numactive; ++i) {
1307b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            sp<Track> track = mActiveTracks[i].promote();
1308b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            if (track != 0 && mTracks.indexOf(track) < 0) {
1309b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                track->dump(buffer, SIZE, true);
1310b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                result.append(buffer);
1311b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            }
131281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
131381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
1314b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen
131581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    write(fd, result.string(), result.size());
131681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
131781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
131881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
131981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
132087cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "\nOutput thread %p:\n", this);
132187cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Normal frame count: %zu\n", mNormalFrameCount);
132287cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
132387cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Total writes: %d\n", mNumWrites);
132487cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Delayed writes: %d\n", mNumDelayedWrites);
132587cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Blocked in write: %s\n", mInWrite ? "yes" : "no");
132687cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Suspend count: %d\n", mSuspended);
132787cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Sink buffer : %p\n", mSinkBuffer);
132887cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Mixer buffer: %p\n", mMixerBuffer);
132987cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Effect buffer: %p\n", mEffectBuffer);
133087cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  Fast track availMask=%#x\n", mFastTrackAvailMask);
133181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
133281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpBase(fd, args);
133381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
133481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
133581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// Thread virtuals
133681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
133781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::onFirstRef()
133881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
133981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
134081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
134181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
134281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ThreadBase virtuals
134381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::preExit()
134481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
134581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("  preExit()");
134681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME this is using hard-coded strings but in the future, this functionality will be
134781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //       converted to use audio HAL extensions required to support tunneling
134881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mOutput->stream->common.set_parameters(&mOutput->stream->common, "exiting=1");
134981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
135081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
135181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
135281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
135381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<AudioFlinger::Client>& client,
135481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_stream_type_t streamType,
135581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t sampleRate,
135681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_format_t format,
135781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_channel_mask_t channelMask,
135874935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten        size_t *pFrameCount,
135981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<IMemory>& sharedBuffer,
136081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int sessionId,
136181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        IAudioFlinger::track_flags_t *flags,
136281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        pid_t tid,
1363462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        int uid,
136481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        status_t *status)
136581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
136674935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten    size_t frameCount = *pFrameCount;
136781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<Track> track;
136881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t lStatus;
136981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
137081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool isTimed = (*flags & IAudioFlinger::TRACK_TIMED) != 0;
137181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
137281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // client expresses a preference for FAST, but we get the final say
137381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (*flags & IAudioFlinger::TRACK_FAST) {
137481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent      if (
137581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // not timed
137681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            (!isTimed) &&
137781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // either of these use cases:
137881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            (
137981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent              // use case 1: shared buffer with any frame count
138081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent              (
138181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                (sharedBuffer != 0)
138281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent              ) ||
138381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent              // use case 2: callback handler and frame count is default or at least as large as HAL
138481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent              (
138581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                (tid != -1) &&
138681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ((frameCount == 0) ||
1387b5fed68bcdd6f44424c9e4d12bfe9a3ff51bd62eGlenn Kasten                (frameCount >= mFrameCount))
138881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent              )
138981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ) &&
139081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // PCM data
139181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            audio_is_linear_pcm(format) &&
13929a59276fb465e492138e0576523b54079671e8f4Andy Hung            // identical channel mask to sink, or mono in and stereo sink
13939a59276fb465e492138e0576523b54079671e8f4Andy Hung            (channelMask == mChannelMask ||
13949a59276fb465e492138e0576523b54079671e8f4Andy Hung                    (channelMask == AUDIO_CHANNEL_OUT_MONO &&
13959a59276fb465e492138e0576523b54079671e8f4Andy Hung                            mChannelMask == AUDIO_CHANNEL_OUT_STEREO)) &&
139681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // hardware sample rate
139781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            (sampleRate == mSampleRate) &&
139881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // normal mixer has an associated fast mixer
139981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            hasFastMixer() &&
140081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // there are sufficient fast track slots available
140181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            (mFastTrackAvailMask != 0)
140281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // FIXME test that MixerThread for this fast track has a capable output HAL
140381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // FIXME add a permission test also?
140481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ) {
140581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // if frameCount not specified, then it defaults to fast mixer (HAL) frame count
140681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (frameCount == 0) {
14070349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten            // read the fast track multiplier property the first time it is needed
14080349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten            int ok = pthread_once(&sFastTrackMultiplierOnce, sFastTrackMultiplierInit);
14090349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten            if (ok != 0) {
14100349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten                ALOGE("%s pthread_once failed: %d", __func__, ok);
14110349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten            }
14120349009fd19f89f8414c428f6b71b369f7546085Glenn Kasten            frameCount = mFrameCount * sFastTrackMultiplier;
141381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
141481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("AUDIO_OUTPUT_FLAG_FAST accepted: frameCount=%d mFrameCount=%d",
141581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                frameCount, mFrameCount);
141681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent      } else {
141781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("AUDIO_OUTPUT_FLAG_FAST denied: isTimed=%d sharedBuffer=%p frameCount=%d "
14186146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung                "mFrameCount=%d format=%#x mFormat=%#x isLinear=%d channelMask=%#x "
14196146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung                "sampleRate=%u mSampleRate=%u "
142081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                "hasFastMixer=%d tid=%d fastTrackAvailMask=%#x",
14216146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung                isTimed, sharedBuffer.get(), frameCount, mFrameCount, format, mFormat,
142281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_is_linear_pcm(format),
142381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                channelMask, sampleRate, mSampleRate, hasFastMixer(), tid, mFastTrackAvailMask);
142481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        *flags &= ~IAudioFlinger::TRACK_FAST;
142581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // For compatibility with AudioTrack calculation, buffer depth is forced
142681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // to be at least 2 x the normal mixer frame count and cover audio hardware latency.
142781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // This is probably too conservative, but legacy application code may depend on it.
142881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // If you change this calculation, also review the start threshold which is related.
142981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t latencyMs = mOutput->stream->get_latency(mOutput->stream);
143081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t minBufCount = latencyMs / ((1000 * mNormalFrameCount) / mSampleRate);
143181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (minBufCount < 2) {
143281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            minBufCount = 2;
143381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
143481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        size_t minFrameCount = mNormalFrameCount * minBufCount;
143581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (frameCount < minFrameCount) {
143681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            frameCount = minFrameCount;
143781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
143881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent      }
143981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
144074935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten    *pFrameCount = frameCount;
144181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1442c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten    switch (mType) {
1443c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten
1444c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten    case DIRECT:
1445993fa0603707e94ce259e95e56838a85b5ccbdc5Glenn Kasten        if (audio_is_linear_pcm(format)) {
144681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
1447cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten                ALOGE("createTrack_l() Bad parameter: sampleRate %u format %#x, channelMask 0x%08x "
1448cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten                        "for output %p with format %#x",
144981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        sampleRate, format, channelMask, mOutput, mFormat);
145081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                lStatus = BAD_VALUE;
145181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                goto Exit;
145281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
145381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
1454c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten        break;
1455c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten
1456c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten    case OFFLOAD:
1457bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
1458cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten            ALOGE("createTrack_l() Bad parameter: sampleRate %d format %#x, channelMask 0x%08x \""
1459cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten                    "for output %p with format %#x",
1460bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    sampleRate, format, channelMask, mOutput, mFormat);
1461bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            lStatus = BAD_VALUE;
1462bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            goto Exit;
1463bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
1464c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten        break;
1465c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten
1466c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten    default:
1467993fa0603707e94ce259e95e56838a85b5ccbdc5Glenn Kasten        if (!audio_is_linear_pcm(format)) {
1468cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten                ALOGE("createTrack_l() Bad parameter: format %#x \""
1469cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten                        "for output %p with format %#x",
1470bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        format, mOutput, mFormat);
1471bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                lStatus = BAD_VALUE;
1472bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                goto Exit;
1473bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
1474cd04484f4837b8ca0041d118286ab6a98e84fc75Andy Hung        if (sampleRate > mSampleRate * AUDIO_RESAMPLER_DOWN_RATIO_MAX) {
147581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGE("Sample rate out of range: %u mSampleRate %u", sampleRate, mSampleRate);
147681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            lStatus = BAD_VALUE;
147781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            goto Exit;
147881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
1479c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten        break;
1480c3df838434b37d8400eea2438083cc01a4c1cc71Glenn Kasten
148181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
148281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
148381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    lStatus = initCheck();
148481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (lStatus != NO_ERROR) {
148515e5798908ccac14e10c84834eaf08c42931bd06Glenn Kasten        ALOGE("createTrack_l() audio driver not initialized");
148681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        goto Exit;
148781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
148881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
148981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    { // scope for mLock
149081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Mutex::Autolock _l(mLock);
149181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
149281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // all tracks in same audio session must share the same routing strategy otherwise
149381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // conflicts will happen when tracks are moved from one output to another by audio policy
149481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // manager
149581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t strategy = AudioSystem::getStrategyForStream(streamType);
149681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        for (size_t i = 0; i < mTracks.size(); ++i) {
149781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sp<Track> t = mTracks[i];
149883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            if (t != 0 && t->isExternalTrack()) {
149981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t actual = AudioSystem::getStrategyForStream(t->streamType());
150081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (sessionId == t->sessionId() && strategy != actual) {
150181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
150281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                            strategy, actual);
150381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    lStatus = BAD_VALUE;
150481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    goto Exit;
150581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
150681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
150781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
150881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
150981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (!isTimed) {
151081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            track = new Track(this, client, streamType, sampleRate, format,
151183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                              channelMask, frameCount, NULL, sharedBuffer,
151283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                              sessionId, uid, *flags, TrackBase::TYPE_DEFAULT);
151381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
151481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            track = TimedTrack::create(this, client, streamType, sampleRate, format,
1515462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                    channelMask, frameCount, sharedBuffer, sessionId, uid);
151681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
1517030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten
1518030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten        // new Track always returns non-NULL,
1519030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten        // but TimedTrack::create() is a factory that could fail by returning NULL
1520030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten        lStatus = track != 0 ? track->initCheck() : (status_t) NO_MEMORY;
1521030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten        if (lStatus != NO_ERROR) {
15220cde076ddb283c84c3801a2df4cc3df99bd1577fGlenn Kasten            ALOGE("createTrack_l() initCheck failed %d; no control block?", lStatus);
152303e9e83c47ab4a518da0a1f36b8f702f59221c95Haynes Mathew George            // track must be cleared from the caller as the caller has the AF lock
152481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            goto Exit;
152581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
152681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mTracks.add(track);
152781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
152881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<EffectChain> chain = getEffectChain_l(sessionId);
152981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chain != 0) {
153081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
153181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            track->setMainBuffer(chain->inBuffer());
153281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->setStrategy(AudioSystem::getStrategyForStream(track->streamType()));
153381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain->incTrackCnt();
153481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
153581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
153681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if ((*flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
153781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            pid_t callingPid = IPCThreadState::self()->getCallingPid();
153881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // we don't have CAP_SYS_NICE, nor do we want to have it as it's too powerful,
153981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // so ask activity manager to do this on our behalf
154081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sendPrioConfigEvent_l(callingPid, tid, kPriorityAudioApp);
154181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
154281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
154381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
154481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    lStatus = NO_ERROR;
154581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
154681784c37c61b09289654b979567a42bf73cd2b12Eric LaurentExit:
15479156ef3e11b68cc4b6d3cea77f1f63673855a6d1Glenn Kasten    *status = lStatus;
154881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return track;
154981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
155081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
155181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::PlaybackThread::correctLatency_l(uint32_t latency) const
155281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
155381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return latency;
155481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
155581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
155681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::PlaybackThread::latency() const
155781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
155881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
155981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return latency_l();
156081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
156181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::PlaybackThread::latency_l() const
156281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
156381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (initCheck() == NO_ERROR) {
156481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return correctLatency_l(mOutput->stream->get_latency(mOutput->stream));
156581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
156681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return 0;
156781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
156881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
156981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
157081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::setMasterVolume(float value)
157181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
157281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
157381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Don't apply master volume in SW if our HAL can do it for us.
157481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mOutput && mOutput->audioHwDev &&
157581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mOutput->audioHwDev->canSetMasterVolume()) {
157681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mMasterVolume = 1.0;
157781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
157881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mMasterVolume = value;
157981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
158081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
158181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
158281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::setMasterMute(bool muted)
158381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
158481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
158581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Don't apply master mute in SW if our HAL can do it for us.
158681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mOutput && mOutput->audioHwDev &&
158781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mOutput->audioHwDev->canSetMasterMute()) {
158881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mMasterMute = false;
158981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
159081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mMasterMute = muted;
159181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
159281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
159381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
159481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
159581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
159681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
159781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mStreamTypes[stream].volume = value;
1598ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent    broadcast_l();
159981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
160081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
160181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
160281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
160381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
160481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mStreamTypes[stream].mute = muted;
1605ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent    broadcast_l();
160681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
160781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
160881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentfloat AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
160981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
161081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
161181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return mStreamTypes[stream].volume;
161281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
161381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
161481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// addTrack_l() must be called with ThreadBase::mLock held
161581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
161681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
161781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t status = ALREADY_EXISTS;
161881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
161981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // set retry count for buffer fill
162081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    track->mRetryCount = kMaxTrackStartupRetries;
162181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mActiveTracks.indexOf(track) < 0) {
162281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // the track is newly added, make sure it fills up all its
162381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // buffers before playing. This is to ensure the client will
162481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // effectively get the latency it requested.
162583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent        if (track->isExternalTrack()) {
1626bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            TrackBase::track_state state = track->mState;
1627bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mLock.unlock();
1628bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            status = AudioSystem::startOutput(mId, track->streamType(), track->sessionId());
1629bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mLock.lock();
1630bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // abort track was stopped/paused while we released the lock
1631bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (state != track->mState) {
1632bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (status == NO_ERROR) {
1633bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    mLock.unlock();
1634bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    AudioSystem::stopOutput(mId, track->streamType(), track->sessionId());
1635bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    mLock.lock();
1636bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
1637bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                return INVALID_OPERATION;
1638bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
1639bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // abort if start is rejected by audio policy manager
1640bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (status != NO_ERROR) {
1641bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                return PERMISSION_DENIED;
1642bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
1643bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent#ifdef ADD_BATTERY_DATA
1644bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // to track the speaker usage
1645bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
1646bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent#endif
1647bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
1648bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
16499f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten        track->mFillingUpStatus = track->sharedBuffer() != 0 ? Track::FS_FILLED : Track::FS_FILLING;
165081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        track->mResetDone = false;
165181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        track->mPresentationCompleteFrames = 0;
165281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mActiveTracks.add(track);
1653462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        mWakeLockUids.add(track->uid());
1654462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        mActiveTracksGeneration++;
1655fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        mLatestActiveTrack = track;
1656d0107bcd44fe608b0c00a8843d19fb6356c4cb69Eric Laurent        sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1657d0107bcd44fe608b0c00a8843d19fb6356c4cb69Eric Laurent        if (chain != 0) {
1658d0107bcd44fe608b0c00a8843d19fb6356c4cb69Eric Laurent            ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(),
1659d0107bcd44fe608b0c00a8843d19fb6356c4cb69Eric Laurent                    track->sessionId());
1660d0107bcd44fe608b0c00a8843d19fb6356c4cb69Eric Laurent            chain->incActiveTrackCnt();
166181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
166281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
166381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        status = NO_ERROR;
166481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
166581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
16664c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    onAddNewTrack_l();
166781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return status;
166881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
166981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1670bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
167181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
1672bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    track->terminate();
167381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // active tracks are removed by threadLoop()
1674bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    bool trackActive = (mActiveTracks.indexOf(track) >= 0);
1675bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    track->mState = TrackBase::STOPPED;
1676bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (!trackActive) {
167781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        removeTrack_l(track);
1678ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent    } else if (track->isFastTrack() || track->isOffloaded() || track->isDirect()) {
1679bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        track->mState = TrackBase::STOPPING_1;
168081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
1681bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1682bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return trackActive;
168381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
168481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
168581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
168681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
168781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    track->triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
168881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mTracks.remove(track);
168981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    deleteTrackName_l(track->name());
169081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // redundant as track is about to be destroyed, for dumpsys only
169181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    track->mName = -1;
169281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (track->isFastTrack()) {
169381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int index = track->mFastIndex;
169481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(0 < index && index < (int)FastMixerState::kMaxFastTracks);
169581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(!(mFastTrackAvailMask & (1 << index)));
169681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mFastTrackAvailMask |= 1 << index;
169781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // redundant as track is about to be destroyed, for dumpsys only
169881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        track->mFastIndex = -1;
169981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
170081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = getEffectChain_l(track->sessionId());
170181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain != 0) {
170281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain->decTrackCnt();
170381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
170481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
170581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1706ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurentvoid AudioFlinger::PlaybackThread::broadcast_l()
1707bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
1708bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // Thread could be blocked waiting for async
1709bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // so signal it to handle state changes immediately
1710bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // If threadLoop is currently unlocked a signal of mWaitWorkCV will
1711bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // be lost so we also flag to prevent it blocking on mWaitWorkCV
1712bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mSignalPending = true;
1713ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent    mWaitWorkCV.broadcast();
1714bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
1715bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
171681784c37c61b09289654b979567a42bf73cd2b12Eric LaurentString8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
171781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
171881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
171981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (initCheck() != NO_ERROR) {
1720d8ea699dc8e7dac58bb32e9cdb31b0758da25817Glenn Kasten        return String8();
172181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
172281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1723d8ea699dc8e7dac58bb32e9cdb31b0758da25817Glenn Kasten    char *s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
1724d8ea699dc8e7dac58bb32e9cdb31b0758da25817Glenn Kasten    const String8 out_s8(s);
172581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    free(s);
172681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return out_s8;
172781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
172881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1729021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurentvoid AudioFlinger::PlaybackThread::audioConfigChanged(int event, int param) {
173081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioSystem::OutputDescriptor desc;
173181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void *param2 = NULL;
173281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1733021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent    ALOGV("PlaybackThread::audioConfigChanged, thread %p, event %d, param %d", this, event,
173481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            param);
173581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
173681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    switch (event) {
173781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::OUTPUT_OPENED:
173881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::OUTPUT_CONFIG_CHANGED:
1739fad226abd12435dbcd232f7de396f1a097b2bd5fGlenn Kasten        desc.channelMask = mChannelMask;
174081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.samplingRate = mSampleRate;
174181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.format = mFormat;
174281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.frameCount = mNormalFrameCount; // FIXME see
174381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                             // AudioFlinger::frameCount(audio_io_handle_t)
17441035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        desc.latency = latency_l();
174581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        param2 = &desc;
174681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
174781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
174881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::STREAM_CONFIG_CHANGED:
174981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        param2 = &param;
175081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::OUTPUT_CLOSED:
175181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    default:
175281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
175381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
1754021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent    mAudioFlinger->audioConfigChanged(event, mId, param2);
175581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
175681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1757bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::PlaybackThread::writeCallback()
1758bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
1759bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    ALOG_ASSERT(mCallbackThread != 0);
17603b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    mCallbackThread->resetWriteBlocked();
1761bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
1762bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1763bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::PlaybackThread::drainCallback()
1764bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
1765bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    ALOG_ASSERT(mCallbackThread != 0);
17663b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    mCallbackThread->resetDraining();
1767bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
1768bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
17693b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurentvoid AudioFlinger::PlaybackThread::resetWriteBlocked(uint32_t sequence)
1770bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
1771bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
17723b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // reject out of sequence requests
17733b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    if ((mWriteAckSequence & 1) && (sequence == mWriteAckSequence)) {
17743b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mWriteAckSequence &= ~1;
1775bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mWaitWorkCV.signal();
1776bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
1777bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
1778bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
17793b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurentvoid AudioFlinger::PlaybackThread::resetDraining(uint32_t sequence)
1780bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
1781bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
17823b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // reject out of sequence requests
17833b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    if ((mDrainSequence & 1) && (sequence == mDrainSequence)) {
17843b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mDrainSequence &= ~1;
1785bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mWaitWorkCV.signal();
1786bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
1787bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
1788bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1789bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent// static
1790bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentint AudioFlinger::PlaybackThread::asyncCallback(stream_callback_event_t event,
17910f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten                                                void *param __unused,
1792bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                                                void *cookie)
1793bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
1794bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    AudioFlinger::PlaybackThread *me = (AudioFlinger::PlaybackThread *)cookie;
1795bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    ALOGV("asyncCallback() event %d", event);
1796bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    switch (event) {
1797bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    case STREAM_CBK_EVENT_WRITE_READY:
1798bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        me->writeCallback();
1799bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        break;
1800bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    case STREAM_CBK_EVENT_DRAIN_READY:
1801bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        me->drainCallback();
1802bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        break;
1803bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    default:
1804bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        ALOGW("asyncCallback() unknown event %d", event);
1805bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        break;
1806bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
1807bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return 0;
1808bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
1809bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1810deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kastenvoid AudioFlinger::PlaybackThread::readOutputParameters_l()
181181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
1812adad3d7d935da176ff24941b4ae9edf7340e9b96Glenn Kasten    // unfortunately we have no way of recovering from errors here, hence the LOG_ALWAYS_FATAL
181381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
181481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
18157fc97ba08e2850f3f16db704b78ce78e3dbe1ff0Glenn Kasten    if (!audio_is_output_channel(mChannelMask)) {
1816adad3d7d935da176ff24941b4ae9edf7340e9b96Glenn Kasten        LOG_ALWAYS_FATAL("HAL channel mask %#x not valid for output", mChannelMask);
18177fc97ba08e2850f3f16db704b78ce78e3dbe1ff0Glenn Kasten    }
18189a59276fb465e492138e0576523b54079671e8f4Andy Hung    if ((mType == MIXER || mType == DUPLICATING)
18199a59276fb465e492138e0576523b54079671e8f4Andy Hung            && !isValidPcmSinkChannelMask(mChannelMask)) {
18209a59276fb465e492138e0576523b54079671e8f4Andy Hung        LOG_ALWAYS_FATAL("HAL channel mask %#x not supported for mixed output",
18219a59276fb465e492138e0576523b54079671e8f4Andy Hung                mChannelMask);
18227fc97ba08e2850f3f16db704b78ce78e3dbe1ff0Glenn Kasten    }
1823e541269be94f3a1072932d51537905b120ef4733Andy Hung    mChannelCount = audio_channel_count_from_out_mask(mChannelMask);
1824463be250de73907965faa6a216c00312bf81e049Andy Hung    mHALFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
1825463be250de73907965faa6a216c00312bf81e049Andy Hung    mFormat = mHALFormat;
18267fc97ba08e2850f3f16db704b78ce78e3dbe1ff0Glenn Kasten    if (!audio_is_valid_format(mFormat)) {
1827adad3d7d935da176ff24941b4ae9edf7340e9b96Glenn Kasten        LOG_ALWAYS_FATAL("HAL format %#x not valid for output", mFormat);
18287fc97ba08e2850f3f16db704b78ce78e3dbe1ff0Glenn Kasten    }
18296146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung    if ((mType == MIXER || mType == DUPLICATING)
18306146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung            && !isValidPcmSinkFormat(mFormat)) {
18316146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung        LOG_FATAL("HAL format %#x not supported for mixed output",
18326146c08f0c3dd8b9e5788063aa433f304a810602Andy Hung                mFormat);
18337fc97ba08e2850f3f16db704b78ce78e3dbe1ff0Glenn Kasten    }
1834665470b36f202bcc8ee2f7417f68fd2608dd07c1Eric Laurent    mFrameSize = audio_stream_out_frame_size(mOutput->stream);
183570949c47fbae3f836d15f040551d7631be3ed7c2Glenn Kasten    mBufferSize = mOutput->stream->common.get_buffer_size(&mOutput->stream->common);
183670949c47fbae3f836d15f040551d7631be3ed7c2Glenn Kasten    mFrameCount = mBufferSize / mFrameSize;
183781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mFrameCount & 15) {
183881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGW("HAL output buffer size is %u frames but AudioMixer requires multiples of 16 frames",
183981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mFrameCount);
184081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
184181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1842bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if ((mOutput->flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING) &&
1843bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            (mOutput->stream->set_callback != NULL)) {
1844bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (mOutput->stream->set_callback(mOutput->stream,
1845bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                                      AudioFlinger::PlaybackThread::asyncCallback, this) == 0) {
1846bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mUseAsyncWrite = true;
18474de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent            mCallbackThread = new AudioFlinger::AsyncCallbackThread(this);
1848bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
1849bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
1850bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
185109a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung    // Calculate size of normal sink buffer relative to the HAL output buffer size
185281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    double multiplier = 1.0;
185381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mType == MIXER && (kUseFastMixer == FastMixer_Static ||
185481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            kUseFastMixer == FastMixer_Dynamic)) {
185509a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung        size_t minNormalFrameCount = (kMinNormalSinkBufferSizeMs * mSampleRate) / 1000;
185609a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung        size_t maxNormalFrameCount = (kMaxNormalSinkBufferSizeMs * mSampleRate) / 1000;
185781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // round up minimum and round down maximum to nearest 16 frames to satisfy AudioMixer
185881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        minNormalFrameCount = (minNormalFrameCount + 15) & ~15;
185981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        maxNormalFrameCount = maxNormalFrameCount & ~15;
186081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (maxNormalFrameCount < minNormalFrameCount) {
186181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            maxNormalFrameCount = minNormalFrameCount;
186281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
186381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        multiplier = (double) minNormalFrameCount / (double) mFrameCount;
186481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (multiplier <= 1.0) {
186581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            multiplier = 1.0;
186681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else if (multiplier <= 2.0) {
186781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (2 * mFrameCount <= maxNormalFrameCount) {
186881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                multiplier = 2.0;
186981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
187081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                multiplier = (double) maxNormalFrameCount / (double) mFrameCount;
187181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
187281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
187381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // prefer an even multiplier, for compatibility with doubling of fast tracks due to HAL
187409a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung            // SRC (it would be unusual for the normal sink buffer size to not be a multiple of fast
187581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // track, but we sometimes have to do this to satisfy the maximum frame count
187681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // constraint)
187781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // FIXME this rounding up should not be done if no HAL SRC
187881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            uint32_t truncMult = (uint32_t) multiplier;
187981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if ((truncMult & 1)) {
188081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if ((truncMult + 1) * mFrameCount <= maxNormalFrameCount) {
188181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ++truncMult;
188281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
188381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
188481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            multiplier = (double) truncMult;
188581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
188681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
188781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mNormalFrameCount = multiplier * mFrameCount;
188881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // round up to nearest 16 frames to satisfy AudioMixer
1889ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent    if (mType == MIXER || mType == DUPLICATING) {
1890ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent        mNormalFrameCount = (mNormalFrameCount + 15) & ~15;
1891ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent    }
189209a5007b17acb49d25cfa386a2e2534d942e8854Andy Hung    ALOGI("HAL output buffer size %u frames, normal sink buffer size %u frames", mFrameCount,
189381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mNormalFrameCount);
189481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1895010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // mSinkBuffer is the sink buffer.  Size is always multiple-of-16 frames.
1896010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // Originally this was int16_t[] array, need to remove legacy implications.
1897010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    free(mSinkBuffer);
1898010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    mSinkBuffer = NULL;
18995b10a2037a835e790994b9ebec3c2e55052f1f3bAndy Hung    // For sink buffer size, we use the frame size from the downstream sink to avoid problems
19005b10a2037a835e790994b9ebec3c2e55052f1f3bAndy Hung    // with non PCM formats for compressed music, e.g. AAC, and Offload threads.
19015b10a2037a835e790994b9ebec3c2e55052f1f3bAndy Hung    const size_t sinkBufferSize = mNormalFrameCount * mFrameSize;
1902010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    (void)posix_memalign(&mSinkBuffer, 32, sinkBufferSize);
190381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
190469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // We resize the mMixerBuffer according to the requirements of the sink buffer which
190569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // drives the output.
190669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    free(mMixerBuffer);
190769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    mMixerBuffer = NULL;
190869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    if (mMixerBufferEnabled) {
190969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        mMixerBufferFormat = AUDIO_FORMAT_PCM_FLOAT; // also valid: AUDIO_FORMAT_PCM_16_BIT.
191069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        mMixerBufferSize = mNormalFrameCount * mChannelCount
191169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                * audio_bytes_per_sample(mMixerBufferFormat);
191269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize);
191369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    }
191498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    free(mEffectBuffer);
191598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    mEffectBuffer = NULL;
191698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    if (mEffectBufferEnabled) {
191798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        mEffectBufferFormat = AUDIO_FORMAT_PCM_16_BIT; // Note: Effects support 16b only
191898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        mEffectBufferSize = mNormalFrameCount * mChannelCount
191998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                * audio_bytes_per_sample(mEffectBufferFormat);
192098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        (void)posix_memalign(&mEffectBuffer, 32, mEffectBufferSize);
192198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    }
192269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
192381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // force reconfiguration of effect chains and engines to take new buffer size and audio
192481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // parameters into account
1925deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten    // Note that mLock is not held when readOutputParameters_l() is called from the constructor
192681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
192781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // matter.
192881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
192981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector< sp<EffectChain> > effectChains = mEffectChains;
193081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < effectChains.size(); i ++) {
193181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
193281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
193381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
193481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
193581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1936377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETITstatus_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
193781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
193881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (halFrames == NULL || dspFrames == NULL) {
193981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return BAD_VALUE;
194081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
194181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
194281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (initCheck() != NO_ERROR) {
194381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return INVALID_OPERATION;
194481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
194581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t framesWritten = mBytesWritten / mFrameSize;
194681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    *halFrames = framesWritten;
194781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
194881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (isSuspended()) {
194981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // return an estimation of rendered frames when the output is suspended
195081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        size_t latencyFrames = (latency_l() * mSampleRate) / 1000;
195181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        *dspFrames = framesWritten >= latencyFrames ? framesWritten - latencyFrames : 0;
195281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return NO_ERROR;
195381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
1954377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT        status_t status;
1955377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT        uint32_t frames;
1956377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT        status = mOutput->stream->get_render_position(mOutput->stream, &frames);
1957377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT        *dspFrames = (size_t)frames;
1958377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT        return status;
195981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
196081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
196181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
196281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId) const
196381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
196481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
196581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t result = 0;
196681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (getEffectChain_l(sessionId) != 0) {
196781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        result = EFFECT_SESSION;
196881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
196981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
197081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mTracks.size(); ++i) {
197181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<Track> track = mTracks[i];
19725736c35b841de56ce394b4879389f669b61425e6Glenn Kasten        if (sessionId == track->sessionId() && !track->isInvalid()) {
197381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            result |= TRACK_SESSION;
197481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            break;
197581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
197681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
197781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
197881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return result;
197981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
198081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
198181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
198281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
198381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
198481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
198581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
198681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
198781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
198881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mTracks.size(); i++) {
198981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<Track> track = mTracks[i];
19905736c35b841de56ce394b4879389f669b61425e6Glenn Kasten        if (sessionId == track->sessionId() && !track->isInvalid()) {
199181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return AudioSystem::getStrategyForStream(track->streamType());
199281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
199381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
199481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
199581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
199681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
199781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
199881784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput() const
199981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
200081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
200181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return mOutput;
200281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
200381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
200481784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
200581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
200681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
200781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioStreamOut *output = mOutput;
200881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mOutput = NULL;
200981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME FastMixer might also have a raw ptr to mOutputSink;
201081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //       must push a NULL and wait for ack
201181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mOutputSink.clear();
201281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mPipeSink.clear();
201381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mNormalSink.clear();
201481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return output;
201581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
201681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
201781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// this method must always be called either with ThreadBase mLock held or inside the thread loop
201881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentaudio_stream_t* AudioFlinger::PlaybackThread::stream() const
201981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
202081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mOutput == NULL) {
202181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return NULL;
202281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
202381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return &mOutput->stream->common;
202481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
202581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
202681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs() const
202781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
202881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return (uint32_t)((uint32_t)((mNormalFrameCount * 1000) / mSampleRate) * 1000);
202981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
203081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
203181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::PlaybackThread::setSyncEvent(const sp<SyncEvent>& event)
203281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
203381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!isValidSyncEvent(event)) {
203481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return BAD_VALUE;
203581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
203681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
203781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
203881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
203981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mTracks.size(); ++i) {
204081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<Track> track = mTracks[i];
204181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (event->triggerSession() == track->sessionId()) {
204281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            (void) track->setSyncEvent(event);
204381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return NO_ERROR;
204481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
204581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
204681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
204781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return NAME_NOT_FOUND;
204881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
204981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
205081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentbool AudioFlinger::PlaybackThread::isValidSyncEvent(const sp<SyncEvent>& event) const
205181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
205281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return event->type() == AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE;
205381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
205481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
205581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::threadLoop_removeTracks(
205681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const Vector< sp<Track> >& tracksToRemove)
205781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
205881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t count = tracksToRemove.size();
205934fca34606b448e6b71c2942f63cb13a0aebd620Glenn Kasten    if (count > 0) {
206081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        for (size_t i = 0 ; i < count ; i++) {
206181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            const sp<Track>& track = tracksToRemove.itemAt(i);
206283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            if (track->isExternalTrack()) {
206381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioSystem::stopOutput(mId, track->streamType(), track->sessionId());
2064bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent#ifdef ADD_BATTERY_DATA
2065bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // to track the speaker usage
2066bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
2067bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent#endif
2068bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (track->isTerminated()) {
2069bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    AudioSystem::releaseOutput(mId);
2070bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
207181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
207281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
207381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
207481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
207581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
207681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::checkSilentMode_l()
207781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
207881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!mMasterMute) {
207981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        char value[PROPERTY_VALUE_MAX];
208081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (property_get("ro.audio.silent", value, "0") > 0) {
208181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            char *endptr;
208281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            unsigned long ul = strtoul(value, &endptr, 0);
208381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (*endptr == '\0' && ul != 0) {
208481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGD("Silence is golden");
208581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // The setprop command will not allow a property to be changed after
208681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // the first time it is set, so we don't have to worry about un-muting.
208781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                setMasterMute_l(true);
208881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
208981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
209081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
209181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
209281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
209381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// shared by MIXER and DIRECT, overridden by DUPLICATING
2094bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentssize_t AudioFlinger::PlaybackThread::threadLoop_write()
209581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
209681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME rewrite to reduce number of system calls
209781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mLastWriteTime = systemTime();
209881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mInWrite = true;
2099bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    ssize_t bytesWritten;
2100010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    const size_t offset = mCurrentWriteLength - mBytesRemaining;
210181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
210281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // If an NBAIO sink is present, use it to write the normal mixer's submix
210381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mNormalSink != 0) {
2104010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        const size_t count = mBytesRemaining / mFrameSize;
2105010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung
21062d590964aa58e137d17a43e095e6443dd0fe2e98Simon Wilson        ATRACE_BEGIN("write");
210781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // update the setpoint when AudioFlinger::mScreenState changes
210881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t screenState = AudioFlinger::mScreenState;
210981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (screenState != mScreenState) {
211081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mScreenState = screenState;
211181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
211281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (pipe != NULL) {
211381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                pipe->setAvgFrames((mScreenState & 1) ?
211481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        (pipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
211581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
211681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
2117010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        ssize_t framesWritten = mNormalSink->write((char *)mSinkBuffer + offset, count);
21182d590964aa58e137d17a43e095e6443dd0fe2e98Simon Wilson        ATRACE_END();
211981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (framesWritten > 0) {
2120010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung            bytesWritten = framesWritten * mFrameSize;
212181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
212281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bytesWritten = framesWritten;
212381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
2124767094dd98b01baf21de2ad09c27b3c98776cf73Glenn Kasten        status_t status = mNormalSink->getTimestamp(mLatchD.mTimestamp);
2125bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten        if (status == NO_ERROR) {
2126bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten            size_t totalFramesWritten = mNormalSink->framesWritten();
2127bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten            if (totalFramesWritten >= mLatchD.mTimestamp.mPosition) {
2128bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten                mLatchD.mUnpresentedFrames = totalFramesWritten - mLatchD.mTimestamp.mPosition;
2129bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten                mLatchDValid = true;
2130bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten            }
2131bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten        }
213281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // otherwise use the HAL / AudioStreamOut directly
213381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
2134bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        // Direct output and offload threads
2135010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung
2136bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (mUseAsyncWrite) {
21373b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            ALOGW_IF(mWriteAckSequence & 1, "threadLoop_write(): out of sequence write request");
21383b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mWriteAckSequence += 2;
21393b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mWriteAckSequence |= 1;
2140bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            ALOG_ASSERT(mCallbackThread != 0);
21413b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mCallbackThread->setWriteBlocked(mWriteAckSequence);
2142bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
2143767094dd98b01baf21de2ad09c27b3c98776cf73Glenn Kasten        // FIXME We should have an implementation of timestamps for direct output threads.
2144767094dd98b01baf21de2ad09c27b3c98776cf73Glenn Kasten        // They are used e.g for multichannel PCM playback over HDMI.
2145bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        bytesWritten = mOutput->stream->write(mOutput->stream,
21462098f2744cedf2dc3fa36f608aa965a34602e7c0Andy Hung                                                   (char *)mSinkBuffer + offset, mBytesRemaining);
2147bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (mUseAsyncWrite &&
2148bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                ((bytesWritten < 0) || (bytesWritten == (ssize_t)mBytesRemaining))) {
2149bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // do not wait for async callback in case of error of full write
21503b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mWriteAckSequence &= ~1;
2151bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            ALOG_ASSERT(mCallbackThread != 0);
21523b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mCallbackThread->setWriteBlocked(mWriteAckSequence);
2153bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
215481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
215581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
215681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mNumWrites++;
215781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mInWrite = false;
2158fd4779740ec3e9e865d5514464df26d015354388Eric Laurent    mStandby = false;
2159bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return bytesWritten;
2160bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
2161bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
2162bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::PlaybackThread::threadLoop_drain()
2163bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
2164bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (mOutput->stream->drain) {
2165bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        ALOGV("draining %s", (mMixerStatus == MIXER_DRAIN_TRACK) ? "early" : "full");
2166bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (mUseAsyncWrite) {
21673b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            ALOGW_IF(mDrainSequence & 1, "threadLoop_drain(): out of sequence drain request");
21683b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mDrainSequence |= 1;
2169bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            ALOG_ASSERT(mCallbackThread != 0);
21703b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mCallbackThread->setDraining(mDrainSequence);
2171bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
2172bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mOutput->stream->drain(mOutput->stream,
2173bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            (mMixerStatus == MIXER_DRAIN_TRACK) ? AUDIO_DRAIN_EARLY_NOTIFY
2174bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                                                : AUDIO_DRAIN_ALL);
2175bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
2176bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
2177bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
2178bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::PlaybackThread::threadLoop_exit()
2179bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
2180bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // Default implementation has nothing to do
218181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
218281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
218381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent/*
218481784c37c61b09289654b979567a42bf73cd2b12Eric LaurentThe derived values that are cached:
218525c2dac12114699e90deb1c579cadebce7b91a97Andy Hung - mSinkBufferSize from frame count * frame size
218681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - activeSleepTime from activeSleepTimeUs()
218781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - idleSleepTime from idleSleepTimeUs()
218881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - standbyDelay from mActiveSleepTimeUs (DIRECT only)
218981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - maxPeriod from frame count and sample rate (MIXER only)
219081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
219181784c37c61b09289654b979567a42bf73cd2b12Eric LaurentThe parameters that affect these derived values are:
219281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - frame count
219381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - frame size
219481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - sample rate
219581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - device type: A2DP or not
219681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - device latency
219781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - format: PCM or not
219881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - active sleep time
219981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent - idle sleep time
220081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent*/
220181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
220281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::cacheParameters_l()
220381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
220425c2dac12114699e90deb1c579cadebce7b91a97Andy Hung    mSinkBufferSize = mNormalFrameCount * mFrameSize;
220581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    activeSleepTime = activeSleepTimeUs();
220681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    idleSleepTime = idleSleepTimeUs();
220781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
220881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
220981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::invalidateTracks(audio_stream_type_t streamType)
221081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
22117c027248e1a4ccd5b22bc4deafb03e2d87ac8f38Glenn Kasten    ALOGV("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
221281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            this,  streamType, mTracks.size());
221381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
221481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
221581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t size = mTracks.size();
221681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < size; i++) {
221781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<Track> t = mTracks[i];
221881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (t->streamType() == streamType) {
22195736c35b841de56ce394b4879389f669b61425e6Glenn Kasten            t->invalidate();
222081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
222181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
222281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
222381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
222481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
222581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
222681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int session = chain->sessionId();
2227010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    int16_t* buffer = reinterpret_cast<int16_t*>(mEffectBufferEnabled
2228010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung            ? mEffectBuffer : mSinkBuffer);
222981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool ownsBuffer = false;
223081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
223181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
223281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (session > 0) {
223381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Only one effect chain can be present in direct output thread and it uses
22342098f2744cedf2dc3fa36f608aa965a34602e7c0Andy Hung        // the sink buffer as input
223581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mType != DIRECT) {
223681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            size_t numSamples = mNormalFrameCount * mChannelCount;
223781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            buffer = new int16_t[numSamples];
223881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            memset(buffer, 0, numSamples * sizeof(int16_t));
223981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
224081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ownsBuffer = true;
224181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
224281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
224381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Attach all tracks with same session ID to this chain.
224481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        for (size_t i = 0; i < mTracks.size(); ++i) {
224581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sp<Track> track = mTracks[i];
224681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (session == track->sessionId()) {
224781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(),
224881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        buffer);
224981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->setMainBuffer(buffer);
225081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                chain->incTrackCnt();
225181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
225281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
225381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
225481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // indicate all active tracks in the chain
225581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
225681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sp<Track> track = mActiveTracks[i].promote();
225781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (track == 0) {
225881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                continue;
225981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
226081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (session == track->sessionId()) {
226181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
226281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                chain->incActiveTrackCnt();
226381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
226481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
226581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
2266aaa44478a373232d8416657035a9020f9c7aa7c3Eric Laurent    chain->setThread(this);
226781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    chain->setInBuffer(buffer, ownsBuffer);
2268010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    chain->setOutBuffer(reinterpret_cast<int16_t*>(mEffectBufferEnabled
2269010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung            ? mEffectBuffer : mSinkBuffer));
227081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
227181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // chains list in order to be processed last as it contains output stage effects
227281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
227381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // session AUDIO_SESSION_OUTPUT_STAGE to be processed
227481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // after track specific effects and before output stage
227581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
227681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
227781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Effect chain for other sessions are inserted at beginning of effect
227881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // chains list to be processed before output mix effects. Relative order between other
227981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // sessions is not important
228081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t size = mEffectChains.size();
228181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t i = 0;
228281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (i = 0; i < size; i++) {
228381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mEffectChains[i]->sessionId() < session) {
228481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            break;
228581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
228681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
228781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mEffectChains.insertAt(chain, i);
228881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    checkSuspendOnAddEffectChain_l(chain);
228981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
229081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return NO_ERROR;
229181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
229281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
229381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsize_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
229481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
229581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int session = chain->sessionId();
229681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
229781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
229881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
229981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mEffectChains.size(); i++) {
230081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (chain == mEffectChains[i]) {
230181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mEffectChains.removeAt(i);
230281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // detach all active tracks from the chain
230381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
230481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<Track> track = mActiveTracks[i].promote();
230581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track == 0) {
230681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    continue;
230781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
230881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (session == track->sessionId()) {
230981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
231081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                            chain.get(), session);
231181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    chain->decActiveTrackCnt();
231281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
231381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
231481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
231581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // detach all tracks with same session ID from this chain
231681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            for (size_t i = 0; i < mTracks.size(); ++i) {
231781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<Track> track = mTracks[i];
231881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (session == track->sessionId()) {
2319010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                    track->setMainBuffer(reinterpret_cast<int16_t*>(mSinkBuffer));
232081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    chain->decTrackCnt();
232181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
232281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
232381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            break;
232481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
232581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
232681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return mEffectChains.size();
232781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
232881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
232981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::PlaybackThread::attachAuxEffect(
233081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
233181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
233281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
233381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return attachAuxEffect_l(track, EffectId);
233481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
233581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
233681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
233781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
233881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
233981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t status = NO_ERROR;
234081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
234181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (EffectId == 0) {
234281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        track->setAuxBuffer(0, NULL);
234381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
234481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
234581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
234681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (effect != 0) {
234781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
234881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
234981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
235081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                status = INVALID_OPERATION;
235181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
235281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
235381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status = BAD_VALUE;
235481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
235581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
235681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return status;
235781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
235881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
235981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
236081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
236181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mTracks.size(); ++i) {
236281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<Track> track = mTracks[i];
236381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (track->auxEffectId() == effectId) {
236481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            attachAuxEffect_l(track, 0);
236581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
236681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
236781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
236881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
236981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentbool AudioFlinger::PlaybackThread::threadLoop()
237081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
237181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector< sp<Track> > tracksToRemove;
237281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
237381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    standbyTime = systemTime();
237481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
237581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // MIXER
237681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    nsecs_t lastWarning = 0;
237781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
237881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // DUPLICATING
237981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME could this be made local to while loop?
238081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    writeFrames = 0;
238181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2382462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    int lastGeneration = 0;
2383462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
238481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    cacheParameters_l();
238581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sleepTime = idleSleepTime;
238681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
238781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mType == MIXER) {
238881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sleepTimeShift = 0;
238981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
239081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
239181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    CpuStats cpuStats;
239281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const String8 myName(String8::format("thread %p type %d TID %d", this, mType, gettid()));
239381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
239481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    acquireWakeLock();
239581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23969e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    // mNBLogWriter->log can only be called while thread mutex mLock is held.
23979e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    // So if you need to log when mutex is unlocked, set logString to a non-NULL string,
23989e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    // and then that string will be logged at the next convenient opportunity.
23999e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    const char *logString = NULL;
24009e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten
2401664539d25180ab8f77e0521533ea2821cf28985fEric Laurent    checkSilentMode_l();
2402664539d25180ab8f77e0521533ea2821cf28985fEric Laurent
240381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    while (!exitPending())
240481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    {
240581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        cpuStats.sample(myName);
240681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
240781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Vector< sp<EffectChain> > effectChains;
240881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
240981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        { // scope for mLock
241081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
241181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            Mutex::Autolock _l(mLock);
241281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2413021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent            processConfigEvents_l();
24141035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
24159e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten            if (logString != NULL) {
24169e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten                mNBLogWriter->logTimestamp();
24179e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten                mNBLogWriter->log(logString);
24189e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten                logString = NULL;
24199e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten            }
24209e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten
2421bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten            if (mLatchDValid) {
2422bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten                mLatchQ = mLatchD;
2423bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten                mLatchDValid = false;
2424bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten                mLatchQValid = true;
2425bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten            }
2426bd096fd9d8e5fc0e62f98807f4818a06f70d0812Glenn Kasten
242781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            saveOutputTracks();
2428bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (mSignalPending) {
2429bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // A signal was raised while we were unlocked
2430bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mSignalPending = false;
2431bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            } else if (waitingAsyncCallback_l()) {
2432bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (exitPending()) {
2433bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    break;
2434bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
2435bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                releaseWakeLock_l();
2436462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                mWakeLockUids.clear();
2437462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                mActiveTracksGeneration++;
2438bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                ALOGV("wait async completion");
2439bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mWaitWorkCV.wait(mLock);
2440bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                ALOGV("async completion/wake");
2441bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                acquireWakeLock_l();
2442972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent                standbyTime = systemTime() + standbyDelay;
2443972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent                sleepTime = 0;
2444ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent
2445ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent                continue;
2446ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent            }
2447ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent            if ((!mActiveTracks.size() && systemTime() > standbyTime) ||
2448bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                                   isSuspended()) {
2449bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // put audio hardware into standby after short delay
2450bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (shouldStandby_l()) {
245181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
245281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    threadLoop_standby();
245381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
245481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mStandby = true;
245581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
245681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
245781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
245881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // we're about to wait, flush the binder command buffer
245981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    IPCThreadState::self()->flushCommands();
246081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
246181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    clearOutputTracks();
246281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
246381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (exitPending()) {
246481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        break;
246581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
246681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
246781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    releaseWakeLock_l();
2468462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                    mWakeLockUids.clear();
2469462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                    mActiveTracksGeneration++;
247081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // wait until we have something to do...
247181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGV("%s going to sleep", myName.string());
247281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mWaitWorkCV.wait(mLock);
247381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGV("%s waking up", myName.string());
247481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    acquireWakeLock_l();
247581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
247681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mMixerStatus = MIXER_IDLE;
247781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mMixerStatusIgnoringFastTracks = MIXER_IDLE;
247881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mBytesWritten = 0;
2479bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    mBytesRemaining = 0;
248081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    checkSilentMode_l();
248181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
248281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    standbyTime = systemTime() + standbyDelay;
248381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    sleepTime = idleSleepTime;
248481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (mType == MIXER) {
248581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        sleepTimeShift = 0;
248681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
248781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
248881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    continue;
248981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
249081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
249181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // mMixerStatusIgnoringFastTracks is also updated internally
249281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mMixerStatus = prepareTracks_l(&tracksToRemove);
249381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2494462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            // compare with previously applied list
2495462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            if (lastGeneration != mActiveTracksGeneration) {
2496462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                // update wakelock
2497462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                updateWakeLockUids_l(mWakeLockUids);
2498462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                lastGeneration = mActiveTracksGeneration;
2499462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            }
2500462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen
250181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // prevent any changes in effect chain list and in each effect chain
250281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // during mixing and effect process as the audio buffers could be deleted
250381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // or modified if an effect is created or deleted
250481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            lockEffectChains_l(effectChains);
2505462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        } // mLock scope ends
250681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2507bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (mBytesRemaining == 0) {
2508bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mCurrentWriteLength = 0;
2509bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (mMixerStatus == MIXER_TRACKS_READY) {
2510bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // threadLoop_mix() sets mCurrentWriteLength
2511bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                threadLoop_mix();
2512bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            } else if ((mMixerStatus != MIXER_DRAIN_TRACK)
2513bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        && (mMixerStatus != MIXER_DRAIN_ALL)) {
2514bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // threadLoop_sleepTime sets sleepTime to 0 if data
2515bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // must be written to HAL
2516bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                threadLoop_sleepTime();
2517bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (sleepTime == 0) {
251825c2dac12114699e90deb1c579cadebce7b91a97Andy Hung                    mCurrentWriteLength = mSinkBufferSize;
2519bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
2520bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
252198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // Either threadLoop_mix() or threadLoop_sleepTime() should have set
252298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // mMixerBuffer with data if mMixerBufferValid is true and sleepTime == 0.
252398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // Merge mMixerBuffer data into mEffectBuffer (if any effects are valid)
252498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // or mSinkBuffer (if there are no effects).
252598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            //
252698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // This is done pre-effects computation; if effects change to
252798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // support higher precision, this needs to move.
252898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            //
252998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // mMixerBufferValid is only set true by MixerThread::prepareTracks_l().
253098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            // TODO use sleepTime == 0 as an additional condition.
253198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            if (mMixerBufferValid) {
253298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                void *buffer = mEffectBufferValid ? mEffectBuffer : mSinkBuffer;
253398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                audio_format_t format = mEffectBufferValid ? mEffectBufferFormat : mFormat;
253498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
253598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                memcpy_by_audio_format(buffer, format, mMixerBuffer, mMixerBufferFormat,
253698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                        mNormalFrameCount * mChannelCount);
253798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            }
253898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
2539bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mBytesRemaining = mCurrentWriteLength;
2540bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (isSuspended()) {
2541bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                sleepTime = suspendSleepTimeUs();
2542bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // simulate write to HAL when suspended
254325c2dac12114699e90deb1c579cadebce7b91a97Andy Hung                mBytesWritten += mSinkBufferSize;
2544bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mBytesRemaining = 0;
2545bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
254681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2547bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // only process effects if we're going to write
254859fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent            if (sleepTime == 0 && mType != OFFLOAD) {
2549bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                for (size_t i = 0; i < effectChains.size(); i ++) {
2550bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    effectChains[i]->process_l();
2551bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
255281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
255381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
255459fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent        // Process effect chains for offloaded thread even if no audio
255559fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent        // was read from audio track: process only updates effect state
255659fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent        // and thus does have to be synchronized with audio writes but may have
255759fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent        // to be called while waiting for async write callback
255859fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent        if (mType == OFFLOAD) {
255959fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent            for (size_t i = 0; i < effectChains.size(); i ++) {
256059fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent                effectChains[i]->process_l();
256159fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent            }
256259fe010bcc072597852454a2ec53d7b0a2002a3bEric Laurent        }
256381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
256498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // Only if the Effects buffer is enabled and there is data in the
256598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // Effects buffer (buffer valid), we need to
256698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // copy into the sink buffer.
256798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // TODO use sleepTime == 0 as an additional condition.
256898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        if (mEffectBufferValid) {
256998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            //ALOGV("writing effect buffer to sink buffer format %#x", mFormat);
257098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            memcpy_by_audio_format(mSinkBuffer, mFormat, mEffectBuffer, mEffectBufferFormat,
257198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                    mNormalFrameCount * mChannelCount);
257298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        }
257398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
257481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // enable changes in effect chain
257581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        unlockEffectChains(effectChains);
257681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2577bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (!waitingAsyncCallback()) {
2578bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // sleepTime == 0 means we must write to audio hardware
2579bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (sleepTime == 0) {
2580bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (mBytesRemaining) {
2581bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    ssize_t ret = threadLoop_write();
2582bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    if (ret < 0) {
2583bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        mBytesRemaining = 0;
2584bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    } else {
2585bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        mBytesWritten += ret;
2586bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        mBytesRemaining -= ret;
2587bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    }
2588bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                } else if ((mMixerStatus == MIXER_DRAIN_TRACK) ||
2589bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        (mMixerStatus == MIXER_DRAIN_ALL)) {
2590bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    threadLoop_drain();
2591bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
25924944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                if (mType == MIXER) {
25934944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                    // write blocked detection
25944944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                    nsecs_t now = systemTime();
25954944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                    nsecs_t delta = now - mLastWriteTime;
25964944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                    if (!mStandby && delta > maxPeriod) {
25974944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                        mNumDelayedWrites++;
25984944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                        if ((now - lastWarning) > kWarningThrottleNs) {
25994944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                            ATRACE_NAME("underrun");
26004944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                            ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
26014944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                                    ns2ms(delta), mNumDelayedWrites, this);
26024944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                            lastWarning = now;
26034944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                        }
2604bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    }
260581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
260681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2607bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            } else {
2608bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                usleep(sleepTime);
2609bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
261081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
261181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
261281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Finally let go of removed track(s), without the lock held
261381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // since we can't guarantee the destructors won't acquire that
261481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // same lock.  This will also mutate and push a new fast mixer state.
261581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        threadLoop_removeTracks(tracksToRemove);
261681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        tracksToRemove.clear();
261781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
261881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // FIXME I don't understand the need for this here;
261981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //       it was in the original code but maybe the
262081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //       assignment in saveOutputTracks() makes this unnecessary?
262181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        clearOutputTracks();
262281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
262381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Effect chains will be actually deleted here if they were removed from
262481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mEffectChains list during mixing or effects processing
262581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        effectChains.clear();
262681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
262781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // FIXME Note that the above .clear() is no longer necessary since effectChains
262881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // is now local to this block, but will keep it for now (at least until merge done).
262981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
263081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2631bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    threadLoop_exit();
2632bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
2633cf817a2330936947df94c11859f48771f5596a59Eric Laurent    if (!mStandby) {
2634cf817a2330936947df94c11859f48771f5596a59Eric Laurent        threadLoop_standby();
2635cf817a2330936947df94c11859f48771f5596a59Eric Laurent        mStandby = true;
263681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
263781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
263881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    releaseWakeLock();
2639462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    mWakeLockUids.clear();
2640462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen    mActiveTracksGeneration++;
264181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
264281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("Thread %p type %d exiting", this, mType);
264381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return false;
264481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
264581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2646bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent// removeTracks_l() must be called with ThreadBase::mLock held
2647bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::PlaybackThread::removeTracks_l(const Vector< sp<Track> >& tracksToRemove)
2648bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
2649bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    size_t count = tracksToRemove.size();
265034fca34606b448e6b71c2942f63cb13a0aebd620Glenn Kasten    if (count > 0) {
2651bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        for (size_t i=0 ; i<count ; i++) {
2652bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            const sp<Track>& track = tracksToRemove.itemAt(i);
2653bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mActiveTracks.remove(track);
2654462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            mWakeLockUids.remove(track->uid());
2655462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen            mActiveTracksGeneration++;
2656bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            ALOGV("removeTracks_l removing track on session %d", track->sessionId());
2657bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            sp<EffectChain> chain = getEffectChain_l(track->sessionId());
2658bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (chain != 0) {
2659bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                ALOGV("stopping track on chain %p for session Id: %d", chain.get(),
2660bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        track->sessionId());
2661bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                chain->decActiveTrackCnt();
2662bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
2663bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (track->isTerminated()) {
2664bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                removeTrack_l(track);
2665bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
2666bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
2667bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
2668bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
2669bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
267081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2671accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurentstatus_t AudioFlinger::PlaybackThread::getTimestamp_l(AudioTimestamp& timestamp)
2672accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent{
2673accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent    if (mNormalSink != 0) {
2674accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent        return mNormalSink->getTimestamp(timestamp);
2675accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent    }
2676ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent    if ((mType == OFFLOAD || mType == DIRECT) && mOutput->stream->get_presentation_position) {
2677accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent        uint64_t position64;
2678accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent        int ret = mOutput->stream->get_presentation_position(
2679accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent                                                mOutput->stream, &position64, &timestamp.mTime);
2680accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent        if (ret == 0) {
2681accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent            timestamp.mPosition = (uint32_t)position64;
2682accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent            return NO_ERROR;
2683accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent        }
2684accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent    }
2685accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent    return INVALID_OPERATION;
2686accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent}
26871c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
26881c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurentstatus_t AudioFlinger::PlaybackThread::createAudioPatch_l(const struct audio_patch *patch,
26891c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                                          audio_patch_handle_t *handle)
26901c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent{
26911c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    status_t status = NO_ERROR;
26921c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    if (mOutput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
26931c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        // store new device and send to effects
26941c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_devices_t type = AUDIO_DEVICE_NONE;
26951c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        for (unsigned int i = 0; i < patch->num_sinks; i++) {
26961c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            type |= patch->sinks[i].ext.device.type;
26971c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
26981c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        mOutDevice = type;
26991c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        for (size_t i = 0; i < mEffectChains.size(); i++) {
27001c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mEffectChains[i]->setDevice_l(mOutDevice);
27011c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
27021c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
27031c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_hw_device_t *hwDevice = mOutput->audioHwDev->hwDevice();
27041c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        status = hwDevice->create_audio_patch(hwDevice,
27051c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->num_sources,
27061c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->sources,
27071c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->num_sinks,
27081c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->sinks,
27091c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               handle);
27101c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    } else {
27111c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        ALOG_ASSERT(false, "createAudioPatch_l() called on a pre 3.0 HAL");
27121c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    }
27131c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    return status;
27141c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent}
27151c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
27161c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurentstatus_t AudioFlinger::PlaybackThread::releaseAudioPatch_l(const audio_patch_handle_t handle)
27171c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent{
27181c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    status_t status = NO_ERROR;
27191c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    if (mOutput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
27201c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_hw_device_t *hwDevice = mOutput->audioHwDev->hwDevice();
27211c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        status = hwDevice->release_audio_patch(hwDevice, handle);
27221c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    } else {
27231c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        ALOG_ASSERT(false, "releaseAudioPatch_l() called on a pre 3.0 HAL");
27241c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    }
27251c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    return status;
27261c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent}
27271c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
272883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::PlaybackThread::addPatchTrack(const sp<PatchTrack>& track)
272983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
273083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    Mutex::Autolock _l(mLock);
273183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    mTracks.add(track);
273283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
273383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
273483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::PlaybackThread::deletePatchTrack(const sp<PatchTrack>& track)
273583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
273683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    Mutex::Autolock _l(mLock);
273783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    destroyTrack_l(track);
273883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
273983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
274083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::PlaybackThread::getAudioPortConfig(struct audio_port_config *config)
274183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
274283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    ThreadBase::getAudioPortConfig(config);
274383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->role = AUDIO_PORT_ROLE_SOURCE;
274483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->ext.mix.hw_module = mOutput->audioHwDev->handle();
274583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->ext.mix.usecase.stream = AUDIO_STREAM_DEFAULT;
274683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
274783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
274881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
274981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
275081784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
275181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_io_handle_t id, audio_devices_t device, type_t type)
275281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    :   PlaybackThread(audioFlinger, output, id, device, type),
275381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mAudioMixer below
275481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mFastMixer below
275581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mFastMixerFutex(0)
275681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mOutputSink below
275781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mPipeSink below
275881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mNormalSink below
275981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
276081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("MixerThread() id=%d device=%#x type=%d", id, device, type);
2761f6ed423af92a56ef54bba23eba883b1f21448b54Glenn Kasten    ALOGV("mSampleRate=%u, mChannelMask=%#x, mChannelCount=%u, mFormat=%d, mFrameSize=%u, "
276281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            "mFrameCount=%d, mNormalFrameCount=%d",
276381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mSampleRate, mChannelMask, mChannelCount, mFormat, mFrameSize, mFrameCount,
276481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mNormalFrameCount);
276581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
276681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
276781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // create an NBAIO sink for the HAL output stream, and negotiate
276881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mOutputSink = new AudioStreamOutSink(output->stream);
276981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t numCounterOffers = 0;
2770f69f9869514730aebe5724c461768507084dfff7Glenn Kasten    const NBAIO_Format offers[1] = {Format_from_SR_C(mSampleRate, mChannelCount, mFormat)};
277181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ssize_t index = mOutputSink->negotiate(offers, 1, NULL, numCounterOffers);
277281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOG_ASSERT(index == 0);
277381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
277481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // initialize fast mixer depending on configuration
277581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool initFastMixer;
277681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    switch (kUseFastMixer) {
277781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Never:
277881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        initFastMixer = false;
277981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
278081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Always:
278181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        initFastMixer = true;
278281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
278381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Static:
278481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Dynamic:
278581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        initFastMixer = mFrameCount < mNormalFrameCount;
278681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
278781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
278881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (initFastMixer) {
27891258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        audio_format_t fastMixerFormat;
27901258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        if (mMixerBufferEnabled && mEffectBufferEnabled) {
27911258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            fastMixerFormat = AUDIO_FORMAT_PCM_FLOAT;
27921258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        } else {
27931258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            fastMixerFormat = AUDIO_FORMAT_PCM_16_BIT;
27941258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        }
27951258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        if (mFormat != fastMixerFormat) {
27961258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            // change our Sink format to accept our intermediate precision
27971258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            mFormat = fastMixerFormat;
27981258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            free(mSinkBuffer);
27991258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            mFrameSize = mChannelCount * audio_bytes_per_sample(mFormat);
28001258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            const size_t sinkBufferSize = mNormalFrameCount * mFrameSize;
28011258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung            (void)posix_memalign(&mSinkBuffer, 32, sinkBufferSize);
28021258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        }
280381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
280481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // create a MonoPipe to connect our submix to FastMixer
280581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        NBAIO_Format format = mOutputSink->format();
2806ba0b34c18da93681c0813ecdab19b0e215b6d261Glenn Kasten        NBAIO_Format origformat = format;
28071258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        // adjust format to match that of the Fast Mixer
28081258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        format.mFormat = fastMixerFormat;
28091258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung        format.mFrameSize = audio_bytes_per_sample(format.mFormat) * format.mChannelCount;
28101258c1ab592a899fabb1e31eb5db2ef413b6f38aAndy Hung
281181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // This pipe depth compensates for scheduling latency of the normal mixer thread.
281281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // When it wakes up after a maximum latency, it runs a few cycles quickly before
281381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // finally blocking.  Note the pipe implementation rounds up the request to a power of 2.
281481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        MonoPipe *monoPipe = new MonoPipe(mNormalFrameCount * 4, format, true /*writeCanBlock*/);
281581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const NBAIO_Format offers[1] = {format};
281681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        size_t numCounterOffers = 0;
281781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ssize_t index = monoPipe->negotiate(offers, 1, NULL, numCounterOffers);
281881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(index == 0);
281981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        monoPipe->setAvgFrames((mScreenState & 1) ?
282081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                (monoPipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
282181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mPipeSink = monoPipe;
282281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
282346909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
2824da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten        if (mTeeSinkOutputEnabled) {
2825da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            // create a Pipe to archive a copy of FastMixer's output for dumpsys
2826ba0b34c18da93681c0813ecdab19b0e215b6d261Glenn Kasten            Pipe *teeSink = new Pipe(mTeeSinkOutputFrames, origformat);
2827ba0b34c18da93681c0813ecdab19b0e215b6d261Glenn Kasten            const NBAIO_Format offers2[1] = {origformat};
2828da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            numCounterOffers = 0;
2829ba0b34c18da93681c0813ecdab19b0e215b6d261Glenn Kasten            index = teeSink->negotiate(offers2, 1, NULL, numCounterOffers);
2830da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            ALOG_ASSERT(index == 0);
2831da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            mTeeSink = teeSink;
2832da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            PipeReader *teeSource = new PipeReader(*teeSink);
2833da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            numCounterOffers = 0;
2834ba0b34c18da93681c0813ecdab19b0e215b6d261Glenn Kasten            index = teeSource->negotiate(offers2, 1, NULL, numCounterOffers);
2835da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            ALOG_ASSERT(index == 0);
2836da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten            mTeeSource = teeSource;
2837da6ef1320d0161b1640dc84d7a9c5a25860c3619Glenn Kasten        }
283846909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
283981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
284081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // create fast mixer and configure it initially with just one fast track for our submix
284181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mFastMixer = new FastMixer();
284281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerStateQueue *sq = mFastMixer->sq();
284381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef STATE_QUEUE_DUMP
284481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->setObserverDump(&mStateQueueObserverDump);
284581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->setMutatorDump(&mStateQueueMutatorDump);
284681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
284781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerState *state = sq->begin();
284881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastTrack *fastTrack = &state->mFastTracks[0];
284981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // wrap the source side of the MonoPipe to make it an AudioBufferProvider
285081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        fastTrack->mBufferProvider = new SourceAudioBufferProvider(new MonoPipeReader(monoPipe));
285181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        fastTrack->mVolumeProvider = NULL;
2852e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung        fastTrack->mChannelMask = mChannelMask; // mPipeSink channel mask for audio to FastMixer
2853e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung        fastTrack->mFormat = mFormat; // mPipeSink format for audio to FastMixer
285481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        fastTrack->mGeneration++;
285581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mFastTracksGen++;
285681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mTrackMask = 1;
285781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // fast mixer will use the HAL output sink
285881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mOutputSink = mOutputSink.get();
285981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mOutputSinkGen++;
286081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mFrameCount = mFrameCount;
286181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mCommand = FastMixerState::COLD_IDLE;
286281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // already done in constructor initialization list
286381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        //mFastMixerFutex = 0;
286481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mColdFutexAddr = &mFastMixerFutex;
286581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mColdGen++;
286681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mDumpState = &mFastMixerDumpState;
286746909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
286881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mTeeSink = mTeeSink.get();
286946909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
28709e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten        mFastMixerNBLogWriter = audioFlinger->newWriter_l(kFastMixerLogSize, "FastMixer");
28719e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten        state->mNBLogWriter = mFastMixerNBLogWriter.get();
287281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->end();
287381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
287481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
287581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // start the fast mixer
287681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mFastMixer->run("FastMixer", PRIORITY_URGENT_AUDIO);
287781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        pid_t tid = mFastMixer->getTid();
287881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
287981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (err != 0) {
288081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
288181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    kPriorityFastMixer, getpid_cached, tid, err);
288281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
288381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
288481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef AUDIO_WATCHDOG
288581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // create and start the watchdog
288681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioWatchdog = new AudioWatchdog();
288781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioWatchdog->setDump(&mAudioWatchdogDump);
288881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioWatchdog->run("AudioWatchdog", PRIORITY_URGENT_AUDIO);
288981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        tid = mAudioWatchdog->getTid();
289081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
289181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (err != 0) {
289281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
289381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    kPriorityFastMixer, getpid_cached, tid, err);
289481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
289581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
289681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
289781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
289881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
289981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    switch (kUseFastMixer) {
290081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Never:
290181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Dynamic:
290281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mNormalSink = mOutputSink;
290381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
290481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Always:
290581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mNormalSink = mPipeSink;
290681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
290781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case FastMixer_Static:
290881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mNormalSink = initFastMixer ? mPipeSink : mOutputSink;
290981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
291081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
291181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
291281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
291381784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::MixerThread::~MixerThread()
291481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
29154d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    if (mFastMixer != 0) {
291681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerStateQueue *sq = mFastMixer->sq();
291781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerState *state = sq->begin();
291881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (state->mCommand == FastMixerState::COLD_IDLE) {
291981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int32_t old = android_atomic_inc(&mFastMixerFutex);
292081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (old == -1) {
2921ee499291404a192b059f2e04c5afc65aa6cdd74cElliott Hughes                (void) syscall(__NR_futex, &mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
292281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
292381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
292481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mCommand = FastMixerState::EXIT;
292581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->end();
292681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
292781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mFastMixer->join();
292881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Though the fast mixer thread has exited, it's state queue is still valid.
292981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // We'll use that extract the final state which contains one remaining fast track
293081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // corresponding to our sub-mix.
293181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state = sq->begin();
293281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(state->mTrackMask == 1);
293381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastTrack *fastTrack = &state->mFastTracks[0];
293481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(fastTrack->mBufferProvider != NULL);
293581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        delete fastTrack->mBufferProvider;
293681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->end(false /*didModify*/);
29374d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten        mFastMixer.clear();
293881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef AUDIO_WATCHDOG
293981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mAudioWatchdog != 0) {
294081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioWatchdog->requestExit();
294181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioWatchdog->requestExitAndWait();
294281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioWatchdog.clear();
294381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
294481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
294581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
29469e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    mAudioFlinger->unregisterWriter(mFastMixerNBLogWriter);
294781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    delete mAudioMixer;
294881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
294981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
295081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
295181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::MixerThread::correctLatency_l(uint32_t latency) const
295281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
29534d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    if (mFastMixer != 0) {
295481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
295581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        latency += (pipe->getAvgFrames() * 1000) / mSampleRate;
295681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
295781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return latency;
295881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
295981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
296081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
296181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove)
296281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
296381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    PlaybackThread::threadLoop_removeTracks(tracksToRemove);
296481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
296581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2966bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentssize_t AudioFlinger::MixerThread::threadLoop_write()
296781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
296881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME we should only do one push per cycle; confirm this is true
296981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Start the fast mixer if it's not already running
29704d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    if (mFastMixer != 0) {
297181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerStateQueue *sq = mFastMixer->sq();
297281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerState *state = sq->begin();
297381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (state->mCommand != FastMixerState::MIX_WRITE &&
297481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                (kUseFastMixer != FastMixer_Dynamic || state->mTrackMask > 1)) {
297581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (state->mCommand == FastMixerState::COLD_IDLE) {
297681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                int32_t old = android_atomic_inc(&mFastMixerFutex);
297781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (old == -1) {
2978ee499291404a192b059f2e04c5afc65aa6cdd74cElliott Hughes                    (void) syscall(__NR_futex, &mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
297981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
298081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef AUDIO_WATCHDOG
298181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (mAudioWatchdog != 0) {
298281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mAudioWatchdog->resume();
298381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
298481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
298581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
298681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mCommand = FastMixerState::MIX_WRITE;
29874182c4e2a07e2441fcd5c22eaff0ddfe7f826f61Glenn Kasten            mFastMixerDumpState.increaseSamplingN(mAudioFlinger->isLowRamDevice() ?
29884182c4e2a07e2441fcd5c22eaff0ddfe7f826f61Glenn Kasten                    FastMixerDumpState::kSamplingNforLowRamDevice : FastMixerDumpState::kSamplingN);
298981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sq->end();
299081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
299181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (kUseFastMixer == FastMixer_Dynamic) {
299281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mNormalSink = mPipeSink;
299381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
299481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
299581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sq->end(false /*didModify*/);
299681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
299781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
2998bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return PlaybackThread::threadLoop_write();
299981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
300081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
300181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::threadLoop_standby()
300281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
300381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Idle the fast mixer if it's currently running
30044d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    if (mFastMixer != 0) {
300581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerStateQueue *sq = mFastMixer->sq();
300681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerState *state = sq->begin();
300781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (!(state->mCommand & FastMixerState::IDLE)) {
300881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mCommand = FastMixerState::COLD_IDLE;
300981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mColdFutexAddr = &mFastMixerFutex;
301081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mColdGen++;
301181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mFastMixerFutex = 0;
301281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sq->end();
301381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // BLOCK_UNTIL_PUSHED would be insufficient, as we need it to stop doing I/O now
301481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
301581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (kUseFastMixer == FastMixer_Dynamic) {
301681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mNormalSink = mOutputSink;
301781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
301881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef AUDIO_WATCHDOG
301981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (mAudioWatchdog != 0) {
302081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mAudioWatchdog->pause();
302181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
302281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
302381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
302481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sq->end(false /*didModify*/);
302581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
302681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
302781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    PlaybackThread::threadLoop_standby();
302881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
302981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3030bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::PlaybackThread::waitingAsyncCallback_l()
3031bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
3032bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return false;
3033bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
3034bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3035bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::PlaybackThread::shouldStandby_l()
3036bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
3037bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return !mStandby;
3038bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
3039bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3040bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::PlaybackThread::waitingAsyncCallback()
3041bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
3042bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
3043bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return waitingAsyncCallback_l();
3044bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
3045bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
304681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// shared by MIXER and DIRECT, overridden by DUPLICATING
304781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::PlaybackThread::threadLoop_standby()
304881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
304981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("Audio hardware entering standby, mixer %p, suspend count %d", this, mSuspended);
305081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mOutput->stream->common.standby(&mOutput->stream->common);
3051bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (mUseAsyncWrite != 0) {
30523b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        // discard any pending drain or write ack by incrementing sequence
30533b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mWriteAckSequence = (mWriteAckSequence + 2) & ~1;
30543b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mDrainSequence = (mDrainSequence + 2) & ~1;
3055bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        ALOG_ASSERT(mCallbackThread != 0);
30563b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mCallbackThread->setWriteBlocked(mWriteAckSequence);
30573b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mCallbackThread->setDraining(mDrainSequence);
3058bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
305981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
306081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
30614c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew Georgevoid AudioFlinger::PlaybackThread::onAddNewTrack_l()
30624c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George{
30634c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    ALOGV("signal playback thread");
30644c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    broadcast_l();
30654c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George}
30664c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George
306781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::threadLoop_mix()
306881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
306981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // obtain the presentation timestamp of the next output buffer
307081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int64_t pts;
307181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t status = INVALID_OPERATION;
307281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
307381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mNormalSink != 0) {
307481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        status = mNormalSink->getNextWriteTimestamp(&pts);
307581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
307681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        status = mOutputSink->getNextWriteTimestamp(&pts);
307781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
307881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
307981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (status != NO_ERROR) {
308081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        pts = AudioBufferProvider::kInvalidPTS;
308181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
308281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
308381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mix buffers...
308481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mAudioMixer->process(pts);
308525c2dac12114699e90deb1c579cadebce7b91a97Andy Hung    mCurrentWriteLength = mSinkBufferSize;
308681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // increase sleep time progressively when application underrun condition clears.
308781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Only increase sleep time if the mixer is ready for two consecutive times to avoid
308881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // that a steady state of alternating ready/not ready conditions keeps the sleep time
308981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // such that we would underrun the audio HAL.
309081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if ((sleepTime == 0) && (sleepTimeShift > 0)) {
309181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sleepTimeShift--;
309281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
309381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sleepTime = 0;
309481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    standbyTime = systemTime() + standbyDelay;
309581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //TODO: delay standby when effects have a tail
309681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
309781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
309881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::threadLoop_sleepTime()
309981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
310081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // If no tracks are ready, sleep once for the duration of an output
310181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // buffer size, then write 0s to the output
310281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (sleepTime == 0) {
310381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
310481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sleepTime = activeSleepTime >> sleepTimeShift;
310581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (sleepTime < kMinThreadSleepTimeUs) {
310681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sleepTime = kMinThreadSleepTimeUs;
310781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
310881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // reduce sleep time in case of consecutive application underruns to avoid
310981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
311081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // duration we would end up writing less data than needed by the audio HAL if
311181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // the condition persists.
311281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (sleepTimeShift < kMaxThreadSleepTimeShift) {
311381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sleepTimeShift++;
311481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
311581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
311681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sleepTime = idleSleepTime;
311781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
311881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else if (mBytesWritten != 0 || (mMixerStatus == MIXER_TRACKS_ENABLED)) {
311998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // clear out mMixerBuffer or mSinkBuffer, to ensure buffers are cleared
312098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // before effects processing or output.
312198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        if (mMixerBufferValid) {
312298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            memset(mMixerBuffer, 0, mMixerBufferSize);
312398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        } else {
312498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            memset(mSinkBuffer, 0, mSinkBufferSize);
312598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        }
312681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sleepTime = 0;
312781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV_IF(mBytesWritten == 0 && (mMixerStatus == MIXER_TRACKS_ENABLED),
312881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                "anticipated start");
312981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
313081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // TODO add standby time extension fct of effect tail
313181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
313281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
313381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// prepareTracks_l() must be called with ThreadBase::mLock held
313481784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l(
313581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Vector< sp<Track> > *tracksToRemove)
313681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
313781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
313881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mixer_state mixerStatus = MIXER_IDLE;
313981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // find out which tracks need to be processed
314081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t count = mActiveTracks.size();
314181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t mixedTracks = 0;
314281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t tracksWithEffect = 0;
314381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // counts only _active_ fast tracks
314481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t fastTracks = 0;
314581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t resetMask = 0; // bit mask of fast tracks that need to be reset
314681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
314781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    float masterVolume = mMasterVolume;
314881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool masterMute = mMasterMute;
314981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
315081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (masterMute) {
315181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        masterVolume = 0;
315281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
315381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Delegate master volume control to effect in output mix effect chain if needed
315481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
315581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (chain != 0) {
315681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t v = (uint32_t)(masterVolume * (1 << 24));
315781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain->setVolume_l(&v, &v);
315881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        masterVolume = (float)((v + (1 << 23)) >> 24);
315981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        chain.clear();
316081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
316181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
316281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // prepare a new state to push
316381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixerStateQueue *sq = NULL;
316481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixerState *state = NULL;
316581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool didModify = false;
316681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    FastMixerStateQueue::block_t block = FastMixerStateQueue::BLOCK_UNTIL_PUSHED;
31674d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    if (mFastMixer != 0) {
316881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq = mFastMixer->sq();
316981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state = sq->begin();
317081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
317181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
317269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    mMixerBufferValid = false;  // mMixerBuffer has no valid data until appropriate tracks found.
317398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    mEffectBufferValid = false; // mEffectBuffer has no valid data until tracks found.
317469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
317581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i=0 ; i<count ; i++) {
31769fdcb0a9497ca290bcf364b10868587b6bde3a34Glenn Kasten        const sp<Track> t = mActiveTracks[i].promote();
317781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (t == 0) {
317881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            continue;
317981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
318081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
318181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // this const just means the local variable doesn't change
318281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Track* const track = t.get();
318381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
318481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // process fast tracks
318581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (track->isFastTrack()) {
318681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
318781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // It's theoretically possible (though unlikely) for a fast track to be created
318881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // and then removed within the same normal mix cycle.  This is not a problem, as
318981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // the track never becomes active so it's fast mixer slot is never touched.
319081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // The converse, of removing an (active) track and then creating a new track
319181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // at the identical fast mixer slot within the same normal mix cycle,
319281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // is impossible because the slot isn't marked available until the end of each cycle.
319381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int j = track->mFastIndex;
319481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOG_ASSERT(0 < j && j < (int)FastMixerState::kMaxFastTracks);
319581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOG_ASSERT(!(mFastTrackAvailMask & (1 << j)));
319681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            FastTrack *fastTrack = &state->mFastTracks[j];
319781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
319881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // Determine whether the track is currently in underrun condition,
319981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // and whether it had a recent underrun.
320081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            FastTrackDump *ftDump = &mFastMixerDumpState.mTracks[j];
320181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            FastTrackUnderruns underruns = ftDump->mUnderruns;
320281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            uint32_t recentFull = (underruns.mBitFields.mFull -
320381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mObservedUnderruns.mBitFields.mFull) & UNDERRUN_MASK;
320481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            uint32_t recentPartial = (underruns.mBitFields.mPartial -
320581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mObservedUnderruns.mBitFields.mPartial) & UNDERRUN_MASK;
320681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            uint32_t recentEmpty = (underruns.mBitFields.mEmpty -
320781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mObservedUnderruns.mBitFields.mEmpty) & UNDERRUN_MASK;
320881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            uint32_t recentUnderruns = recentPartial + recentEmpty;
320981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            track->mObservedUnderruns = underruns;
321081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // don't count underruns that occur while stopping or pausing
321181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // or stopped which can occur when flush() is called while active
321282aaf94a5b18939e4d790bbc752031f3070704a3Glenn Kasten            if (!(track->isStopping() || track->isPausing() || track->isStopped()) &&
321382aaf94a5b18939e4d790bbc752031f3070704a3Glenn Kasten                    recentUnderruns > 0) {
321482aaf94a5b18939e4d790bbc752031f3070704a3Glenn Kasten                // FIXME fast mixer will pull & mix partial buffers, but we count as a full underrun
321582aaf94a5b18939e4d790bbc752031f3070704a3Glenn Kasten                track->mAudioTrackServerProxy->tallyUnderrunFrames(recentUnderruns * mFrameCount);
321681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
321781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
321881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // This is similar to the state machine for normal tracks,
321981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // with a few modifications for fast tracks.
322081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            bool isActive = true;
322181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            switch (track->mState) {
322281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::STOPPING_1:
322381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // track stays active in STOPPING_1 state until first underrun
3224bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (recentUnderruns > 0 || track->isTerminated()) {
322581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mState = TrackBase::STOPPING_2;
322681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
322781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                break;
322881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::PAUSING:
322981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // ramp down is not yet implemented
323081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->setPaused();
323181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                break;
323281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::RESUMING:
323381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // ramp up is not yet implemented
323481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->mState = TrackBase::ACTIVE;
323581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                break;
323681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::ACTIVE:
323781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (recentFull > 0 || recentPartial > 0) {
323881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // track has provided at least some frames recently: reset retry count
323981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mRetryCount = kMaxTrackRetries;
324081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
324181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (recentUnderruns == 0) {
324281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // no recent underruns: stay active
324381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    break;
324481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
324581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // there has recently been an underrun of some kind
324681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->sharedBuffer() == 0) {
324781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // were any of the recent underruns "empty" (no frames available)?
324881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (recentEmpty == 0) {
324981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        // no, then ignore the partial underruns as they are allowed indefinitely
325081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        break;
325181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
325281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // there has recently been an "empty" underrun: decrement the retry counter
325381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (--(track->mRetryCount) > 0) {
325481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        break;
325581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
325681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // indicate to client process that the track was disabled because of underrun;
325781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // it will then automatically call start() when data is available
325896f60d8f04432a1ed503b3e24d5736d28c63c9a2Glenn Kasten                    android_atomic_or(CBLK_DISABLED, &track->mCblk->mFlags);
325981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // remove from active list, but state remains ACTIVE [confusing but true]
326081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    isActive = false;
326181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    break;
326281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
326381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // fall through
326481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::STOPPING_2:
326581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::PAUSED:
326681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::STOPPED:
326781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::FLUSHED:   // flush() while active
326881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Check for presentation complete if track is inactive
326981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // We have consumed all the buffers of this track.
327081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // This would be incomplete if we auto-paused on underrun
327181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                {
327281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    size_t audioHALFrames =
327381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                            (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
327481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    size_t framesWritten = mBytesWritten / mFrameSize;
327581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (!(mStandby || track->presentationComplete(framesWritten, audioHALFrames))) {
327681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        // track stays in active list until presentation is complete
327781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        break;
327881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
327981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
328081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->isStopping_2()) {
328181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mState = TrackBase::STOPPED;
328281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
328381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->isStopped()) {
328481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // Can't reset directly, as fast mixer is still polling this track
328581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    //   track->reset();
328681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // So instead mark this track as needing to be reset after push with ack
328781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    resetMask |= 1 << i;
328881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
328981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                isActive = false;
329081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                break;
329181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            case TrackBase::IDLE:
329281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            default:
3293adad3d7d935da176ff24941b4ae9edf7340e9b96Glenn Kasten                LOG_ALWAYS_FATAL("unexpected track state %d", track->mState);
329481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
329581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
329681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (isActive) {
329781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // was it previously inactive?
329881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (!(state->mTrackMask & (1 << j))) {
329981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ExtendedAudioBufferProvider *eabp = track;
330081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    VolumeProvider *vp = track;
330181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    fastTrack->mBufferProvider = eabp;
330281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    fastTrack->mVolumeProvider = vp;
330381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    fastTrack->mChannelMask = track->mChannelMask;
3304e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung                    fastTrack->mFormat = track->mFormat;
330581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    fastTrack->mGeneration++;
330681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    state->mTrackMask |= 1 << j;
330781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    didModify = true;
330881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // no acknowledgement required for newly active tracks
330981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
331081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // cache the combined master volume and stream type volume for fast mixer; this
331181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // lacks any synchronization or barrier so VolumeProvider may read a stale value
3312e4756fe3a387615acb63c6a05788c8db9b5786cbGlenn Kasten                track->mCachedVolume = masterVolume * mStreamTypes[track->streamType()].volume;
331381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ++fastTracks;
331481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
331581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // was it previously active?
331681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (state->mTrackMask & (1 << j)) {
331781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    fastTrack->mBufferProvider = NULL;
331881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    fastTrack->mGeneration++;
331981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    state->mTrackMask &= ~(1 << j);
332081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    didModify = true;
332181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // If any fast tracks were removed, we must wait for acknowledgement
332281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // because we're about to decrement the last sp<> on those tracks.
332381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
332481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                } else {
3325adad3d7d935da176ff24941b4ae9edf7340e9b96Glenn Kasten                    LOG_ALWAYS_FATAL("fast track %d should have been active", j);
332681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
332781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                tracksToRemove->add(track);
332881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Avoids a misleading display in dumpsys
332981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->mObservedUnderruns.mBitFields.mMostRecent = UNDERRUN_FULL;
333081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
333181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            continue;
333281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
333381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
333481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        {   // local variable scope to avoid goto warning
333581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
333681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_track_cblk_t* cblk = track->cblk();
333781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
333881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // The first time a track is added we wait
333981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // for all its buffers to be filled before processing it
334081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int name = track->name();
334181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // make sure that we have enough frames to mix one full buffer.
334281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // enforce this condition only once to enable draining the buffer in case the client
334381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // app does not call stop() and relies on underrun to stop:
334481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // hence the test on (mMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
334581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // during last round
33469f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten        size_t desiredFrames;
33479fdcb0a9497ca290bcf364b10868587b6bde3a34Glenn Kasten        uint32_t sr = track->sampleRate();
33489fdcb0a9497ca290bcf364b10868587b6bde3a34Glenn Kasten        if (sr == mSampleRate) {
33499f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            desiredFrames = mNormalFrameCount;
33509f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten        } else {
33519f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            // +1 for rounding and +1 for additional sample needed for interpolation
33529fdcb0a9497ca290bcf364b10868587b6bde3a34Glenn Kasten            desiredFrames = (mNormalFrameCount * sr) / mSampleRate + 1 + 1;
33539f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            // add frames already consumed but not yet released by the resampler
33542fc14730e4697a6f456b4631549c9981f6b0b115Glenn Kasten            // because mAudioTrackServerProxy->framesReady() will include these frames
33559f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            desiredFrames += mAudioMixer->getUnreleasedFrames(track->name());
335674935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten#if 0
33579f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            // the minimum track buffer size is normally twice the number of frames necessary
33589f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            // to fill one buffer and the resampler should not leave more than one buffer worth
33599f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            // of unreleased frames after each pass, but just in case...
33609f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            ALOG_ASSERT(desiredFrames <= cblk->frameCount_);
336174935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten#endif
33629f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten        }
336381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t minFrames = 1;
336481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if ((track->sharedBuffer() == 0) && !track->isStopped() && !track->isPausing() &&
336581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY)) {
33669f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            minFrames = desiredFrames;
33679f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten        }
336813e4c960ea3db03a43e084fbd85d52aa77f7b871Eric Laurent
336913e4c960ea3db03a43e084fbd85d52aa77f7b871Eric Laurent        size_t framesReady = track->framesReady();
33709f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten        if ((framesReady >= minFrames) && track->isReady() &&
337181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                !track->isPaused() && !track->isTerminated())
337281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        {
3373f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            ALOGVV("track %d s=%08x [OK] on thread %p", name, cblk->mServer, this);
337481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
337581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mixedTracks++;
337681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
337769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // track->mainBuffer() != mSinkBuffer or mMixerBuffer means
337869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // there is an effect chain connected to the track
337981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain.clear();
338069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            if (track->mainBuffer() != mSinkBuffer &&
338169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                    track->mainBuffer() != mMixerBuffer) {
338298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                if (mEffectBufferEnabled) {
338398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                    mEffectBufferValid = true; // Later can set directly.
338498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung                }
338581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                chain = getEffectChain_l(track->sessionId());
338681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Delegate volume control to effect in track effect chain if needed
338781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (chain != 0) {
338881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    tracksWithEffect++;
338981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                } else {
339081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on "
339181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                            "session %d",
339281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                            name, track->sessionId());
339381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
339481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
339581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
339681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
339781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            int param = AudioMixer::VOLUME;
339881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (track->mFillingUpStatus == Track::FS_FILLED) {
339981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // no ramp for the first volume setting
340081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->mFillingUpStatus = Track::FS_ACTIVE;
340181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->mState == TrackBase::RESUMING) {
340281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mState = TrackBase::ACTIVE;
340381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    param = AudioMixer::RAMP_VOLUME;
340481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
340581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
3406f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            // FIXME should not make a decision based on mServer
3407f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            } else if (cblk->mServer != 0) {
340881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // If the track is stopped before the first frame was mixed,
340981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // do not apply ramp
341081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                param = AudioMixer::RAMP_VOLUME;
341181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
341281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
341381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // compute volume for this track
34146be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung            uint32_t vl, vr;       // in U8.24 integer format
34156be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung            float vlf, vrf, vaf;   // in [0.0, 1.0] float format
3416e4756fe3a387615acb63c6a05788c8db9b5786cbGlenn Kasten            if (track->isPausing() || mStreamTypes[track->streamType()].mute) {
34176be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vl = vr = 0;
34186be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vlf = vrf = vaf = 0.;
341981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->isPausing()) {
342081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->setPaused();
342181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
342281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
342381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
342481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // read original volumes with volume control
342581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                float typeVolume = mStreamTypes[track->streamType()].volume;
342681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                float v = masterVolume * typeVolume;
34279f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten                AudioTrackServerProxy *proxy = track->mAudioTrackServerProxy;
3428c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                gain_minifloat_packed_t vlr = proxy->getVolumeLR();
34296be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vlf = float_from_gain(gain_minifloat_unpack_left(vlr));
34306be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vrf = float_from_gain(gain_minifloat_unpack_right(vlr));
343181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // track volumes come from shared memory, so can't be trusted and must be clamped
3432c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                if (vlf > GAIN_FLOAT_UNITY) {
3433c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                    ALOGV("Track left volume out of range: %.3g", vlf);
3434c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                    vlf = GAIN_FLOAT_UNITY;
343581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
3436c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                if (vrf > GAIN_FLOAT_UNITY) {
3437c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                    ALOGV("Track right volume out of range: %.3g", vrf);
3438c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten                    vrf = GAIN_FLOAT_UNITY;
343981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
344081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // now apply the master volume and stream type volume
34416be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vlf *= v;
34426be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vrf *= v;
344381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // assuming master volume and stream type volume each go up to 1.0,
34446be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                // then derive vl and vr as U8.24 versions for the effect chain
34456be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                const float scaleto8_24 = MAX_GAIN_INT * MAX_GAIN_INT;
34466be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vl = (uint32_t) (scaleto8_24 * vlf);
34476be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vr = (uint32_t) (scaleto8_24 * vrf);
34486be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                // vl and vr are now in U8.24 format
3449e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten                uint16_t sendLevel = proxy->getSendLevel_U4_12();
345081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // send level comes from shared memory and so may be corrupt
345181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (sendLevel > MAX_GAIN_INT) {
345281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGV("Track send level out of range: %04X", sendLevel);
345381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    sendLevel = MAX_GAIN_INT;
345481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
34556be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                // vaf is represented as [0.0, 1.0] float by rescaling sendLevel
34566be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung                vaf = v * sendLevel * (1. / MAX_GAIN_INT);
345781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
3458bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
345981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // Delegate volume control to effect in track effect chain if needed
346081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
346181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Do not ramp volume if volume is controlled by effect
346281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                param = AudioMixer::VOLUME;
3463b6be7f22a82ee3bad8bcc709d21e72fc4727da09Bryant Liu                // Update remaining floating point volume levels
3464b6be7f22a82ee3bad8bcc709d21e72fc4727da09Bryant Liu                vlf = (float)vl / (1 << 24);
3465b6be7f22a82ee3bad8bcc709d21e72fc4727da09Bryant Liu                vrf = (float)vr / (1 << 24);
346681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->mHasVolumeController = true;
346781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
346881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // force no volume ramp when volume controller was just disabled or removed
346981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // from effect chain to avoid volume spike
347081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->mHasVolumeController) {
347181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    param = AudioMixer::VOLUME;
347281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
347381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->mHasVolumeController = false;
347481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
347581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
347681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // XXX: these things DON'T need to be done each time
347781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->setBufferProvider(name, track);
347881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->enable(name);
347981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
34806be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung            mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, &vlf);
34816be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung            mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, &vrf);
34826be494077f8d7970f3a88129c5d139c5a0c88f6dAndy Hung            mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, &vaf);
348381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->setParameter(
348481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                name,
348581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::TRACK,
348681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::FORMAT, (void *)track->format());
348781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->setParameter(
348881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                name,
348981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::TRACK,
3490377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT                AudioMixer::CHANNEL_MASK, (void *)(uintptr_t)track->channelMask());
34919a59276fb465e492138e0576523b54079671e8f4Andy Hung            mAudioMixer->setParameter(
34929a59276fb465e492138e0576523b54079671e8f4Andy Hung                name,
34939a59276fb465e492138e0576523b54079671e8f4Andy Hung                AudioMixer::TRACK,
34949a59276fb465e492138e0576523b54079671e8f4Andy Hung                AudioMixer::MIXER_CHANNEL_MASK, (void *)(uintptr_t)mChannelMask);
3495e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten            // limit track sample rate to 2 x output sample rate, which changes at re-configuration
3496cd04484f4837b8ca0041d118286ab6a98e84fc75Andy Hung            uint32_t maxSampleRate = mSampleRate * AUDIO_RESAMPLER_DOWN_RATIO_MAX;
34979f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            uint32_t reqSampleRate = track->mAudioTrackServerProxy->getSampleRate();
3498e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten            if (reqSampleRate == 0) {
3499e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten                reqSampleRate = mSampleRate;
3500e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten            } else if (reqSampleRate > maxSampleRate) {
3501e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten                reqSampleRate = maxSampleRate;
3502e3aa659e9cee7df5c12a80d285cc29ab3b2cbb39Glenn Kasten            }
350381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->setParameter(
350481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                name,
350581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::RESAMPLE,
350681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::SAMPLE_RATE,
3507377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT                (void *)(uintptr_t)reqSampleRate);
350869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            /*
350969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             * Select the appropriate output buffer for the track.
351069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             *
351198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung             * Tracks with effects go into their own effects chain buffer
351298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung             * and from there into either mEffectBuffer or mSinkBuffer.
351369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             *
351469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             * Other tracks can use mMixerBuffer for higher precision
351569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             * channel accumulation.  If this buffer is enabled
351669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             * (mMixerBufferEnabled true), then selected tracks will accumulate
351769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             * into it.
351869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             *
351969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung             */
352069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            if (mMixerBufferEnabled
352169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                    && (track->mainBuffer() == mSinkBuffer
352269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                            || track->mainBuffer() == mMixerBuffer)) {
352369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                mAudioMixer->setParameter(
352469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        name,
352569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        AudioMixer::TRACK,
3526788207057ed4b8df4719ed8089f376ef52de9ca1Andy Hung                        AudioMixer::MIXER_FORMAT, (void *)mMixerBufferFormat);
352769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                mAudioMixer->setParameter(
352869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        name,
352969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        AudioMixer::TRACK,
353069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        AudioMixer::MAIN_BUFFER, (void *)mMixerBuffer);
353169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                // TODO: override track->mainBuffer()?
353269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                mMixerBufferValid = true;
353369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            } else {
353469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                mAudioMixer->setParameter(
353569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        name,
353669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        AudioMixer::TRACK,
3537788207057ed4b8df4719ed8089f376ef52de9ca1Andy Hung                        AudioMixer::MIXER_FORMAT, (void *)AUDIO_FORMAT_PCM_16_BIT);
353869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                mAudioMixer->setParameter(
353969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        name,
354069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        AudioMixer::TRACK,
354169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung                        AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
354269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            }
354381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->setParameter(
354481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                name,
354581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::TRACK,
354681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
354781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
354881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // reset retry count
354981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            track->mRetryCount = kMaxTrackRetries;
355081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
355181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // If one track is ready, set the mixer ready if:
355281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            //  - the mixer was not ready during previous round OR
355381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            //  - no other track is not ready
355481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (mMixerStatusIgnoringFastTracks != MIXER_TRACKS_READY ||
355581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mixerStatus != MIXER_TRACKS_ENABLED) {
355681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mixerStatus = MIXER_TRACKS_READY;
355781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
355881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
35599f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            if (framesReady < desiredFrames && !track->isStopped() && !track->isPaused()) {
356082aaf94a5b18939e4d790bbc752031f3070704a3Glenn Kasten                track->mAudioTrackServerProxy->tallyUnderrunFrames(desiredFrames);
35619f80dd223d83d9bb9077fb6baee056cee4eaf7e5Glenn Kasten            }
356281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // clear effect chain input buffer if an active track underruns to avoid sending
356381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // previous audio buffer again to effects
356481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain = getEffectChain_l(track->sessionId());
356581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (chain != 0) {
356681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                chain->clearInputBuffer();
356781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
356881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3569f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            ALOGVV("track %d s=%08x [NOT READY] on thread %p", name, cblk->mServer, this);
357081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if ((track->sharedBuffer() != 0) || track->isTerminated() ||
357181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->isStopped() || track->isPaused()) {
357281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // We have consumed all the buffers of this track.
357381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Remove it from the list of active tracks.
357481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // TODO: use actual buffer filling status instead of latency when available from
357581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // audio HAL
357681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                size_t audioHALFrames = (latency_l() * mSampleRate) / 1000;
357781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                size_t framesWritten = mBytesWritten / mFrameSize;
357881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (mStandby || track->presentationComplete(framesWritten, audioHALFrames)) {
357981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (track->isStopped()) {
358081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        track->reset();
358181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
358281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    tracksToRemove->add(track);
358381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
358481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
358581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // No buffers for this track. Give it a few chances to
358681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // fill a buffer, then remove it from active list.
358781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (--(track->mRetryCount) <= 0) {
3588c9b2e20f7c9a71e07ef398152709c76079decbcdGlenn Kasten                    ALOGI("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
358981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    tracksToRemove->add(track);
359081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // indicate to client process that the track was disabled because of underrun;
359181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    // it will then automatically call start() when data is available
359296f60d8f04432a1ed503b3e24d5736d28c63c9a2Glenn Kasten                    android_atomic_or(CBLK_DISABLED, &cblk->mFlags);
359381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // If one track is not ready, mark the mixer also not ready if:
359481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                //  - the mixer was ready during previous round OR
359581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                //  - no other track is ready
359681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                } else if (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY ||
359781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                mixerStatus != MIXER_TRACKS_READY) {
359881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mixerStatus = MIXER_TRACKS_ENABLED;
359981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
360081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
360181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mAudioMixer->disable(name);
360281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
360381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
360481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }   // local variable scope to avoid goto warning
360581784c37c61b09289654b979567a42bf73cd2b12Eric Laurenttrack_is_ready: ;
360681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
360781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
360881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
360981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Push the new FastMixer state if necessary
361081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool pauseAudioWatchdog = false;
361181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (didModify) {
361281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mFastTracksGen++;
361381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // if the fast mixer was active, but now there are no fast tracks, then put it in cold idle
361481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (kUseFastMixer == FastMixer_Dynamic &&
361581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                state->mCommand == FastMixerState::MIX_WRITE && state->mTrackMask <= 1) {
361681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mCommand = FastMixerState::COLD_IDLE;
361781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mColdFutexAddr = &mFastMixerFutex;
361881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            state->mColdGen++;
361981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mFastMixerFutex = 0;
362081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (kUseFastMixer == FastMixer_Dynamic) {
362181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mNormalSink = mOutputSink;
362281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
362381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // If we go into cold idle, need to wait for acknowledgement
362481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // so that fast mixer stops doing I/O.
362581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
362681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            pauseAudioWatchdog = true;
362781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
362881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
362981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (sq != NULL) {
363081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->end(didModify);
363181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->push(block);
363281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
363381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef AUDIO_WATCHDOG
363481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (pauseAudioWatchdog && mAudioWatchdog != 0) {
363581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioWatchdog->pause();
363681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
363781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
363881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
363981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Now perform the deferred reset on fast tracks that have stopped
364081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    while (resetMask != 0) {
364181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        size_t i = __builtin_ctz(resetMask);
364281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(i < count);
364381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        resetMask &= ~(1 << i);
364481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<Track> t = mActiveTracks[i].promote();
364581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (t == 0) {
364681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            continue;
364781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
364881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Track* track = t.get();
364981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(track->isFastTrack() && track->isStopped());
365081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        track->reset();
365181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
365281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
365381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // remove all the tracks that need to be...
3654bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    removeTracks_l(*tracksToRemove);
365581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
365697d547da43c9c41711d1ed1e3f4fa87c2ee3cb9aEric Laurent    if (getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX) != 0) {
365797d547da43c9c41711d1ed1e3f4fa87c2ee3cb9aEric Laurent        mEffectBufferValid = true;
365897d547da43c9c41711d1ed1e3f4fa87c2ee3cb9aEric Laurent    }
365997d547da43c9c41711d1ed1e3f4fa87c2ee3cb9aEric Laurent
366069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // sink or mix buffer must be cleared if all tracks are connected to an
366169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // effect chain as in this case the mixer will not write to the sink or mix buffer
366269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // and track effects will accumulate into it
3663bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if ((mBytesRemaining == 0) && ((mixedTracks != 0 && mixedTracks == tracksWithEffect) ||
3664bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            (mixedTracks == 0 && fastTracks > 0))) {
366581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // FIXME as a performance optimization, should remember previous zero status
366669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        if (mMixerBufferValid) {
366769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            memset(mMixerBuffer, 0, mMixerBufferSize);
366869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // TODO: In testing, mSinkBuffer below need not be cleared because
366969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // the PlaybackThread::threadLoop() copies mMixerBuffer into mSinkBuffer
367069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // after mixing.
367169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            //
367269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // To enforce this guarantee:
367369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // ((mixedTracks != 0 && mixedTracks == tracksWithEffect) ||
367469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // (mixedTracks == 0 && fastTracks > 0))
367569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // must imply MIXER_TRACKS_READY.
367669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung            // Later, we may clear buffers regardless, and skip much of this logic.
367769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung        }
367898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // TODO - either mEffectBuffer or mSinkBuffer needs to be cleared.
367998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        if (mEffectBufferValid) {
368098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung            memset(mEffectBuffer, 0, mEffectBufferSize);
368198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        }
368298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung        // FIXME as a performance optimization, should remember previous zero status
36835567aaf4818007cd8e77329683a91c0f5d7a8837Andy Hung        memset(mSinkBuffer, 0, mNormalFrameCount * mFrameSize);
368481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
368581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
368681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // if any fast tracks, then status is ready
368781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mMixerStatusIgnoringFastTracks = mixerStatus;
368881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (fastTracks > 0) {
368981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mixerStatus = MIXER_TRACKS_READY;
369081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
369181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return mixerStatus;
369281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
369381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
369481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// getTrackName_l() must be called with ThreadBase::mLock held
3695e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hungint AudioFlinger::MixerThread::getTrackName_l(audio_channel_mask_t channelMask,
3696e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung        audio_format_t format, int sessionId)
369781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
3698e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung    return mAudioMixer->getTrackName(channelMask, format, sessionId);
369981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
370081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
370181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// deleteTrackName_l() must be called with ThreadBase::mLock held
370281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::deleteTrackName_l(int name)
370381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
370481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("remove track (%d) and delete from mixer", name);
370581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mAudioMixer->deleteTrackName(name);
370681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
370781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37081035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent// checkForNewParameter_l() must be called with ThreadBase::mLock held
37091035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurentbool AudioFlinger::MixerThread::checkForNewParameter_l(const String8& keyValuePair,
37101035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                       status_t& status)
371181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
371281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool reconfig = false;
371381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37141035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    status = NO_ERROR;
371581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37161035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // if !&IDLE, holds the FastMixer state to restore after new parameters processed
37171035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    FastMixerState::Command previousCommand = FastMixerState::HOT_IDLE;
37184d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    if (mFastMixer != 0) {
37191035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        FastMixerStateQueue *sq = mFastMixer->sq();
37201035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        FastMixerState *state = sq->begin();
37211035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (!(state->mCommand & FastMixerState::IDLE)) {
37221035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            previousCommand = state->mCommand;
37231035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            state->mCommand = FastMixerState::HOT_IDLE;
37241035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            sq->end();
37251035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
37261035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
37271035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            sq->end(false /*didModify*/);
372881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
37291035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
373081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37311035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    AudioParameter param = AudioParameter(keyValuePair);
37321035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    int value;
37331035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
37341035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        reconfig = true;
37351035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
37361035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
37379a59276fb465e492138e0576523b54079671e8f4Andy Hung        if (!isValidPcmSinkFormat((audio_format_t) value)) {
37381035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = BAD_VALUE;
37391035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
37401035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // no need to save value, since it's constant
374181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            reconfig = true;
374281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
37431035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
37441035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
37459a59276fb465e492138e0576523b54079671e8f4Andy Hung        if (!isValidPcmSinkChannelMask((audio_channel_mask_t) value)) {
37461035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = BAD_VALUE;
37471035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
37481035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // no need to save value, since it's constant
37491035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            reconfig = true;
375081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
37511035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
37521035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
37531035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // do not accept frame count changes if tracks are open as the track buffer
37541035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // size depends on frame count and correct behavior would not be guaranteed
37551035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // if frame count is changed after track creation
37561035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (!mTracks.isEmpty()) {
37571035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = INVALID_OPERATION;
37581035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
37591035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            reconfig = true;
376081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
37611035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
37621035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
376381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef ADD_BATTERY_DATA
37641035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // when changing the audio output device, call addBatteryData to notify
37651035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // the change
37661035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (mOutDevice != value) {
37671035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            uint32_t params = 0;
37681035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // check whether speaker is on
37691035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (value & AUDIO_DEVICE_OUT_SPEAKER) {
37701035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                params |= IMediaPlayerService::kBatteryDataSpeakerOn;
37711035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            }
377281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37731035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            audio_devices_t deviceWithoutSpeaker
37741035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
37751035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // check if any other device (except speaker) is on
37761035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (value & deviceWithoutSpeaker ) {
37771035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
37781035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            }
377981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37801035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (params != 0) {
37811035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                addBatteryData(params);
378281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
37831035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
378481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
378581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37861035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // forward device change to effects that have requested to be
37871035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // aware of attached audio device.
37881035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (value != AUDIO_DEVICE_NONE) {
37891035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mOutDevice = value;
37901035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            for (size_t i = 0; i < mEffectChains.size(); i++) {
37911035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                mEffectChains[i]->setDevice_l(mOutDevice);
379281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
379381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
37941035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
379581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37961035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (status == NO_ERROR) {
37971035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
37981035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                keyValuePair.string());
37991035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (!mStandby && status == INVALID_OPERATION) {
38001035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mOutput->stream->common.standby(&mOutput->stream->common);
38011035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mStandby = true;
38021035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mBytesWritten = 0;
380381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
38041035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                   keyValuePair.string());
38051035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
38061035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (status == NO_ERROR && reconfig) {
38071035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            readOutputParameters_l();
38081035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            delete mAudioMixer;
38091035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
38101035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            for (size_t i = 0; i < mTracks.size() ; i++) {
3811e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung                int name = getTrackName_l(mTracks[i]->mChannelMask,
3812e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung                        mTracks[i]->mFormat, mTracks[i]->mSessionId);
38131035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                if (name < 0) {
38141035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                    break;
381581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
38161035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                mTracks[i]->mName = name;
381781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
38181035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            sendIoConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
381981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
382081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
382181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
382281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!(previousCommand & FastMixerState::IDLE)) {
38234d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten        ALOG_ASSERT(mFastMixer != 0);
382481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerStateQueue *sq = mFastMixer->sq();
382581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        FastMixerState *state = sq->begin();
382681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOG_ASSERT(state->mCommand == FastMixerState::HOT_IDLE);
382781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        state->mCommand = previousCommand;
382881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->end();
382981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
383081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
383181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
383281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return reconfig;
383381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
383481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
383581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
383681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
383781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
383881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const size_t SIZE = 256;
383981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    char buffer[SIZE];
384081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    String8 result;
384181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
384281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    PlaybackThread::dumpInternals(fd, args);
384381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
384487cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  AudioMixer tracks: 0x%08x\n", mAudioMixer->trackNames());
384581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
384681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Make a non-atomic copy of fast mixer dump state so it won't change underneath us
38474182c4e2a07e2441fcd5c22eaff0ddfe7f826f61Glenn Kasten    const FastMixerDumpState copy(mFastMixerDumpState);
384881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    copy.dump(fd);
384981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
385081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef STATE_QUEUE_DUMP
385181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Similar for state queue
385281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    StateQueueObserverDump observerCopy = mStateQueueObserverDump;
385381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    observerCopy.dump(fd);
385481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    StateQueueMutatorDump mutatorCopy = mStateQueueMutatorDump;
385581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mutatorCopy.dump(fd);
385681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
385781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
385846909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
385981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Write the tee output to a .wav file
386081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpTee(fd, mTeeSource, mId);
386146909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
386281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
386381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef AUDIO_WATCHDOG
386481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mAudioWatchdog != 0) {
386581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Make a non-atomic copy of audio watchdog dump so it won't change underneath us
386681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        AudioWatchdogDump wdCopy = mAudioWatchdogDump;
386781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        wdCopy.dump(fd);
386881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
386981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
387081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
387181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
387281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::MixerThread::idleSleepTimeUs() const
387381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
387481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000) / 2;
387581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
387681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
387781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::MixerThread::suspendSleepTimeUs() const
387881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
387981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000);
388081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
388181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
388281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::MixerThread::cacheParameters_l()
388381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
388481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    PlaybackThread::cacheParameters_l();
388581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
388681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME: Relaxed timing because of a certain device that can't meet latency
388781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Should be reduced to 2x after the vendor fixes the driver issue
388881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // increase threshold again due to low power audio mode. The way this warning
388981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // threshold is calculated and its usefulness should be reconsidered anyway.
389081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    maxPeriod = seconds(mNormalFrameCount) / mSampleRate * 15;
389181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
389281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
389381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
389481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
389581784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
389681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device)
389781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    :   PlaybackThread(audioFlinger, output, id, device, DIRECT)
389881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // mLeftVolFloat, mRightVolFloat
389981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
390081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
390181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3902bfb1b832079bbb9426f72f3863199a54aefd02daEric LaurentAudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
3903bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        AudioStreamOut* output, audio_io_handle_t id, uint32_t device,
3904bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        ThreadBase::type_t type)
3905bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    :   PlaybackThread(audioFlinger, output, id, device, type)
3906bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        // mLeftVolFloat, mRightVolFloat
3907bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
3908bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
3909bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
391081784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::DirectOutputThread::~DirectOutputThread()
391181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
391281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
391381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3914bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::DirectOutputThread::processVolume_l(Track *track, bool lastTrack)
3915bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
3916bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    audio_track_cblk_t* cblk = track->cblk();
3917bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    float left, right;
3918bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3919bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (mMasterMute || mStreamTypes[track->streamType()].mute) {
3920bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        left = right = 0;
3921bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    } else {
3922bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        float typeVolume = mStreamTypes[track->streamType()].volume;
3923bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        float v = mMasterVolume * typeVolume;
3924bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        AudioTrackServerProxy *proxy = track->mAudioTrackServerProxy;
3925c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        gain_minifloat_packed_t vlr = proxy->getVolumeLR();
3926c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        left = float_from_gain(gain_minifloat_unpack_left(vlr));
3927c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        if (left > GAIN_FLOAT_UNITY) {
3928c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten            left = GAIN_FLOAT_UNITY;
3929c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        }
3930c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        left *= v;
3931c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        right = float_from_gain(gain_minifloat_unpack_right(vlr));
3932c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        if (right > GAIN_FLOAT_UNITY) {
3933c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten            right = GAIN_FLOAT_UNITY;
3934c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        }
3935c56f3426099a3cf2d07ccff8886050c7fbce140fGlenn Kasten        right *= v;
3936bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
3937bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3938bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (lastTrack) {
3939bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (left != mLeftVolFloat || right != mRightVolFloat) {
3940bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mLeftVolFloat = left;
3941bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            mRightVolFloat = right;
3942bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3943bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // Convert volumes from float to 8.24
3944bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            uint32_t vl = (uint32_t)(left * (1 << 24));
3945bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            uint32_t vr = (uint32_t)(right * (1 << 24));
3946bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3947bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // Delegate volume control to effect in track effect chain if needed
3948bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // only one effect chain can be present on DirectOutputThread, so if
3949bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            // there is one, the track is connected to it
3950bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (!mEffectChains.isEmpty()) {
3951bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mEffectChains[0]->setVolume_l(&vl, &vr);
3952bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                left = (float)vl / (1 << 24);
3953bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                right = (float)vr / (1 << 24);
3954bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
3955bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (mOutput->stream->set_volume) {
3956bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mOutput->stream->set_volume(mOutput->stream, left, right);
3957bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
3958bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
3959bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
3960bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
3961bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3962bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
396381784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::PlaybackThread::mixer_state AudioFlinger::DirectOutputThread::prepareTracks_l(
396481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Vector< sp<Track> > *tracksToRemove
396581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent)
396681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
3967d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent    size_t count = mActiveTracks.size();
396881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mixer_state mixerStatus = MIXER_IDLE;
396981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
397081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // find out which tracks need to be processed
3971d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent    for (size_t i = 0; i < count; i++) {
3972d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent        sp<Track> t = mActiveTracks[i].promote();
397381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // The track died recently
397481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (t == 0) {
3975d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent            continue;
397681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
397781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
397881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Track* const track = t.get();
397981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_track_cblk_t* cblk = track->cblk();
3980fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // Only consider last track started for volume and mixer state control.
3981fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // In theory an older track could underrun and restart after the new one starts
3982fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // but as we only care about the transition phase between two tracks on a
3983fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // direct output, it is not a problem to ignore the underrun case.
3984fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        sp<Track> l = mLatestActiveTrack.promote();
3985fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        bool last = l.get() == track;
398681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
398781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // The first time a track is added we wait
398881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // for all its buffers to be filled before processing it
398981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t minFrames;
3990ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent        if ((track->sharedBuffer() == 0) && !track->isStopping_1() && !track->isPausing()) {
399181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            minFrames = mNormalFrameCount;
399281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
399381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            minFrames = 1;
399481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
3995bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
3996ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent        if ((track->framesReady() >= minFrames) && track->isReady() && !track->isPaused() &&
3997ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                !track->isStopping_2() && !track->isStopped())
399881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        {
3999f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            ALOGVV("track %d s=%08x [OK]", track->name(), cblk->mServer);
400081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
400181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (track->mFillingUpStatus == Track::FS_FILLED) {
400281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                track->mFillingUpStatus = Track::FS_ACTIVE;
40031abbdb4429479975718421c4fef3f79ce7c820e3Eric Laurent                // make sure processVolume_l() will apply new volume even if 0
40041abbdb4429479975718421c4fef3f79ce7c820e3Eric Laurent                mLeftVolFloat = mRightVolFloat = -1.0;
400581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (track->mState == TrackBase::RESUMING) {
400681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    track->mState = TrackBase::ACTIVE;
400781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
400881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
400981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
401081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // compute volume for this track
4011bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            processVolume_l(track, last);
4012bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (last) {
4013d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                // reset retry count
4014d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                track->mRetryCount = kMaxTrackRetriesDirect;
4015d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                mActiveTrack = t;
4016d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                mixerStatus = MIXER_TRACKS_READY;
4017d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent            }
401881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
4019d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent            // clear effect chain input buffer if the last active track started underruns
4020d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent            // to avoid sending previous audio buffer again to effects
4021fd4779740ec3e9e865d5514464df26d015354388Eric Laurent            if (!mEffectChains.isEmpty() && last) {
402281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mEffectChains[0]->clearInputBuffer();
402381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
4024ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent            if (track->isStopping_1()) {
4025ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                track->mState = TrackBase::STOPPING_2;
4026ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent            }
4027ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent            if ((track->sharedBuffer() != 0) || track->isStopped() ||
4028ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                    track->isStopping_2() || track->isPaused()) {
402981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // We have consumed all the buffers of this track.
403081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Remove it from the list of active tracks.
4031ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                size_t audioHALFrames;
4032ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                if (audio_is_linear_pcm(mFormat)) {
4033ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                    audioHALFrames = (latency_l() * mSampleRate) / 1000;
4034ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                } else {
4035ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                    audioHALFrames = 0;
4036ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                }
4037ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent
403881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                size_t framesWritten = mBytesWritten / mFrameSize;
4039fd4779740ec3e9e865d5514464df26d015354388Eric Laurent                if (mStandby || !last ||
4040fd4779740ec3e9e865d5514464df26d015354388Eric Laurent                        track->presentationComplete(framesWritten, audioHALFrames)) {
4041ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                    if (track->isStopping_2()) {
4042ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                        track->mState = TrackBase::STOPPED;
4043ab5cdbaf65ca509681d2726aacdf3ac8bfb6b3faEric Laurent                    }
404481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    if (track->isStopped()) {
4045e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent                        if (track->mState == TrackBase::FLUSHED) {
4046e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent                            flushHw_l();
4047e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent                        }
404881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        track->reset();
404981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
4050d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                    tracksToRemove->add(track);
405181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
405281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            } else {
405381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // No buffers for this track. Give it a few chances to
405481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // fill a buffer, then remove it from active list.
4055d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                // Only consider last track started for mixer state control
405681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                if (--(track->mRetryCount) <= 0) {
405781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
4058d595b7c858c481a07745674ce2d8a6690e980e74Eric Laurent                    tracksToRemove->add(track);
4059a23f17ac334ff20a11ee63dd177cb1080e44c483Eric Laurent                    // indicate to client process that the track was disabled because of underrun;
4060a23f17ac334ff20a11ee63dd177cb1080e44c483Eric Laurent                    // it will then automatically call start() when data is available
4061a23f17ac334ff20a11ee63dd177cb1080e44c483Eric Laurent                    android_atomic_or(CBLK_DISABLED, &cblk->mFlags);
4062bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                } else if (last) {
406381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    mixerStatus = MIXER_TRACKS_ENABLED;
406481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
406581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
406681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
406781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
406881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
406981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // remove all the tracks that need to be...
4070bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    removeTracks_l(*tracksToRemove);
407181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
407281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return mixerStatus;
407381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
407481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
407581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DirectOutputThread::threadLoop_mix()
407681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
407781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t frameCount = mFrameCount;
40782098f2744cedf2dc3fa36f608aa965a34602e7c0Andy Hung    int8_t *curBuf = (int8_t *)mSinkBuffer;
407981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // output audio to hardware
408081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    while (frameCount) {
408134542acfa25c6413c87a94b6f7cc315a0c496277Glenn Kasten        AudioBufferProvider::Buffer buffer;
408281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        buffer.frameCount = frameCount;
408381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mActiveTrack->getNextBuffer(&buffer);
4084fa319e6d918b84f93fb5457af5d1cca6421ac517Glenn Kasten        if (buffer.raw == NULL) {
408581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            memset(curBuf, 0, frameCount * mFrameSize);
408681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            break;
408781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
408881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
408981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        frameCount -= buffer.frameCount;
409081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        curBuf += buffer.frameCount * mFrameSize;
409181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mActiveTrack->releaseBuffer(&buffer);
409281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
40932098f2744cedf2dc3fa36f608aa965a34602e7c0Andy Hung    mCurrentWriteLength = curBuf - (int8_t *)mSinkBuffer;
409481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sleepTime = 0;
409581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    standbyTime = systemTime() + standbyDelay;
409681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mActiveTrack.clear();
409781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
409881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
409981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DirectOutputThread::threadLoop_sleepTime()
410081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
410181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (sleepTime == 0) {
410281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
410381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sleepTime = activeSleepTime;
410481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
410581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sleepTime = idleSleepTime;
410681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
410781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
41082098f2744cedf2dc3fa36f608aa965a34602e7c0Andy Hung        memset(mSinkBuffer, 0, mFrameCount * mFrameSize);
410981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sleepTime = 0;
411081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
411181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
411281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
411381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// getTrackName_l() must be called with ThreadBase::mLock held
41140f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenint AudioFlinger::DirectOutputThread::getTrackName_l(audio_channel_mask_t channelMask __unused,
4115e8a1ced4da17dc6c07803dc2af8060f62a8389c1Andy Hung        audio_format_t format __unused, int sessionId __unused)
411681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
411781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return 0;
411881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
411981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
412081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// deleteTrackName_l() must be called with ThreadBase::mLock held
41210f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenvoid AudioFlinger::DirectOutputThread::deleteTrackName_l(int name __unused)
412281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
412381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
412481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
41251035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent// checkForNewParameter_l() must be called with ThreadBase::mLock held
41261035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurentbool AudioFlinger::DirectOutputThread::checkForNewParameter_l(const String8& keyValuePair,
41271035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                              status_t& status)
412881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
412981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool reconfig = false;
413081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
41311035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    status = NO_ERROR;
41321035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
41331035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    AudioParameter param = AudioParameter(keyValuePair);
41341035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    int value;
41351035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
41361035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // forward device change to effects that have requested to be
41371035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // aware of attached audio device.
41381035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (value != AUDIO_DEVICE_NONE) {
41391035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mOutDevice = value;
41401035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            for (size_t i = 0; i < mEffectChains.size(); i++) {
41411035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                mEffectChains[i]->setDevice_l(mOutDevice);
4142c125f38cd0ae35409a01b98a99e483550daa1313Glenn Kasten            }
4143c125f38cd0ae35409a01b98a99e483550daa1313Glenn Kasten        }
41441035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
41451035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
41461035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // do not accept frame count changes if tracks are open as the track buffer
41471035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // size depends on frame count and correct behavior would not be garantied
41481035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // if frame count is changed after track creation
41491035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (!mTracks.isEmpty()) {
41501035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = INVALID_OPERATION;
41511035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
41521035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            reconfig = true;
415381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
41541035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
41551035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (status == NO_ERROR) {
41561035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
41571035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                keyValuePair.string());
41581035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (!mStandby && status == INVALID_OPERATION) {
41591035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mOutput->stream->common.standby(&mOutput->stream->common);
41601035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mStandby = true;
41611035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mBytesWritten = 0;
416281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
41631035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                   keyValuePair.string());
41641035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
41651035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (status == NO_ERROR && reconfig) {
41661035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            readOutputParameters_l();
41671035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            sendIoConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
416881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
416981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
41701035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
417181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return reconfig;
417281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
417381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
417481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs() const
417581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
417681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t time;
417781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (audio_is_linear_pcm(mFormat)) {
417881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        time = PlaybackThread::activeSleepTimeUs();
417981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
418081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        time = 10000;
418181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
418281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return time;
418381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
418481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
418581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs() const
418681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
418781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t time;
418881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (audio_is_linear_pcm(mFormat)) {
418981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
419081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
419181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        time = 10000;
419281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
419381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return time;
419481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
419581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
419681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs() const
419781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
419881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t time;
419981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (audio_is_linear_pcm(mFormat)) {
420081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
420181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
420281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        time = 10000;
420381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
420481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return time;
420581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
420681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
420781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DirectOutputThread::cacheParameters_l()
420881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
420981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    PlaybackThread::cacheParameters_l();
421081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
421181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // use shorter standby delay as on normal output to release
421281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // hardware resources as soon as possible
4213972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    if (audio_is_linear_pcm(mFormat)) {
4214972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent        standbyDelay = microseconds(activeSleepTime*2);
4215972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    } else {
4216972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent        standbyDelay = kOffloadStandbyDelayNs;
4217972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    }
421881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
421981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4220e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurentvoid AudioFlinger::DirectOutputThread::flushHw_l()
4221e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent{
4222e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent    if (mOutput->stream->flush != NULL)
4223e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent        mOutput->stream->flush(mOutput->stream);
4224e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent}
4225e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent
422681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
422781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4228bfb1b832079bbb9426f72f3863199a54aefd02daEric LaurentAudioFlinger::AsyncCallbackThread::AsyncCallbackThread(
42294de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent        const wp<AudioFlinger::PlaybackThread>& playbackThread)
4230bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    :   Thread(false /*canCallJava*/),
42314de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent        mPlaybackThread(playbackThread),
42323b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mWriteAckSequence(0),
42333b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mDrainSequence(0)
4234bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4235bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4236bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4237bfb1b832079bbb9426f72f3863199a54aefd02daEric LaurentAudioFlinger::AsyncCallbackThread::~AsyncCallbackThread()
4238bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4239bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4240bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4241bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::AsyncCallbackThread::onFirstRef()
4242bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4243bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    run("Offload Cbk", ANDROID_PRIORITY_URGENT_AUDIO);
4244bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4245bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4246bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::AsyncCallbackThread::threadLoop()
4247bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4248bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    while (!exitPending()) {
42493b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        uint32_t writeAckSequence;
42503b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        uint32_t drainSequence;
4251bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4252bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        {
4253bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            Mutex::Autolock _l(mLock);
425424a325d6f8c4bbf9330e6ce0c769d46e04266ffcHaynes Mathew George            while (!((mWriteAckSequence & 1) ||
425524a325d6f8c4bbf9330e6ce0c769d46e04266ffcHaynes Mathew George                     (mDrainSequence & 1) ||
425624a325d6f8c4bbf9330e6ce0c769d46e04266ffcHaynes Mathew George                     exitPending())) {
425724a325d6f8c4bbf9330e6ce0c769d46e04266ffcHaynes Mathew George                mWaitWorkCV.wait(mLock);
425824a325d6f8c4bbf9330e6ce0c769d46e04266ffcHaynes Mathew George            }
425924a325d6f8c4bbf9330e6ce0c769d46e04266ffcHaynes Mathew George
4260bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (exitPending()) {
4261bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                break;
4262bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
42633b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            ALOGV("AsyncCallbackThread mWriteAckSequence %d mDrainSequence %d",
42643b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent                  mWriteAckSequence, mDrainSequence);
42653b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            writeAckSequence = mWriteAckSequence;
42663b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mWriteAckSequence &= ~1;
42673b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            drainSequence = mDrainSequence;
42683b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            mDrainSequence &= ~1;
4269bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
4270bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        {
42714de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent            sp<AudioFlinger::PlaybackThread> playbackThread = mPlaybackThread.promote();
42724de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent            if (playbackThread != 0) {
42733b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent                if (writeAckSequence & 1) {
42744de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent                    playbackThread->resetWriteBlocked(writeAckSequence >> 1);
4275bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
42763b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent                if (drainSequence & 1) {
42774de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent                    playbackThread->resetDraining(drainSequence >> 1);
4278bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
4279bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
4280bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
4281bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
4282bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return false;
4283bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4284bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4285bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::AsyncCallbackThread::exit()
4286bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4287bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    ALOGV("AsyncCallbackThread::exit");
4288bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
4289bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    requestExit();
4290bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mWaitWorkCV.broadcast();
4291bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4292bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
42933b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurentvoid AudioFlinger::AsyncCallbackThread::setWriteBlocked(uint32_t sequence)
4294bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4295bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
42963b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // bit 0 is cleared
42973b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    mWriteAckSequence = sequence << 1;
42983b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent}
42993b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent
43003b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurentvoid AudioFlinger::AsyncCallbackThread::resetWriteBlocked()
43013b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent{
43023b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    Mutex::Autolock _l(mLock);
43033b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // ignore unexpected callbacks
43043b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    if (mWriteAckSequence & 2) {
43053b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mWriteAckSequence |= 1;
4306bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mWaitWorkCV.signal();
4307bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
4308bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4309bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
43103b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurentvoid AudioFlinger::AsyncCallbackThread::setDraining(uint32_t sequence)
43113b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent{
43123b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    Mutex::Autolock _l(mLock);
43133b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // bit 0 is cleared
43143b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    mDrainSequence = sequence << 1;
43153b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent}
43163b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent
43173b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurentvoid AudioFlinger::AsyncCallbackThread::resetDraining()
4318bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4319bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
43203b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // ignore unexpected callbacks
43213b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    if (mDrainSequence & 2) {
43223b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mDrainSequence |= 1;
4323bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mWaitWorkCV.signal();
4324bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
4325bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4326bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4327bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4328bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent// ----------------------------------------------------------------------------
4329bfb1b832079bbb9426f72f3863199a54aefd02daEric LaurentAudioFlinger::OffloadThread::OffloadThread(const sp<AudioFlinger>& audioFlinger,
4330bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        AudioStreamOut* output, audio_io_handle_t id, uint32_t device)
4331bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    :   DirectOutputThread(audioFlinger, output, id, device, OFFLOAD),
4332bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mHwPaused(false),
4333ea0fadeb5d81ef3cb7f9db458c9033d628bdb86aEric Laurent        mFlushPending(false),
4334d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent        mPausedBytesRemaining(0)
4335bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4336fd4779740ec3e9e865d5514464df26d015354388Eric Laurent    //FIXME: mStandby should be set to true by ThreadBase constructor
4337fd4779740ec3e9e865d5514464df26d015354388Eric Laurent    mStandby = true;
4338bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4339bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4340bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::OffloadThread::threadLoop_exit()
4341bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4342bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (mFlushPending || mHwPaused) {
4343bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        // If a flush is pending or track was paused, just discard buffered data
4344bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        flushHw_l();
4345bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    } else {
4346bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        mMixerStatus = MIXER_DRAIN_ALL;
4347bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        threadLoop_drain();
4348bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
434956604aa3a56dc8e15532597a0a74b3c7b165e006Uday Gupta    if (mUseAsyncWrite) {
435056604aa3a56dc8e15532597a0a74b3c7b165e006Uday Gupta        ALOG_ASSERT(mCallbackThread != 0);
435156604aa3a56dc8e15532597a0a74b3c7b165e006Uday Gupta        mCallbackThread->exit();
435256604aa3a56dc8e15532597a0a74b3c7b165e006Uday Gupta    }
4353bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    PlaybackThread::threadLoop_exit();
4354bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4355bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4356bfb1b832079bbb9426f72f3863199a54aefd02daEric LaurentAudioFlinger::PlaybackThread::mixer_state AudioFlinger::OffloadThread::prepareTracks_l(
4357bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Vector< sp<Track> > *tracksToRemove
4358bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent)
4359bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4360bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    size_t count = mActiveTracks.size();
4361bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4362bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mixer_state mixerStatus = MIXER_IDLE;
4363972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    bool doHwPause = false;
4364972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    bool doHwResume = false;
4365972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent
4366ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent    ALOGV("OffloadThread::prepareTracks_l active tracks %d", count);
4367ede6c3b8b1147bc425f7b923882f559a513fe23bEric Laurent
4368bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // find out which tracks need to be processed
4369bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    for (size_t i = 0; i < count; i++) {
4370bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        sp<Track> t = mActiveTracks[i].promote();
4371bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        // The track died recently
4372bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (t == 0) {
4373bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            continue;
4374bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
4375bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        Track* const track = t.get();
4376bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        audio_track_cblk_t* cblk = track->cblk();
4377fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // Only consider last track started for volume and mixer state control.
4378fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // In theory an older track could underrun and restart after the new one starts
4379fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // but as we only care about the transition phase between two tracks on a
4380fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        // direct output, it is not a problem to ignore the underrun case.
4381fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        sp<Track> l = mLatestActiveTrack.promote();
4382fd4779740ec3e9e865d5514464df26d015354388Eric Laurent        bool last = l.get() == track;
4383fd4779740ec3e9e865d5514464df26d015354388Eric Laurent
43847844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George        if (track->isInvalid()) {
43857844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            ALOGW("An invalidated track shouldn't be in active list");
43867844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            tracksToRemove->add(track);
43877844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            continue;
43887844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George        }
43897844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George
43907844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George        if (track->mState == TrackBase::IDLE) {
43917844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            ALOGW("An idle track shouldn't be in active list");
43927844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            continue;
43937844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George        }
43947844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George
4395bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        if (track->isPausing()) {
4396bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            track->setPaused();
4397bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (last) {
4398bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (!mHwPaused) {
4399972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent                    doHwPause = true;
4400bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    mHwPaused = true;
4401bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
4402bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // If we were part way through writing the mixbuffer to
4403bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // the HAL we must save this until we resume
4404bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // BUG - this will be wrong if a different track is made active,
4405bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // in that case we want to discard the pending data in the
4406bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // mixbuffer and tell the client to present it again when the
4407bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // track is resumed
4408bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mPausedWriteLength = mCurrentWriteLength;
4409bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mPausedBytesRemaining = mBytesRemaining;
4410bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mBytesRemaining = 0;    // stop writing
4411bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
4412bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            tracksToRemove->add(track);
44137844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George        } else if (track->isFlushPending()) {
44147844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            track->flushAck();
44157844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            if (last) {
44167844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George                mFlushPending = true;
44177844f679be8d94c5cdf017f53754cb68ee2f00daHaynes Mathew George            }
44182d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George        } else if (track->isResumePending()){
44192d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George            track->resumeAck();
44202d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George            if (last) {
44212d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                if (mPausedBytesRemaining) {
44222d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    // Need to continue write that was interrupted
44232d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    mCurrentWriteLength = mPausedWriteLength;
44242d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    mBytesRemaining = mPausedBytesRemaining;
44252d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    mPausedBytesRemaining = 0;
44262d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                }
44272d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                if (mHwPaused) {
44282d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    doHwResume = true;
44292d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    mHwPaused = false;
44302d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    // threadLoop_mix() will handle the case that we need to
44312d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                    // resume an interrupted write
44322d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                }
44332d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                // enable write to audio HAL
44342d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                sleepTime = 0;
44352d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George
44362d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                // Do not handle new data in this iteration even if track->framesReady()
44372d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George                mixerStatus = MIXER_TRACKS_ENABLED;
44382d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George            }
44392d3ca68363f723fbe269d3ce52dab4985dfc7154Haynes Mathew George        }  else if (track->framesReady() && track->isReady() &&
44403b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent                !track->isPaused() && !track->isTerminated() && !track->isStopping_2()) {
4441f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            ALOGVV("OffloadThread: track %d s=%08x [OK]", track->name(), cblk->mServer);
4442bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (track->mFillingUpStatus == Track::FS_FILLED) {
4443bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                track->mFillingUpStatus = Track::FS_ACTIVE;
44441abbdb4429479975718421c4fef3f79ce7c820e3Eric Laurent                // make sure processVolume_l() will apply new volume even if 0
44451abbdb4429479975718421c4fef3f79ce7c820e3Eric Laurent                mLeftVolFloat = mRightVolFloat = -1.0;
4446bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
4447bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4448bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (last) {
4449d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent                sp<Track> previousTrack = mPreviousTrack.promote();
4450d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent                if (previousTrack != 0) {
4451d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent                    if (track != previousTrack.get()) {
44529da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        // Flush any data still being written from last track
44539da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        mBytesRemaining = 0;
44549da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        if (mPausedBytesRemaining) {
44559da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            // Last track was paused so we also need to flush saved
44569da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            // mixbuffer state and invalidate track so that it will
44579da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            // re-submit that unwritten data when it is next resumed
44589da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            mPausedBytesRemaining = 0;
44599da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            // Invalidate is a bit drastic - would be more efficient
44609da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            // to have a flag to tell client that some of the
44619da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                            // previously written data was lost
4462d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent                            previousTrack->invalidate();
44639da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        }
44649da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        // flush data already sent to the DSP if changing audio session as audio
44659da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        // comes from a different source. Also invalidate previous track to force a
44669da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        // seek when resuming.
4467d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent                        if (previousTrack->sessionId() != track->sessionId()) {
4468d7e59228caad3867794d847f6bf163c6495e9506Eric Laurent                            previousTrack->invalidate();
44699da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                        }
44709da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                    }
44719da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                }
44729da3d9573a18ffe08365557c706cf52f09118d1cEric Laurent                mPreviousTrack = track;
4473bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // reset retry count
4474bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                track->mRetryCount = kMaxTrackRetriesOffload;
4475bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mActiveTrack = t;
4476bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                mixerStatus = MIXER_TRACKS_READY;
4477bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
4478bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        } else {
4479f20e1d8df84c5fbeeace0052d100982ae39bb7a4Glenn Kasten            ALOGVV("OffloadThread: track %d s=%08x [NOT READY]", track->name(), cblk->mServer);
4480bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            if (track->isStopping_1()) {
4481bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // Hardware buffer can hold a large amount of audio so we must
4482bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // wait for all current track's data to drain before we say
4483bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // that the track is stopped.
4484bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (mBytesRemaining == 0) {
4485bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    // Only start draining when all data in mixbuffer
4486bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    // has been written
4487bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    ALOGV("OffloadThread: underrun and STOPPING_1 -> draining, STOPPING_2");
4488bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    track->mState = TrackBase::STOPPING_2; // so presentation completes after drain
44896a51d7ed7062536ccc892c8850a34ed55cbc8d5cEric Laurent                    // do not drain if no data was ever sent to HAL (mStandby == true)
44906a51d7ed7062536ccc892c8850a34ed55cbc8d5cEric Laurent                    if (last && !mStandby) {
44911b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                        // do not modify drain sequence if we are already draining. This happens
44921b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                        // when resuming from pause after drain.
44931b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                        if ((mDrainSequence & 1) == 0) {
44941b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                            sleepTime = 0;
44951b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                            standbyTime = systemTime() + standbyDelay;
44961b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                            mixerStatus = MIXER_DRAIN_TRACK;
44971b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                            mDrainSequence += 2;
44981b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                        }
4499bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        if (mHwPaused) {
4500bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                            // It is possible to move from PAUSED to STOPPING_1 without
4501bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                            // a resume so we must ensure hardware is running
45021b9f9b134e732a48198e51f16424f330cbf03143Eric Laurent                            doHwResume = true;
4503bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                            mHwPaused = false;
4504bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                        }
4505bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    }
4506bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
4507bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            } else if (track->isStopping_2()) {
45086a51d7ed7062536ccc892c8850a34ed55cbc8d5cEric Laurent                // Drain has completed or we are in standby, signal presentation complete
45096a51d7ed7062536ccc892c8850a34ed55cbc8d5cEric Laurent                if (!(mDrainSequence & 1) || !last || mStandby) {
4510bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    track->mState = TrackBase::STOPPED;
4511bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    size_t audioHALFrames =
4512bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                            (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
4513bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    size_t framesWritten =
4514665470b36f202bcc8ee2f7417f68fd2608dd07c1Eric Laurent                            mBytesWritten / audio_stream_out_frame_size(mOutput->stream);
4515bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    track->presentationComplete(framesWritten, audioHALFrames);
4516bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    track->reset();
4517bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    tracksToRemove->add(track);
4518bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
4519bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            } else {
4520bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // No buffers for this track. Give it a few chances to
4521bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // fill a buffer, then remove it from active list.
4522bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                if (--(track->mRetryCount) <= 0) {
4523bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    ALOGV("OffloadThread: BUFFER TIMEOUT: remove(%d) from active list",
4524bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                          track->name());
4525bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    tracksToRemove->add(track);
4526a23f17ac334ff20a11ee63dd177cb1080e44c483Eric Laurent                    // indicate to client process that the track was disabled because of underrun;
4527a23f17ac334ff20a11ee63dd177cb1080e44c483Eric Laurent                    // it will then automatically call start() when data is available
4528a23f17ac334ff20a11ee63dd177cb1080e44c483Eric Laurent                    android_atomic_or(CBLK_DISABLED, &cblk->mFlags);
4529bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                } else if (last){
4530bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                    mixerStatus = MIXER_TRACKS_ENABLED;
4531bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                }
4532bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            }
4533bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        }
4534bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        // compute volume for this track
4535bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        processVolume_l(track, last);
4536bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
45376bf9ae20b3bd2dbb8f2e89ee167a6785222301cfEric Laurent
4538ea0fadeb5d81ef3cb7f9db458c9033d628bdb86aEric Laurent    // make sure the pause/flush/resume sequence is executed in the right order.
4539ea0fadeb5d81ef3cb7f9db458c9033d628bdb86aEric Laurent    // If a flush is pending and a track is active but the HW is not paused, force a HW pause
4540ea0fadeb5d81ef3cb7f9db458c9033d628bdb86aEric Laurent    // before flush and then resume HW. This can happen in case of pause/flush/resume
4541ea0fadeb5d81ef3cb7f9db458c9033d628bdb86aEric Laurent    // if resume is received before pause is executed.
4542fd4779740ec3e9e865d5514464df26d015354388Eric Laurent    if (!mStandby && (doHwPause || (mFlushPending && !mHwPaused && (count != 0)))) {
4543972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent        mOutput->stream->pause(mOutput->stream);
4544972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    }
45456bf9ae20b3bd2dbb8f2e89ee167a6785222301cfEric Laurent    if (mFlushPending) {
45466bf9ae20b3bd2dbb8f2e89ee167a6785222301cfEric Laurent        flushHw_l();
45476bf9ae20b3bd2dbb8f2e89ee167a6785222301cfEric Laurent        mFlushPending = false;
45486bf9ae20b3bd2dbb8f2e89ee167a6785222301cfEric Laurent    }
4549fd4779740ec3e9e865d5514464df26d015354388Eric Laurent    if (!mStandby && doHwResume) {
4550972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent        mOutput->stream->resume(mOutput->stream);
4551972a173d7d1de1a3b5a617aae3e2abb6e05ae02dEric Laurent    }
45526bf9ae20b3bd2dbb8f2e89ee167a6785222301cfEric Laurent
4553bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // remove all the tracks that need to be...
4554bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    removeTracks_l(*tracksToRemove);
4555bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4556bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return mixerStatus;
4557bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4558bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4559bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent// must be called with thread mutex locked
4560bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::OffloadThread::waitingAsyncCallback_l()
4561bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
45623b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    ALOGVV("waitingAsyncCallback_l mWriteAckSequence %d mDrainSequence %d",
45633b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent          mWriteAckSequence, mDrainSequence);
45643b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    if (mUseAsyncWrite && ((mWriteAckSequence & 1) || (mDrainSequence & 1))) {
4565bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        return true;
4566bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
4567bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return false;
4568bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4569bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4570bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent// must be called with thread mutex locked
4571bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::OffloadThread::shouldStandby_l()
4572bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4573e6f35b13567d920af19f0b8dc35f9120b7cf1dc9Glenn Kasten    bool trackPaused = false;
4574bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4575bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // do not put the HAL in standby when paused. AwesomePlayer clear the offloaded AudioTrack
4576bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // after a timeout and we will enter standby then.
4577bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (mTracks.size() > 0) {
4578e6f35b13567d920af19f0b8dc35f9120b7cf1dc9Glenn Kasten        trackPaused = mTracks[mTracks.size() - 1]->isPaused();
4579bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
4580bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4581e6f35b13567d920af19f0b8dc35f9120b7cf1dc9Glenn Kasten    return !mStandby && !trackPaused;
4582bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4583bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4584bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4585bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentbool AudioFlinger::OffloadThread::waitingAsyncCallback()
4586bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4587bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    Mutex::Autolock _l(mLock);
4588bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    return waitingAsyncCallback_l();
4589bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4590bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
4591bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentvoid AudioFlinger::OffloadThread::flushHw_l()
4592bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent{
4593e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent    DirectOutputThread::flushHw_l();
4594bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // Flush anything still waiting in the mixbuffer
4595bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mCurrentWriteLength = 0;
4596bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mBytesRemaining = 0;
4597bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mPausedWriteLength = 0;
4598bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    mPausedBytesRemaining = 0;
45990f02f265123b7ef2fd6ac09ff70cde26eb5559adHaynes Mathew George    mHwPaused = false;
46000f02f265123b7ef2fd6ac09ff70cde26eb5559adHaynes Mathew George
4601bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    if (mUseAsyncWrite) {
46023b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        // discard any pending drain or write ack by incrementing sequence
46033b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mWriteAckSequence = (mWriteAckSequence + 2) & ~1;
46043b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mDrainSequence = (mDrainSequence + 2) & ~1;
4605bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        ALOG_ASSERT(mCallbackThread != 0);
46063b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mCallbackThread->setWriteBlocked(mWriteAckSequence);
46073b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent        mCallbackThread->setDraining(mDrainSequence);
4608bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    }
4609bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent}
4610bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
46114c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew Georgevoid AudioFlinger::OffloadThread::onAddNewTrack_l()
46124c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George{
46134c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    sp<Track> previousTrack = mPreviousTrack.promote();
46144c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    sp<Track> latestTrack = mLatestActiveTrack.promote();
46154c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George
46164c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    if (previousTrack != 0 && latestTrack != 0 &&
46174c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George        (previousTrack->sessionId() != latestTrack->sessionId())) {
46184c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George        mFlushPending = true;
46194c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    }
46204c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    PlaybackThread::onAddNewTrack_l();
46214c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George}
46224c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George
4623bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent// ----------------------------------------------------------------------------
4624bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
462581784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger,
462681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        AudioFlinger::MixerThread* mainThread, audio_io_handle_t id)
462781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    :   MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->outDevice(),
462881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                DUPLICATING),
462981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mWaitTimeMs(UINT_MAX)
463081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
463181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    addOutputTrack(mainThread);
463281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
463381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
463481784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::DuplicatingThread::~DuplicatingThread()
463581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
463681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mOutputTracks.size(); i++) {
463781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mOutputTracks[i]->destroy();
463881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
463981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
464081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
464181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::threadLoop_mix()
464281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
464381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mix buffers...
464481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (outputsReady(outputTracks)) {
464581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
464681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
464725c2dac12114699e90deb1c579cadebce7b91a97Andy Hung        memset(mSinkBuffer, 0, mSinkBufferSize);
464881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
464981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sleepTime = 0;
465081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    writeFrames = mNormalFrameCount;
465125c2dac12114699e90deb1c579cadebce7b91a97Andy Hung    mCurrentWriteLength = mSinkBufferSize;
465281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    standbyTime = systemTime() + standbyDelay;
465381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
465481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
465581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::threadLoop_sleepTime()
465681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
465781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (sleepTime == 0) {
465881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
465981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sleepTime = activeSleepTime;
466081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
466181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sleepTime = idleSleepTime;
466281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
466381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else if (mBytesWritten != 0) {
466481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
466581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            writeFrames = mNormalFrameCount;
466625c2dac12114699e90deb1c579cadebce7b91a97Andy Hung            memset(mSinkBuffer, 0, mSinkBufferSize);
466781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
466881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // flush remaining overflow buffers in output tracks
466981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            writeFrames = 0;
467081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
467181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sleepTime = 0;
467281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
467381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
467481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4675bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentssize_t AudioFlinger::DuplicatingThread::threadLoop_write()
467681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
467781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < outputTracks.size(); i++) {
4678010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        // We convert the duplicating thread format to AUDIO_FORMAT_PCM_16_BIT
4679010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        // for delivery downstream as needed. This in-place conversion is safe as
4680010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        // AUDIO_FORMAT_PCM_16_BIT is smaller than any other supported format
4681010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        // (AUDIO_FORMAT_PCM_8_BIT is not allowed here).
4682010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        if (mFormat != AUDIO_FORMAT_PCM_16_BIT) {
4683010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung            memcpy_by_audio_format(mSinkBuffer, AUDIO_FORMAT_PCM_16_BIT,
4684010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                    mSinkBuffer, mFormat, writeFrames * mChannelCount);
4685010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        }
4686010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung        outputTracks[i]->write(reinterpret_cast<int16_t*>(mSinkBuffer), writeFrames);
468781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
46882c3740f01acca69c3e0bcc5e01bb0edc51b6777fEric Laurent    mStandby = false;
468925c2dac12114699e90deb1c579cadebce7b91a97Andy Hung    return (ssize_t)mSinkBufferSize;
469081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
469181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
469281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::threadLoop_standby()
469381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
469481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // DuplicatingThread implements standby by stopping all tracks
469581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < outputTracks.size(); i++) {
469681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        outputTracks[i]->stop();
469781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
469881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
469981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
470081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::saveOutputTracks()
470181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
470281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    outputTracks = mOutputTracks;
470381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
470481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
470581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::clearOutputTracks()
470681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
470781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    outputTracks.clear();
470881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
470981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
471081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
471181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
471281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
471381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME explain this formula
471481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    size_t frameCount = (3 * mNormalFrameCount * mSampleRate) / thread->sampleRate();
4715010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // OutputTrack is forced to AUDIO_FORMAT_PCM_16_BIT regardless of mFormat
4716010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // due to current usage case and restrictions on the AudioBufferProvider.
4717010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // Actual buffer conversion is done in threadLoop_write().
4718010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    //
4719010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // TODO: This may change in the future, depending on multichannel
4720010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    // (and non int16_t*) support on AF::PlaybackThread::OutputTrack
472181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    OutputTrack *outputTrack = new OutputTrack(thread,
472281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                            this,
472381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                            mSampleRate,
4724010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                                            AUDIO_FORMAT_PCM_16_BIT,
472581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                            mChannelMask,
4726462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                            frameCount,
4727462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                                            IPCThreadState::self()->getCallingUid());
472881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (outputTrack->cblk() != NULL) {
472981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
473081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mOutputTracks.add(outputTrack);
473181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
473281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        updateWaitTime_l();
473381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
473481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
473581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
473681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
473781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
473881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
473981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mOutputTracks.size(); i++) {
474081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (mOutputTracks[i]->thread() == thread) {
474181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mOutputTracks[i]->destroy();
474281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            mOutputTracks.removeAt(i);
474381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            updateWaitTime_l();
474481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return;
474581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
474681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
474781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
474881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
474981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
475081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// caller must hold mLock
475181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::updateWaitTime_l()
475281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
475381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mWaitTimeMs = UINT_MAX;
475481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mOutputTracks.size(); i++) {
475581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
475681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (strong != 0) {
475781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
475881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            if (waitTimeMs < mWaitTimeMs) {
475981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mWaitTimeMs = waitTimeMs;
476081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
476181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
476281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
476381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
476481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
476581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
476681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentbool AudioFlinger::DuplicatingThread::outputsReady(
476781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const SortedVector< sp<OutputTrack> > &outputTracks)
476881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
476981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < outputTracks.size(); i++) {
477081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<ThreadBase> thread = outputTracks[i]->thread().promote();
477181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (thread == 0) {
477281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p",
477381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    outputTracks[i].get());
477481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return false;
477581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
477681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
477781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // see note at standby() declaration
477881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (playbackThread->standby() && !playbackThread->isSuspended()) {
477981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(),
478081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    thread.get());
478181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return false;
478281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
478381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
478481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return true;
478581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
478681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
478781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs() const
478881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
478981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return (mWaitTimeMs * 1000) / 2;
479081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
479181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
479281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::DuplicatingThread::cacheParameters_l()
479381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
479481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // updateWaitTime_l() sets mWaitTimeMs, which affects activeSleepTimeUs(), so call it first
479581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    updateWaitTime_l();
479681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
479781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    MixerThread::cacheParameters_l();
479881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
479981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
480081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
480181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent//      Record
480281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// ----------------------------------------------------------------------------
480381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
480481784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
480581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                         AudioStreamIn *input,
480681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                         audio_io_handle_t id,
4807d3922f72601d82c6fc067a98916fda0bd1291c5fEric Laurent                                         audio_devices_t outDevice,
480846909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten                                         audio_devices_t inDevice
480946909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
481046909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten                                         , const sp<NBAIO_Sink>& teeSink
481146909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
481246909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten                                         ) :
4813d3922f72601d82c6fc067a98916fda0bd1291c5fEric Laurent    ThreadBase(audioFlinger, id, outDevice, inDevice, RECORD),
48146dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    mInput(input), mActiveTracksGen(0), mRsmpInBuffer(NULL),
4815deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten    // mRsmpInFrames and mRsmpInFramesP2 are set by readInputParameters_l()
48164cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten    mRsmpInRear(0)
481746909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
481846909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten    , mTeeSink(teeSink)
481946909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
4820b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten    , mReadOnlyHeap(new MemoryDealer(kRecordThreadReadOnlyHeapSize,
4821b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten            "RecordThreadRO", MemoryHeapBase::READ_ONLY))
48226dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // mFastCapture below
48236dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    , mFastCaptureFutex(0)
48246dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // mInputSource
48256dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // mPipeSink
48266dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // mPipeSource
48276dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    , mPipeFramesP2(0)
48286dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // mPipeMemory
48296dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // mFastCaptureNBLogWriter
48306e6704c06d61bc356e30c164081e5bcffb37920cGlenn Kasten    , mFastTrackAvail(false)
483181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
483281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    snprintf(mName, kNameLength, "AudioIn_%X", id);
4833481fb67a595f23c5b7f5be84b06db9b84a41a42fGlenn Kasten    mNBLogWriter = audioFlinger->newWriter_l(kLogSize, mName);
483481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4835deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten    readInputParameters_l();
48366dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
48376dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // create an NBAIO source for the HAL input stream, and negotiate
48386dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    mInputSource = new AudioStreamInSource(input->stream);
48396dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    size_t numCounterOffers = 0;
48406dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    const NBAIO_Format offers[1] = {Format_from_SR_C(mSampleRate, mChannelCount, mFormat)};
48416dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    ssize_t index = mInputSource->negotiate(offers, 1, NULL, numCounterOffers);
48426dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    ALOG_ASSERT(index == 0);
48436dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
48446dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // initialize fast capture depending on configuration
48456dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    bool initFastCapture;
48466dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    switch (kUseFastCapture) {
48476dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    case FastCapture_Never:
48486dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        initFastCapture = false;
48496dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        break;
48506dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    case FastCapture_Always:
48516dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        initFastCapture = true;
48526dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        break;
48536dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    case FastCapture_Static:
48546dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        uint32_t primaryOutputSampleRate;
48556dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        {
48566dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            AutoMutex _l(audioFlinger->mHardwareLock);
48576dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            primaryOutputSampleRate = audioFlinger->mPrimaryOutputSampleRate;
48586dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
48596dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        initFastCapture =
48606dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                // either capture sample rate is same as (a reasonable) primary output sample rate
48616dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                (((primaryOutputSampleRate == 44100 || primaryOutputSampleRate == 48000) &&
48626dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    (mSampleRate == primaryOutputSampleRate)) ||
48636dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                // or primary output sample rate is unknown, and capture sample rate is reasonable
48646dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                ((primaryOutputSampleRate == 0) &&
48656dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    ((mSampleRate == 44100 || mSampleRate == 48000)))) &&
48669f81de3452dfb2385bd57dc05456a045174a1ab1Glenn Kasten                // and the buffer size is < 12 ms
48679f81de3452dfb2385bd57dc05456a045174a1ab1Glenn Kasten                (mFrameCount * 1000) / mSampleRate < 12;
48686dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        break;
48696dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // case FastCapture_Dynamic:
48706dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    }
48716dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
48726dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    if (initFastCapture) {
48736dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // create a Pipe for FastMixer to write to, and for us and fast tracks to read from
48746dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        NBAIO_Format format = mInputSource->format();
487549d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        size_t pipeFramesP2 = roundup(mSampleRate / 25);    // double-buffering of 20 ms each
48766dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        size_t pipeSize = pipeFramesP2 * Format_frameSize(format);
48776dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        void *pipeBuffer;
48786dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        const sp<MemoryDealer> roHeap(readOnlyHeap());
48796dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        sp<IMemory> pipeMemory;
48806dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if ((roHeap == 0) ||
48816dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                (pipeMemory = roHeap->allocate(pipeSize)) == 0 ||
48826dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                (pipeBuffer = pipeMemory->pointer()) == NULL) {
48836dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            ALOGE("not enough memory for pipe buffer size=%zu", pipeSize);
48846dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            goto failed;
48856dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
48866dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // pipe will be shared directly with fast clients, so clear to avoid leaking old information
48876dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        memset(pipeBuffer, 0, pipeSize);
48886dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        Pipe *pipe = new Pipe(pipeFramesP2, format, pipeBuffer);
48896dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        const NBAIO_Format offers[1] = {format};
48906dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        size_t numCounterOffers = 0;
48916dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
48926dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        ALOG_ASSERT(index == 0);
48936dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mPipeSink = pipe;
48946dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        PipeReader *pipeReader = new PipeReader(*pipe);
48956dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        numCounterOffers = 0;
48966dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        index = pipeReader->negotiate(offers, 1, NULL, numCounterOffers);
48976dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        ALOG_ASSERT(index == 0);
48986dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mPipeSource = pipeReader;
48996dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mPipeFramesP2 = pipeFramesP2;
49006dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mPipeMemory = pipeMemory;
49016dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
49026dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // create fast capture
49036dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mFastCapture = new FastCapture();
49046dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        FastCaptureStateQueue *sq = mFastCapture->sq();
49056dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#ifdef STATE_QUEUE_DUMP
49066dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // FIXME
49076dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
49086dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        FastCaptureState *state = sq->begin();
49096dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mCblk = NULL;
49106dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mInputSource = mInputSource.get();
49116dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mInputSourceGen++;
49126dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mPipeSink = pipe;
49136dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mPipeSinkGen++;
49146dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mFrameCount = mFrameCount;
49156dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mCommand = FastCaptureState::COLD_IDLE;
49166dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // already done in constructor initialization list
49176dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        //mFastCaptureFutex = 0;
49186dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mColdFutexAddr = &mFastCaptureFutex;
49196dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mColdGen++;
49206dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mDumpState = &mFastCaptureDumpState;
49216dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#ifdef TEE_SINK
49226dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // FIXME
49236dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
49246dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mFastCaptureNBLogWriter = audioFlinger->newWriter_l(kFastCaptureLogSize, "FastCapture");
49256dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mNBLogWriter = mFastCaptureNBLogWriter.get();
49266dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        sq->end();
49276dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        sq->push(FastCaptureStateQueue::BLOCK_UNTIL_PUSHED);
49286dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
49296dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // start the fast capture
49306dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mFastCapture->run("FastCapture", ANDROID_PRIORITY_URGENT_AUDIO);
49316dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        pid_t tid = mFastCapture->getTid();
49326dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        int err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
49336dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (err != 0) {
49346dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
49356dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    kPriorityFastCapture, getpid_cached, tid, err);
49366dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
49376dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
49386dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#ifdef AUDIO_WATCHDOG
49396dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // FIXME
49406dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
49416dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
49426e6704c06d61bc356e30c164081e5bcffb37920cGlenn Kasten        mFastTrackAvail = true;
49436dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    }
49446dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kastenfailed: ;
49456dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
49466dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // FIXME mNormalSource
494781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
494881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
494981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
495081784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::RecordThread::~RecordThread()
495181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
49526dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    if (mFastCapture != 0) {
49536dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        FastCaptureStateQueue *sq = mFastCapture->sq();
49546dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        FastCaptureState *state = sq->begin();
49556dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (state->mCommand == FastCaptureState::COLD_IDLE) {
49566dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            int32_t old = android_atomic_inc(&mFastCaptureFutex);
49576dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            if (old == -1) {
49586dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                (void) syscall(__NR_futex, &mFastCaptureFutex, FUTEX_WAKE_PRIVATE, 1);
49596dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            }
49606dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
49616dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        state->mCommand = FastCaptureState::EXIT;
49626dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        sq->end();
49636dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        sq->push(FastCaptureStateQueue::BLOCK_UNTIL_PUSHED);
49646dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mFastCapture->join();
49656dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mFastCapture.clear();
49666dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    }
49676dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    mAudioFlinger->unregisterWriter(mFastCaptureNBLogWriter);
4968481fb67a595f23c5b7f5be84b06db9b84a41a42fGlenn Kasten    mAudioFlinger->unregisterWriter(mNBLogWriter);
496981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    delete[] mRsmpInBuffer;
497081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
497181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
497281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::onFirstRef()
497381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
497481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    run(mName, PRIORITY_URGENT_AUDIO);
497581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
497681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
497781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentbool AudioFlinger::RecordThread::threadLoop()
497881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
497981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    nsecs_t lastWarning = 0;
498081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
498181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    inputStandBy();
498281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4983f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kastenreacquire_wakelock:
4984f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten    sp<RecordTrack> activeTrack;
49852b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten    int activeTracksGen;
4986f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten    {
4987f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten        Mutex::Autolock _l(mLock);
49882b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        size_t size = mActiveTracks.size();
49892b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        activeTracksGen = mActiveTracksGen;
49902b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        if (size > 0) {
49912b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            // FIXME an arbitrary choice
49922b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            activeTrack = mActiveTracks[0];
49932b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            acquireWakeLock_l(activeTrack->uid());
49942b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            if (size > 1) {
49952b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                SortedVector<int> tmp;
49962b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                for (size_t i = 0; i < size; i++) {
49972b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                    tmp.add(mActiveTracks[i]->uid());
49982b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                }
49992b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                updateWakeLockUids_l(tmp);
50002b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            }
50012b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        } else {
50022b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            acquireWakeLock_l(-1);
50032b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        }
5004f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten    }
5005f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten
50066dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // used to request a deferred sleep, to be executed later while mutex is unlocked
50076dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    uint32_t sleepUs = 0;
50086dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
50096dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // loop while there is work to do
50104ef0b463a56c19bad9197aa9f90d792090461429Glenn Kasten    for (;;) {
5011c527a7c2b1bfd26e8f3086e1b653d56e521379d9Glenn Kasten        Vector< sp<EffectChain> > effectChains;
50122cfbf88b89854f30b295e8ae26a031edb8d712f8Glenn Kasten
50135edadd46c76c5ff1c3edabf2ea943c2278e82e1cGlenn Kasten        // sleep with mutex unlocked
50146dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        if (sleepUs > 0) {
50156dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            usleep(sleepUs);
50166dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            sleepUs = 0;
50175edadd46c76c5ff1c3edabf2ea943c2278e82e1cGlenn Kasten        }
50185edadd46c76c5ff1c3edabf2ea943c2278e82e1cGlenn Kasten
50196dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // activeTracks accumulates a copy of a subset of mActiveTracks
50206dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        Vector< sp<RecordTrack> > activeTracks;
50216dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
5022735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten        // reference to the (first and only) active fast track
50236dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        sp<RecordTrack> fastTrack;
50241035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
5025735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten        // reference to a fast track which is about to be removed
5026735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten        sp<RecordTrack> fastTrackToRemove;
5027735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten
502881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        { // scope for mLock
502981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            Mutex::Autolock _l(mLock);
5030000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent
5031021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent            processConfigEvents_l();
5032f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten
5033000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent            // check exitPending here because checkForNewParameters_l() and
5034000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent            // checkForNewParameters_l() can temporarily release mLock
5035000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent            if (exitPending()) {
5036000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent                break;
5037000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent            }
5038000a4193dd82549192277fd4b9bb571d8a4c262fEric Laurent
50392b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            // if no active track(s), then standby and release wakelock
50402b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            size_t size = mActiveTracks.size();
50412b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            if (size == 0) {
504293e471f620454f7de73d190521568b1e25879767Glenn Kasten                standbyIfNotAlreadyInStandby();
50434ef0b463a56c19bad9197aa9f90d792090461429Glenn Kasten                // exitPending() can't become true here
504481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                releaseWakeLock_l();
504581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGV("RecordThread: loop stopping");
504681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // go to sleep
504781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                mWaitWorkCV.wait(mLock);
504881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                ALOGV("RecordThread: loop starting");
5049f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten                goto reacquire_wakelock;
5050f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten            }
5051f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten
50522b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            if (mActiveTracksGen != activeTracksGen) {
50532b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                activeTracksGen = mActiveTracksGen;
5054f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten                SortedVector<int> tmp;
50552b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                for (size_t i = 0; i < size; i++) {
50562b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                    tmp.add(mActiveTracks[i]->uid());
50572b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                }
5058f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten                updateWakeLockUids_l(tmp);
505981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
50609e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten
50616dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            bool doBroadcast = false;
50626dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            for (size_t i = 0; i < size; ) {
50639e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten
50646dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                activeTrack = mActiveTracks[i];
50656dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (activeTrack->isTerminated()) {
5066735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                    if (activeTrack->isFastTrack()) {
5067735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                        ALOG_ASSERT(fastTrackToRemove == 0);
5068735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                        fastTrackToRemove = activeTrack;
5069735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                    }
50706dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    removeTrack_l(activeTrack);
50712b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                    mActiveTracks.remove(activeTrack);
50722b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten                    mActiveTracksGen++;
50736dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    size--;
50749e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten                    continue;
50759e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten                }
50766dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
50776dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                TrackBase::track_state activeTrackState = activeTrack->mState;
50786dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                switch (activeTrackState) {
50796dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
50806dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                case TrackBase::PAUSING:
50816dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    mActiveTracks.remove(activeTrack);
50826dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    mActiveTracksGen++;
50836dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    doBroadcast = true;
50846dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    size--;
50856dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    continue;
50866dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
50876dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                case TrackBase::STARTING_1:
50886dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    sleepUs = 10000;
50896dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    i++;
50906dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    continue;
50916dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
50926dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                case TrackBase::STARTING_2:
50936dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    doBroadcast = true;
50946dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    mStandby = false;
50959e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten                    activeTrack->mState = TrackBase::ACTIVE;
50966dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    break;
50976dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
50986dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                case TrackBase::ACTIVE:
50996dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    break;
51006dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
51016dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                case TrackBase::IDLE:
51026dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    i++;
51036dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    continue;
51046dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
51056dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                default:
5106adad3d7d935da176ff24941b4ae9edf7340e9b96Glenn Kasten                    LOG_ALWAYS_FATAL("Unexpected activeTrackState %d", activeTrackState);
51079e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten                }
51082d94426cd3302cb1215c92c5f1c4b90c24ceb72bGlenn Kasten
51096dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                activeTracks.add(activeTrack);
51106dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                i++;
51112d94426cd3302cb1215c92c5f1c4b90c24ceb72bGlenn Kasten
51126dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                if (activeTrack->isFastTrack()) {
51136dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    ALOG_ASSERT(!mFastTrackAvail);
51146dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    ALOG_ASSERT(fastTrack == 0);
51156dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    fastTrack = activeTrack;
51166dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                }
51176dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            }
51186dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            if (doBroadcast) {
51196dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                mStartStopCond.broadcast();
51206dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            }
5121d9fc34fb0fcfcc739f868b116edf50c62af19d5eGlenn Kasten
51226dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            // sleep if there are no active tracks to process
51236dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            if (activeTracks.size() == 0) {
51246dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (sleepUs == 0) {
51256dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    sleepUs = kRecordThreadSleepUs;
51266dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                }
51276dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                continue;
512881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
51296dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            sleepUs = 0;
51309e98235a9e9bb870e1c76911e3b4d00386a52c39Glenn Kasten
513181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            lockEffectChains_l(effectChains);
513281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
513381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
51346dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // thread mutex is now unlocked, mActiveTracks unknown, activeTracks.size() > 0
51357165268ffa6c7b6b405b6afad82e2a346500e8eeGlenn Kasten
51366dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        size_t size = effectChains.size();
51376dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        for (size_t i = 0; i < size; i++) {
51381ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten            // thread mutex is not locked, but effect chain is locked
51391ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten            effectChains[i]->process_l();
51401ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten        }
514181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5142735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten        // Push a new fast capture state if fast capture is not already running, or cblk change
51436dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (mFastCapture != 0) {
51446dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            FastCaptureStateQueue *sq = mFastCapture->sq();
51456dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            FastCaptureState *state = sq->begin();
5146735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            bool didModify = false;
5147735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            FastCaptureStateQueue::block_t block = FastCaptureStateQueue::BLOCK_UNTIL_PUSHED;
51486dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            if (state->mCommand != FastCaptureState::READ_WRITE /* FIXME &&
51496dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    (kUseFastMixer != FastMixer_Dynamic || state->mTrackMask > 1)*/) {
51506dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                if (state->mCommand == FastCaptureState::COLD_IDLE) {
51516dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    int32_t old = android_atomic_inc(&mFastCaptureFutex);
51526dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    if (old == -1) {
51536dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                        (void) syscall(__NR_futex, &mFastCaptureFutex, FUTEX_WAKE_PRIVATE, 1);
51546dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    }
51556dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                }
51566dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                state->mCommand = FastCaptureState::READ_WRITE;
51576dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#if 0   // FIXME
51586dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                mFastCaptureDumpState.increaseSamplingN(mAudioFlinger->isLowRamDevice() ?
51596dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                        FastCaptureDumpState::kSamplingNforLowRamDevice : FastMixerDumpState::kSamplingN);
51606dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
5161735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                didModify = true;
5162735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            }
5163735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            audio_track_cblk_t *cblkOld = state->mCblk;
5164735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            audio_track_cblk_t *cblkNew = fastTrack != 0 ? fastTrack->cblk() : NULL;
5165735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            if (cblkNew != cblkOld) {
5166735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                state->mCblk = cblkNew;
5167735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                // block until acked if removing a fast track
5168735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                if (cblkOld != NULL) {
5169735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                    block = FastCaptureStateQueue::BLOCK_UNTIL_ACKED;
5170735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                }
5171735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                didModify = true;
5172735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            }
5173735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            sq->end(didModify);
5174735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten            if (didModify) {
5175735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten                sq->push(block);
51766dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#if 0
51776dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                if (kUseFastCapture == FastCapture_Dynamic) {
51786dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    mNormalSource = mPipeSource;
51796dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                }
51806dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
51816dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            }
51826dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
51836dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
5184735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten        // now run the fast track destructor with thread mutex unlocked
5185735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten        fastTrackToRemove.clear();
5186735f45fbc37d7905ffb722f40727edbed82319b7Glenn Kasten
51876dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // Read from HAL to keep up with fastest client if multiple active tracks, not slowest one.
51886dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // Only the client(s) that are too slow will overrun. But if even the fastest client is too
51896dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // slow, then this RecordThread will overrun by not calling HAL read often enough.
51906dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // If destination is non-contiguous, first read past the nominal end of buffer, then
51916dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // copy to the right place.  Permitted because mRsmpInBuffer was over-allocated.
51926dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
51936dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        int32_t rear = mRsmpInRear & (mRsmpInFramesP2 - 1);
51946dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        ssize_t framesRead;
51956dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
51966dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // If an NBAIO source is present, use it to read the normal capture's data
51976dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (mPipeSource != 0) {
51986dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            size_t framesToRead = mBufferSize / mFrameSize;
51996dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            framesRead = mPipeSource->read(&mRsmpInBuffer[rear * mChannelCount],
52006dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    framesToRead, AudioBufferProvider::kInvalidPTS);
52016dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            if (framesRead == 0) {
52026dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                // since pipe is non-blocking, simulate blocking input
52036dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                sleepUs = (framesToRead * 1000000LL) / mSampleRate;
52046dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            }
52056dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        // otherwise use the HAL / AudioStreamIn directly
52066dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        } else {
52076dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            ssize_t bytesRead = mInput->stream->read(mInput->stream,
52086dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                    &mRsmpInBuffer[rear * mChannelCount], mBufferSize);
52096dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            if (bytesRead < 0) {
52106dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                framesRead = bytesRead;
52116dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            } else {
52126dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                framesRead = bytesRead / mFrameSize;
52136dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            }
52146dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
52156dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
52166dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (framesRead < 0 || (framesRead == 0 && mPipeSource == 0)) {
52176dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            ALOGE("read failed: framesRead=%d", framesRead);
52186dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            // Force input into standby so that it tries to recover at next read attempt
52196dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            inputStandBy();
52206dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            sleepUs = kRecordThreadSleepUs;
52216dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
52226dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (framesRead <= 0) {
52233d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten            goto unlock;
52246dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        }
52256dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        ALOG_ASSERT(framesRead > 0);
52266dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
52276dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        if (mTeeSink != 0) {
52286dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            (void) mTeeSink->write(&mRsmpInBuffer[rear * mChannelCount], framesRead);
52296dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        }
52306dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // If destination is non-contiguous, we now correct for reading past end of buffer.
52313d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten        {
52323d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten            size_t part1 = mRsmpInFramesP2 - rear;
52333d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten            if ((size_t) framesRead > part1) {
52343d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten                memcpy(mRsmpInBuffer, &mRsmpInBuffer[mRsmpInFramesP2 * mChannelCount],
52353d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten                        (framesRead - part1) * mFrameSize);
52363d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kasten            }
52376dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        }
52386dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        rear = mRsmpInRear += framesRead;
52396dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52406dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        size = activeTracks.size();
52416dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // loop over each active track
52426dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        for (size_t i = 0; i < size; i++) {
52436dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            activeTrack = activeTracks[i];
52446dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52456dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // skip fast tracks, as those are handled directly by FastCapture
52466dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            if (activeTrack->isFastTrack()) {
52476dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                continue;
52486dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            }
52496dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
52506dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            enum {
52516dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                OVERRUN_UNKNOWN,
52526dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                OVERRUN_TRUE,
52536dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                OVERRUN_FALSE
52546dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            } overrun = OVERRUN_UNKNOWN;
52556dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52566dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            // loop over getNextBuffer to handle circular sink
52576dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            for (;;) {
52586dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52596dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                activeTrack->mSink.frameCount = ~0;
52606dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                status_t status = activeTrack->getNextBuffer(&activeTrack->mSink);
52616dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                size_t framesOut = activeTrack->mSink.frameCount;
52626dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                LOG_ALWAYS_FATAL_IF((status == OK) != (framesOut > 0));
52636dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52646dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                int32_t front = activeTrack->mRsmpInFront;
52656dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                ssize_t filled = rear - front;
52666dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                size_t framesIn;
52676dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52686dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (filled < 0) {
52696dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // should not happen, but treat like a massive overrun and re-sync
52706dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    framesIn = 0;
52716dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    activeTrack->mRsmpInFront = rear;
52726dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    overrun = OVERRUN_TRUE;
5273607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                } else if ((size_t) filled <= mRsmpInFrames) {
52746dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    framesIn = (size_t) filled;
52756dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                } else {
52766dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // client is not keeping up with server, but give it latest data
5277607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    framesIn = mRsmpInFrames;
5278607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    activeTrack->mRsmpInFront = front = rear - framesIn;
52796dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    overrun = OVERRUN_TRUE;
52806dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                }
52816dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
52824cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                if (framesOut == 0 || framesIn == 0) {
52834cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                    break;
52844cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                }
52854cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten
52866dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (activeTrack->mResampler == NULL) {
52876dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // no resampling
52886dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    if (framesIn > framesOut) {
52896dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        framesIn = framesOut;
52906dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    } else {
52916dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        framesOut = framesIn;
52926dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    }
52936dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    int8_t *dst = activeTrack->mSink.i8;
52946dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    while (framesIn > 0) {
52956dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        front &= mRsmpInFramesP2 - 1;
52966dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        size_t part1 = mRsmpInFramesP2 - front;
52976dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        if (part1 > framesIn) {
52986dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                            part1 = framesIn;
529981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        }
53006dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        int8_t *src = (int8_t *)mRsmpInBuffer + (front * mFrameSize);
53014cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                        if (mChannelCount == activeTrack->mChannelCount) {
53026dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                            memcpy(dst, src, part1 * mFrameSize);
53036dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        } else if (mChannelCount == 1) {
5304cd704219d22ec51660103684a680caf2c3a12dadGlenn Kasten                            upmix_to_stereo_i16_from_mono_i16((int16_t *)dst, (const int16_t *)src,
53056dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                    part1);
53061ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten                        } else {
5307cd704219d22ec51660103684a680caf2c3a12dadGlenn Kasten                            downmix_to_mono_i16_from_stereo_i16((int16_t *)dst, (const int16_t *)src,
53086dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                    part1);
53091ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten                        }
53106dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        dst += part1 * activeTrack->mFrameSize;
53116dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        front += part1;
53126dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        framesIn -= part1;
53131ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten                    }
53146dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    activeTrack->mRsmpInFront += framesOut;
53156dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
53166dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                } else {
53176dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // resampling
53186dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // FIXME framesInNeeded should really be part of resampler API, and should
53196dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    //       depend on the SRC ratio
53206dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    //       to keep mRsmpInBuffer full so resampler always has sufficient input
53216dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    size_t framesInNeeded;
53226dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // FIXME only re-calculate when it changes, and optimize for common ratios
53238661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                    // Do not precompute in/out because floating point is not associative
53248661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                    // e.g. a*b/c != a*(b/c).
53258661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                    const double in(mSampleRate);
53268661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                    const double out(activeTrack->mSampleRate);
53278661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                    framesInNeeded = ceil(framesOut * in / out) + 1;
5328607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    ALOGV("need %u frames in to produce %u out given in/out ratio of %.4g",
53298661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                                framesInNeeded, framesOut, in / out);
5330607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    // Although we theoretically have framesIn in circular buffer, some of those are
5331607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    // unreleased frames, and thus must be discounted for purpose of budgeting.
5332607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    size_t unreleased = activeTrack->mRsmpInUnrel;
5333607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                    framesIn = framesIn > unreleased ? framesIn - unreleased : 0;
53346dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    if (framesIn < framesInNeeded) {
5335607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        ALOGV("not enough to resample: have %u frames in but need %u in to "
5336607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                                "produce %u out given in/out ratio of %.4g",
53378661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                                framesIn, framesInNeeded, framesOut, in / out);
53388661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                        size_t newFramesOut = framesIn > 0 ? floor((framesIn - 1) * out / in) : 0;
5339607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        LOG_ALWAYS_FATAL_IF(newFramesOut >= framesOut);
5340607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        if (newFramesOut == 0) {
5341607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                            break;
53424cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                        }
53438661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                        framesInNeeded = ceil(newFramesOut * in / out) + 1;
5344607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        ALOGV("now need %u frames in to produce %u out given out/in ratio of %.4g",
53458661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                                framesInNeeded, newFramesOut, out / in);
5346607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        LOG_ALWAYS_FATAL_IF(framesIn < framesInNeeded);
5347607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        ALOGV("success 2: have %u frames in and need %u in to produce %u out "
5348607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                              "given in/out ratio of %.4g",
53498661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                              framesIn, framesInNeeded, newFramesOut, in / out);
5350607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        framesOut = newFramesOut;
53514cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                    } else {
5352607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        ALOGV("success 1: have %u in and need %u in to produce %u out "
53534cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                            "given in/out ratio of %.4g",
53548661aaff9e9a4d4c1b57f6a68cdbcab006354ab2Andy Hung                            framesIn, framesInNeeded, framesOut, in / out);
53558594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten                    }
53566dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
53576dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // reallocate mRsmpOutBuffer as needed; we will grow but never shrink
53586dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    if (activeTrack->mRsmpOutFrameCount < framesOut) {
5359607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                        // FIXME why does each track need it's own mRsmpOutBuffer? can't they share?
53606dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        delete[] activeTrack->mRsmpOutBuffer;
53616dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        // resampler always outputs stereo
53626dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        activeTrack->mRsmpOutBuffer = new int32_t[framesOut * FCC_2];
53636dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        activeTrack->mRsmpOutFrameCount = framesOut;
53648594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten                    }
53656dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
53666dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // resampler accumulates, but we only have one source track
53676dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    memset(activeTrack->mRsmpOutBuffer, 0, framesOut * FCC_2 * sizeof(int32_t));
53686dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    activeTrack->mResampler->resample(activeTrack->mRsmpOutBuffer, framesOut,
5369607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten                            // FIXME how about having activeTrack implement this interface itself?
53706dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                            activeTrack->mResamplerBufferProvider
53716dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                            /*this*/ /* AudioBufferProvider* */);
53726dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // ditherAndClamp() works as long as all buffers returned by
53736dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // activeTrack->getNextBuffer() are 32 bit aligned which should be always true.
53744cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                    if (activeTrack->mChannelCount == 1) {
537584a0c6e87c48f58a0d3be71961432c086a4d24ccAndy Hung                        // temporarily type pun mRsmpOutBuffer from Q4.27 to int16_t
53766dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        ditherAndClamp(activeTrack->mRsmpOutBuffer, activeTrack->mRsmpOutBuffer,
53776dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                framesOut);
53786dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        // the resampler always outputs stereo samples:
53796dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        // do post stereo to mono conversion
53806dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        downmix_to_mono_i16_from_stereo_i16(activeTrack->mSink.i16,
5381cd704219d22ec51660103684a680caf2c3a12dadGlenn Kasten                                (const int16_t *)activeTrack->mRsmpOutBuffer, framesOut);
53826dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    } else {
53836dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        ditherAndClamp((int32_t *)activeTrack->mSink.raw,
53846dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                activeTrack->mRsmpOutBuffer, framesOut);
53858594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten                    }
53866dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // now done with mRsmpOutBuffer
53878594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten
53888594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten                }
53898594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten
53906dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (framesOut > 0 && (overrun == OVERRUN_UNKNOWN)) {
53916dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    overrun = OVERRUN_FALSE;
53921ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten                }
539381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
53946dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (activeTrack->mFramesToDrop == 0) {
53956dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    if (framesOut > 0) {
53966dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        activeTrack->mSink.frameCount = framesOut;
53976dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        activeTrack->releaseBuffer(&activeTrack->mSink);
539881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
539981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                } else {
54006dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // FIXME could do a partial drop of framesOut
54016dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    if (activeTrack->mFramesToDrop > 0) {
54026dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        activeTrack->mFramesToDrop -= framesOut;
54036dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        if (activeTrack->mFramesToDrop <= 0) {
540425f4aa83efaa9179e65a20583a6d441de2c3ff3fGlenn Kasten                            activeTrack->clearSyncStartEvent();
54056dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        }
54066dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    } else {
54076dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        activeTrack->mFramesToDrop += framesOut;
54086dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        if (activeTrack->mFramesToDrop >= 0 || activeTrack->mSyncStartEvent == 0 ||
54096dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                activeTrack->mSyncStartEvent->isCancelled()) {
54106dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                            ALOGW("Synced record %s, session %d, trigger session %d",
54116dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                  (activeTrack->mFramesToDrop >= 0) ? "timed out" : "cancelled",
54126dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                  activeTrack->sessionId(),
54136dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                  (activeTrack->mSyncStartEvent != 0) ?
54146dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                          activeTrack->mSyncStartEvent->triggerSession() : 0);
541525f4aa83efaa9179e65a20583a6d441de2c3ff3fGlenn Kasten                            activeTrack->clearSyncStartEvent();
54166dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        }
541781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    }
541881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
54196dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
54206dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (framesOut == 0) {
54216dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    break;
54226dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                }
542381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
54246dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
54256dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            switch (overrun) {
54266dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            case OVERRUN_TRUE:
54276dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                // client isn't retrieving buffers fast enough
54286dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                if (!activeTrack->setOverflow()) {
54296dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    nsecs_t now = systemTime();
54306dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    // FIXME should lastWarning per track?
54316dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    if ((now - lastWarning) > kWarningThrottleNs) {
54326dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        ALOGW("RecordThread: buffer overflow");
54336dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                        lastWarning = now;
54346dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                    }
543581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
54366dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                break;
54376dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            case OVERRUN_FALSE:
54386dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                activeTrack->clearOverflow();
54396dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                break;
54406dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            case OVERRUN_UNKNOWN:
54416dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                break;
544281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
54436dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
544481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
54451ba19cd7fcdf18ab6efab2a1b831affab9a46157Glenn Kasten
54463d61bc1ffc8afc8d7be3b0d4205c9b5ba6daf2e8Glenn Kastenunlock:
544781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // enable changes in effect chain
544881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        unlockEffectChains(effectChains);
5449c527a7c2b1bfd26e8f3086e1b653d56e521379d9Glenn Kasten        // effectChains doesn't need to be cleared, since it is cleared by destructor at scope end
545081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
545181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
545293e471f620454f7de73d190521568b1e25879767Glenn Kasten    standbyIfNotAlreadyInStandby();
545381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
545481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    {
545581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Mutex::Autolock _l(mLock);
54569a54bc27876acd5d8be5b1fc3dc46701fe76fbb3Eric Laurent        for (size_t i = 0; i < mTracks.size(); i++) {
54579a54bc27876acd5d8be5b1fc3dc46701fe76fbb3Eric Laurent            sp<RecordTrack> track = mTracks[i];
54589a54bc27876acd5d8be5b1fc3dc46701fe76fbb3Eric Laurent            track->invalidate();
54599a54bc27876acd5d8be5b1fc3dc46701fe76fbb3Eric Laurent        }
54602b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        mActiveTracks.clear();
54612b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        mActiveTracksGen++;
546281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mStartStopCond.broadcast();
546381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
546481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
546581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    releaseWakeLock();
546681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
546781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("RecordThread %p exiting", this);
546881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return false;
546981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
547081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
547193e471f620454f7de73d190521568b1e25879767Glenn Kastenvoid AudioFlinger::RecordThread::standbyIfNotAlreadyInStandby()
547281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
547381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!mStandby) {
547481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        inputStandBy();
547581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mStandby = true;
547681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
547781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
547881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
547981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::inputStandBy()
548081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
54816dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    // Idle the fast capture if it's currently running
54826dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    if (mFastCapture != 0) {
54836dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        FastCaptureStateQueue *sq = mFastCapture->sq();
54846dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        FastCaptureState *state = sq->begin();
54856dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        if (!(state->mCommand & FastCaptureState::IDLE)) {
54866dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            state->mCommand = FastCaptureState::COLD_IDLE;
54876dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            state->mColdFutexAddr = &mFastCaptureFutex;
54886dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            state->mColdGen++;
54896dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            mFastCaptureFutex = 0;
54906dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sq->end();
54916dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // BLOCK_UNTIL_PUSHED would be insufficient, as we need it to stop doing I/O now
54926dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sq->push(FastCaptureStateQueue::BLOCK_UNTIL_ACKED);
54936dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#if 0
54946dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            if (kUseFastCapture == FastCapture_Dynamic) {
54956dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                // FIXME
54966dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            }
54976dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
54986dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#ifdef AUDIO_WATCHDOG
54996dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // FIXME
55006dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
55016dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        } else {
55026dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sq->end(false /*didModify*/);
55036dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        }
55046dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    }
550581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mInput->stream->common.standby(&mInput->stream->common);
550681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
550781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
550805997e21af6c4517f375def6563af4b9ebe95f39Glenn Kasten// RecordThread::createRecordTrack_l() must be called with AudioFlinger::mLock held
5509e198c360d5e75a9b2097844c495c10902e7e8500Glenn Kastensp<AudioFlinger::RecordThread::RecordTrack> AudioFlinger::RecordThread::createRecordTrack_l(
551081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const sp<AudioFlinger::Client>& client,
551181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        uint32_t sampleRate,
551281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_format_t format,
551381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        audio_channel_mask_t channelMask,
551474935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten        size_t *pFrameCount,
551581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int sessionId,
55167df8c0b799d8f52d6386e03313286dbd7d5cdc7cGlenn Kasten        size_t *notificationFrames,
5517462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen        int uid,
5518ddb0ccf3fb6fe8da8c71a6deb30561b821f3c0a2Glenn Kasten        IAudioFlinger::track_flags_t *flags,
551981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        pid_t tid,
552081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        status_t *status)
552181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
552274935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten    size_t frameCount = *pFrameCount;
552381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<RecordTrack> track;
552481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t lStatus;
552581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
552690e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten    // client expresses a preference for FAST, but we get the final say
552790e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten    if (*flags & IAudioFlinger::TRACK_FAST) {
552890e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten      if (
55297410591dad836434c72ddee66680802708b70c10Glenn Kasten            // use case: callback handler
55307410591dad836434c72ddee66680802708b70c10Glenn Kasten            (tid != -1) &&
55317410591dad836434c72ddee66680802708b70c10Glenn Kasten            // frame count is not specified, or is exactly the pipe depth
55327410591dad836434c72ddee66680802708b70c10Glenn Kasten            ((frameCount == 0) || (frameCount == mPipeFramesP2)) &&
55333a6c90aa0617666d9abc94c02b752d9eb3d64772Glenn Kasten            // PCM data
55343a6c90aa0617666d9abc94c02b752d9eb3d64772Glenn Kasten            audio_is_linear_pcm(format) &&
55356dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // native format
55366dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            (format == mFormat) &&
55376dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // native channel mask
55386dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            (channelMask == mChannelMask) &&
55396dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // native hardware sample rate
554090e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten            (sampleRate == mSampleRate) &&
55413a6c90aa0617666d9abc94c02b752d9eb3d64772Glenn Kasten            // record thread has an associated fast capture
55426dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            hasFastCapture() &&
55436dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // there are sufficient fast track slots available
55446dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            mFastTrackAvail
554590e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten        ) {
55467410591dad836434c72ddee66680802708b70c10Glenn Kasten        ALOGV("AUDIO_INPUT_FLAG_FAST accepted: frameCount=%u mFrameCount=%u",
554790e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten                frameCount, mFrameCount);
554890e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten      } else {
55497410591dad836434c72ddee66680802708b70c10Glenn Kasten        ALOGV("AUDIO_INPUT_FLAG_FAST denied: frameCount=%u mFrameCount=%u mPipeFramesP2=%u "
55507410591dad836434c72ddee66680802708b70c10Glenn Kasten                "format=%#x isLinear=%d channelMask=%#x sampleRate=%u mSampleRate=%u "
55516dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten                "hasFastCapture=%d tid=%d mFastTrackAvail=%d",
55527410591dad836434c72ddee66680802708b70c10Glenn Kasten                frameCount, mFrameCount, mPipeFramesP2,
55537410591dad836434c72ddee66680802708b70c10Glenn Kasten                format, audio_is_linear_pcm(format), channelMask, sampleRate, mSampleRate,
55547410591dad836434c72ddee66680802708b70c10Glenn Kasten                hasFastCapture(), tid, mFastTrackAvail);
555590e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten        *flags &= ~IAudioFlinger::TRACK_FAST;
55567410591dad836434c72ddee66680802708b70c10Glenn Kasten      }
55577410591dad836434c72ddee66680802708b70c10Glenn Kasten    }
55587410591dad836434c72ddee66680802708b70c10Glenn Kasten
55597410591dad836434c72ddee66680802708b70c10Glenn Kasten    // compute track buffer size in frames, and suggest the notification frame count
55607410591dad836434c72ddee66680802708b70c10Glenn Kasten    if (*flags & IAudioFlinger::TRACK_FAST) {
55617410591dad836434c72ddee66680802708b70c10Glenn Kasten        // fast track: frame count is exactly the pipe depth
55627410591dad836434c72ddee66680802708b70c10Glenn Kasten        frameCount = mPipeFramesP2;
55637410591dad836434c72ddee66680802708b70c10Glenn Kasten        // ignore requested notificationFrames, and always notify exactly once every HAL buffer
55647410591dad836434c72ddee66680802708b70c10Glenn Kasten        *notificationFrames = mFrameCount;
55657410591dad836434c72ddee66680802708b70c10Glenn Kasten    } else {
556649d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        // not fast track: max notification period is resampled equivalent of one HAL buffer time
556749d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        //                 or 20 ms if there is a fast capture
556849d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        // TODO This could be a roundupRatio inline, and const
556949d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        size_t maxNotificationFrames = ((int64_t) (hasFastCapture() ? mSampleRate/50 : mFrameCount)
557049d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten                * sampleRate + mSampleRate - 1) / mSampleRate;
557149d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        // minimum number of notification periods is at least kMinNotifications,
557249d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        // and at least kMinMs rounded up to a whole notification period (minNotificationsByMs)
557349d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        static const size_t kMinNotifications = 3;
557449d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        static const uint32_t kMinMs = 30;
557549d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        // TODO This could be a roundupRatio inline
557649d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        const size_t minFramesByMs = (sampleRate * kMinMs + 1000 - 1) / 1000;
557749d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        // TODO This could be a roundupRatio inline
557849d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        const size_t minNotificationsByMs = (minFramesByMs + maxNotificationFrames - 1) /
557949d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten                maxNotificationFrames;
558049d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        const size_t minFrameCount = maxNotificationFrames *
558149d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten                max(kMinNotifications, minNotificationsByMs);
558249d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        frameCount = max(frameCount, minFrameCount);
558349d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten        if (*notificationFrames == 0 || *notificationFrames > maxNotificationFrames) {
558449d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten            *notificationFrames = maxNotificationFrames;
55857410591dad836434c72ddee66680802708b70c10Glenn Kasten        }
558690e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten    }
558774935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten    *pFrameCount = frameCount;
558890e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten
558915e5798908ccac14e10c84834eaf08c42931bd06Glenn Kasten    lStatus = initCheck();
559015e5798908ccac14e10c84834eaf08c42931bd06Glenn Kasten    if (lStatus != NO_ERROR) {
559115e5798908ccac14e10c84834eaf08c42931bd06Glenn Kasten        ALOGE("createRecordTrack_l() audio driver not initialized");
559215e5798908ccac14e10c84834eaf08c42931bd06Glenn Kasten        goto Exit;
559315e5798908ccac14e10c84834eaf08c42931bd06Glenn Kasten    }
559481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
559581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    { // scope for mLock
559681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        Mutex::Autolock _l(mLock);
559781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
559881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        track = new RecordTrack(this, client, sampleRate,
559983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                      format, channelMask, frameCount, NULL, sessionId, uid,
560083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                      *flags, TrackBase::TYPE_DEFAULT);
560181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5602030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten        lStatus = track->initCheck();
5603030033342a6ea17003e6af38a56c7edc6d2ead01Glenn Kasten        if (lStatus != NO_ERROR) {
560435295078ab59c8c5d143a54d5a55557c3ca62c51Glenn Kasten            ALOGE("createRecordTrack_l() initCheck failed %d; no control block?", lStatus);
560503e9e83c47ab4a518da0a1f36b8f702f59221c95Haynes Mathew George            // track must be cleared from the caller as the caller has the AF lock
560681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            goto Exit;
560781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
560881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mTracks.add(track);
560981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
561081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
561181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
561281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        mAudioFlinger->btNrecIsOff();
561381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
561481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
561590e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten
561690e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten        if ((*flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
561790e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten            pid_t callingPid = IPCThreadState::self()->getCallingPid();
561890e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten            // we don't have CAP_SYS_NICE, nor do we want to have it as it's too powerful,
561990e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten            // so ask activity manager to do this on our behalf
562090e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten            sendPrioConfigEvent_l(callingPid, tid, kPriorityAudioApp);
562190e58b1fefc8caf70b34301a92bc86179580b6fcGlenn Kasten        }
562281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
562305997e21af6c4517f375def6563af4b9ebe95f39Glenn Kasten
562481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    lStatus = NO_ERROR;
562581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
562681784c37c61b09289654b979567a42bf73cd2b12Eric LaurentExit:
56279156ef3e11b68cc4b6d3cea77f1f63673855a6d1Glenn Kasten    *status = lStatus;
562881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return track;
562981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
563081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
563181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack,
563281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                           AudioSystem::sync_event_t event,
563381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                           int triggerSession)
563481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
563581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("RecordThread::start event %d, triggerSession %d", event, triggerSession);
563681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<ThreadBase> strongMe = this;
563781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t status = NO_ERROR;
563881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
563981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (event == AudioSystem::SYNC_EVENT_NONE) {
564025f4aa83efaa9179e65a20583a6d441de2c3ff3fGlenn Kasten        recordTrack->clearSyncStartEvent();
564181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else if (event != AudioSystem::SYNC_EVENT_SAME) {
56426dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        recordTrack->mSyncStartEvent = mAudioFlinger->createSyncEvent(event,
564381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                       triggerSession,
564481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                       recordTrack->sessionId(),
564581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                       syncStartEventCallback,
56466dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                                       recordTrack);
564781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // Sync event can be cancelled by the trigger session if the track is not in a
564881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // compatible state in which case we start record immediately
56496dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        if (recordTrack->mSyncStartEvent->isCancelled()) {
565025f4aa83efaa9179e65a20583a6d441de2c3ff3fGlenn Kasten            recordTrack->clearSyncStartEvent();
565181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        } else {
565281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // do not wait for the event for more than AudioSystem::kSyncRecordStartTimeOutMs
56536dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            recordTrack->mFramesToDrop = -
56544cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten                    ((AudioSystem::kSyncRecordStartTimeOutMs * recordTrack->mSampleRate) / 1000);
565581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
565681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
565781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
565881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    {
565947c2070b2ce8aedb7300c0aad91caccf3c383841Glenn Kasten        // This section is a rendezvous between binder thread executing start() and RecordThread
566081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        AutoMutex lock(mLock);
56616dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        if (mActiveTracks.indexOf(recordTrack) >= 0) {
56626dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            if (recordTrack->mState == TrackBase::PAUSING) {
56636dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                ALOGV("active record track PAUSING -> ACTIVE");
5664f10ffec18f930d92e1abe9200d60e746831841a7Glenn Kasten                recordTrack->mState = TrackBase::ACTIVE;
56656dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            } else {
56666dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten                ALOGV("active record track state %d", recordTrack->mState);
566781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
566881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            return status;
566981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
567081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
56714cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten        // TODO consider other ways of handling this, such as changing the state to :STARTING and
56724cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten        //      adding the track to mActiveTracks after returning from AudioSystem::startInput(),
56734cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten        //      or using a separate command thread
56746dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        recordTrack->mState = TrackBase::STARTING_1;
56752b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        mActiveTracks.add(recordTrack);
56762b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        mActiveTracksGen++;
567783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent        status_t status = NO_ERROR;
567883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent        if (recordTrack->isExternalTrack()) {
567983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            mLock.unlock();
56804dc680607181e6a76f4e91a39366c4f5dfb7b03eEric Laurent            status = AudioSystem::startInput(mId, (audio_session_t)recordTrack->sessionId());
568183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            mLock.lock();
568283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            // FIXME should verify that recordTrack is still in mActiveTracks
568383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            if (status != NO_ERROR) {
568483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                mActiveTracks.remove(recordTrack);
568583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                mActiveTracksGen++;
568683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                recordTrack->clearSyncStartEvent();
568783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                ALOGV("RecordThread::start error %d", status);
568883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                return status;
568983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            }
569081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
56916dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // Catch up with current buffer indices if thread is already running.
56926dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // This is what makes a new client discard all buffered data.  If the track's mRsmpInFront
56936dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // was initialized to some value closer to the thread's mRsmpInFront, then the track could
56946dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // see previously buffered data before it called start(), but with greater risk of overrun.
56956dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
56966dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        recordTrack->mRsmpInFront = mRsmpInRear;
56976dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        recordTrack->mRsmpInUnrel = 0;
56986dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // FIXME why reset?
56996dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        if (recordTrack->mResampler != NULL) {
57006dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            recordTrack->mResampler->reset();
57016dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        }
57026dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        recordTrack->mState = TrackBase::STARTING_2;
570381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // signal thread to start
570481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mWaitWorkCV.broadcast();
57052b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        if (mActiveTracks.indexOf(recordTrack) < 0) {
570681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ALOGV("Record failed to start");
570781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status = BAD_VALUE;
570881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            goto startError;
570981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
571081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return status;
571181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
57127c027248e1a4ccd5b22bc4deafb03e2d87ac8f38Glenn Kasten
571381784c37c61b09289654b979567a42bf73cd2b12Eric LaurentstartError:
571483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    if (recordTrack->isExternalTrack()) {
57154dc680607181e6a76f4e91a39366c4f5dfb7b03eEric Laurent        AudioSystem::stopInput(mId, (audio_session_t)recordTrack->sessionId());
571683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    }
571725f4aa83efaa9179e65a20583a6d441de2c3ff3fGlenn Kasten    recordTrack->clearSyncStartEvent();
57186dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // FIXME I wonder why we do not reset the state here?
571981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return status;
572081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
572181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
572281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::syncStartEventCallback(const wp<SyncEvent>& event)
572381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
572481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<SyncEvent> strongEvent = event.promote();
572581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
572681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (strongEvent != 0) {
57278ea16e4b0a7d398d26887c18675b3899de5d779dEric Laurent        sp<RefBase> ptr = strongEvent->cookie().promote();
57288ea16e4b0a7d398d26887c18675b3899de5d779dEric Laurent        if (ptr != 0) {
57298ea16e4b0a7d398d26887c18675b3899de5d779dEric Laurent            RecordTrack *recordTrack = (RecordTrack *)ptr.get();
57308ea16e4b0a7d398d26887c18675b3899de5d779dEric Laurent            recordTrack->handleSyncStartEvent(strongEvent);
57318ea16e4b0a7d398d26887c18675b3899de5d779dEric Laurent        }
573281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
573381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
573481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5735a8356f663014e7d4c27869629af83d8bb3441e19Glenn Kastenbool AudioFlinger::RecordThread::stop(RecordThread::RecordTrack* recordTrack) {
573681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("RecordThread::stop");
5737a8356f663014e7d4c27869629af83d8bb3441e19Glenn Kasten    AutoMutex _l(mLock);
57382b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten    if (mActiveTracks.indexOf(recordTrack) != 0 || recordTrack->mState == TrackBase::PAUSING) {
573981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return false;
574081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
574147c2070b2ce8aedb7300c0aad91caccf3c383841Glenn Kasten    // note that threadLoop may still be processing the track at this point [without lock]
574281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    recordTrack->mState = TrackBase::PAUSING;
574381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // do not wait for mStartStopCond if exiting
574481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (exitPending()) {
574581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return true;
574681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
574747c2070b2ce8aedb7300c0aad91caccf3c383841Glenn Kasten    // FIXME incorrect usage of wait: no explicit predicate or loop
574881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mStartStopCond.wait(mLock);
57492b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten    // if we have been restarted, recordTrack is in mActiveTracks here
57502b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten    if (exitPending() || mActiveTracks.indexOf(recordTrack) != 0) {
575181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        ALOGV("Record stopped OK");
575281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return true;
575381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
575481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return false;
575581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
575681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
57570f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenbool AudioFlinger::RecordThread::isValidSyncEvent(const sp<SyncEvent>& event __unused) const
575881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
575981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return false;
576081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
576181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
57620f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenstatus_t AudioFlinger::RecordThread::setSyncEvent(const sp<SyncEvent>& event __unused)
576381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
576481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#if 0   // This branch is currently dead code, but is preserved in case it will be needed in future
576581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (!isValidSyncEvent(event)) {
576681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return BAD_VALUE;
576781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
576881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
576981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int eventSession = event->triggerSession();
577081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t ret = NAME_NOT_FOUND;
577181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
577281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
577381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
577481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mTracks.size(); i++) {
577581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<RecordTrack> track = mTracks[i];
577681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (eventSession == track->sessionId()) {
577781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            (void) track->setSyncEvent(event);
577881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ret = NO_ERROR;
577981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
578081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
578181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return ret;
578281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#else
578381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return BAD_VALUE;
578481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
578581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
578681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
578781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// destroyTrack_l() must be called with ThreadBase::mLock held
578881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::destroyTrack_l(const sp<RecordTrack>& track)
578981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
5790bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    track->terminate();
5791bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    track->mState = TrackBase::STOPPED;
579281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // active tracks are removed by threadLoop()
57932b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten    if (mActiveTracks.indexOf(track) < 0) {
579481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        removeTrack_l(track);
579581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
579681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
579781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
579881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::removeTrack_l(const sp<RecordTrack>& track)
579981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
580081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mTracks.remove(track);
580181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // need anything related to effects here?
58026dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    if (track->isFastTrack()) {
58036dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        ALOG_ASSERT(!mFastTrackAvail);
58046dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten        mFastTrackAvail = true;
58056dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    }
580681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
580781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
580881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
580981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
581081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpInternals(fd, args);
581181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpTracks(fd, args);
581281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpEffectChains(fd, args);
581381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
581481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
581581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentvoid AudioFlinger::RecordThread::dumpInternals(int fd, const Vector<String16>& args)
581681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
581787cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "\nInput thread %p:\n", this);
581881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
58192b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten    if (mActiveTracks.size() > 0) {
582087cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, "  Buffer size: %zu bytes\n", mBufferSize);
582181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    } else {
582287cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, "  No active record clients\n");
582381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
58246e6704c06d61bc356e30c164081e5bcffb37920cGlenn Kasten    dprintf(fd, "  Fast capture thread: %s\n", hasFastCapture() ? "yes" : "no");
58256dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    dprintf(fd, "  Fast track available: %s\n", mFastTrackAvail ? "yes" : "no");
582681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
582781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    dumpBase(fd, args);
582881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
582981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
58300f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kastenvoid AudioFlinger::RecordThread::dumpTracks(int fd, const Vector<String16>& args __unused)
583181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
583281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    const size_t SIZE = 256;
583381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    char buffer[SIZE];
583481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    String8 result;
583581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5836b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numtracks = mTracks.size();
5837b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numactive = mActiveTracks.size();
5838b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    size_t numactiveseen = 0;
583987cebadd48710e42474756fc3513df678de045ceElliott Hughes    dprintf(fd, "  %d Tracks", numtracks);
5840b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (numtracks) {
584187cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, " of which %d are active\n", numactive);
5842b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        RecordTrack::appendDumpHeader(result);
5843b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        for (size_t i = 0; i < numtracks ; ++i) {
5844b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            sp<RecordTrack> track = mTracks[i];
5845b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            if (track != 0) {
5846b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                bool active = mActiveTracks.indexOf(track) >= 0;
5847b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                if (active) {
5848b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                    numactiveseen++;
5849b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                }
5850b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                track->dump(buffer, SIZE, active);
5851b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                result.append(buffer);
5852b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            }
585381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
5854b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    } else {
585587cebadd48710e42474756fc3513df678de045ceElliott Hughes        dprintf(fd, "\n");
585681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
585781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5858b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen    if (numactiveseen != numactive) {
5859b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        snprintf(buffer, SIZE, "  The following tracks are in the active list but"
5860b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                " not in the track list\n");
586181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        result.append(buffer);
586281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        RecordTrack::appendDumpHeader(result);
5863b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen        for (size_t i = 0; i < numactive; ++i) {
58642b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            sp<RecordTrack> track = mActiveTracks[i];
5865b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            if (mTracks.indexOf(track) < 0) {
5866b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                track->dump(buffer, SIZE, true);
5867b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen                result.append(buffer);
5868b220884bf3129253cc5bc8d030bc475411ea4911Marco Nelissen            }
58692b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten        }
587081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
587181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
587281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    write(fd, result.string(), result.size());
587381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
587481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
587581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// AudioBufferProvider interface
58766dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kastenstatus_t AudioFlinger::RecordThread::ResamplerBufferProvider::getNextBuffer(
58776dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        AudioBufferProvider::Buffer* buffer, int64_t pts __unused)
587881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
58796dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    RecordTrack *activeTrack = mRecordTrack;
58806dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    sp<ThreadBase> threadBase = activeTrack->mThread.promote();
58816dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    if (threadBase == 0) {
58826dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        buffer->frameCount = 0;
5883607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten        buffer->raw = NULL;
58846dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        return NOT_ENOUGH_DATA;
58856dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    }
58866dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    RecordThread *recordThread = (RecordThread *) threadBase.get();
58876dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    int32_t rear = recordThread->mRsmpInRear;
58886dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    int32_t front = activeTrack->mRsmpInFront;
58898594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    ssize_t filled = rear - front;
58906dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // FIXME should not be P2 (don't want to increase latency)
58916dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // FIXME if client not keeping up, discard
5892607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten    LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
58938594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    // 'filled' may be non-contiguous, so return only the first contiguous chunk
58946dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    front &= recordThread->mRsmpInFramesP2 - 1;
58956dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    size_t part1 = recordThread->mRsmpInFramesP2 - front;
58968594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    if (part1 > (size_t) filled) {
58978594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        part1 = filled;
58988594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    }
58998594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    size_t ask = buffer->frameCount;
59008594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    ALOG_ASSERT(ask > 0);
59018594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    if (part1 > ask) {
59028594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        part1 = ask;
59038594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    }
59048594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    if (part1 == 0) {
59058594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        // Higher-level should keep mRsmpInBuffer full, and not call resampler if empty
5906607fa3e928de696eba49f198af72d68e4591ca1bGlenn Kasten        LOG_ALWAYS_FATAL("RecordThread::getNextBuffer() starved");
59078594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        buffer->raw = NULL;
59088594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        buffer->frameCount = 0;
59096dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        activeTrack->mRsmpInUnrel = 0;
59108594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        return NOT_ENOUGH_DATA;
59118594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    }
59128594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten
59136dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    buffer->raw = recordThread->mRsmpInBuffer + front * recordThread->mChannelCount;
59148594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    buffer->frameCount = part1;
59156dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    activeTrack->mRsmpInUnrel = part1;
591681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return NO_ERROR;
591781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
591881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
591981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// AudioBufferProvider interface
59206dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kastenvoid AudioFlinger::RecordThread::ResamplerBufferProvider::releaseBuffer(
59216dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        AudioBufferProvider::Buffer* buffer)
592281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
59236dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    RecordTrack *activeTrack = mRecordTrack;
59248594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    size_t stepCount = buffer->frameCount;
59258594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    if (stepCount == 0) {
59268594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten        return;
59278594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    }
59286dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    ALOG_ASSERT(stepCount <= activeTrack->mRsmpInUnrel);
59296dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    activeTrack->mRsmpInUnrel -= stepCount;
59306dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    activeTrack->mRsmpInFront += stepCount;
59318594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    buffer->raw = NULL;
593281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    buffer->frameCount = 0;
593381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
593481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
59351035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurentbool AudioFlinger::RecordThread::checkForNewParameter_l(const String8& keyValuePair,
59361035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                        status_t& status)
593781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
593881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool reconfig = false;
593981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
59401035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    status = NO_ERROR;
59411035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
59421035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    audio_format_t reqFormat = mFormat;
59431035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    uint32_t samplingRate = mSampleRate;
59441035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    audio_channel_mask_t channelMask = audio_channel_in_mask_from_count(mChannelCount);
59451035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
59461035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    AudioParameter param = AudioParameter(keyValuePair);
59471035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    int value;
59481035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // TODO Investigate when this code runs. Check with audio policy when a sample rate and
59491035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //      channel count change can be requested. Do we mandate the first client defines the
59501035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //      HAL sampling rate and channel count or do we allow changes on the fly?
59511035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
59521035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        samplingRate = value;
59531035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        reconfig = true;
59541035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
59551035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
59561035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
59571035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = BAD_VALUE;
59581035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
59591035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            reqFormat = (audio_format_t) value;
596081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            reconfig = true;
596181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
59621035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
59631035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
59641035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        audio_channel_mask_t mask = (audio_channel_mask_t) value;
59651035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (mask != AUDIO_CHANNEL_IN_MONO && mask != AUDIO_CHANNEL_IN_STEREO) {
59661035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = BAD_VALUE;
59671035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
59681035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            channelMask = mask;
59691035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            reconfig = true;
597081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
59711035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
59721035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
59731035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // do not accept frame count changes if tracks are open as the track buffer
59741035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // size depends on frame count and correct behavior would not be guaranteed
59751035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // if frame count is changed after track creation
59761035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (mActiveTracks.size() > 0) {
59771035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = INVALID_OPERATION;
59781035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
59791035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            reconfig = true;
598081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
59811035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
59821035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
59831035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // forward device change to effects that have requested to be
59841035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // aware of attached audio device.
59851035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        for (size_t i = 0; i < mEffectChains.size(); i++) {
59861035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mEffectChains[i]->setDevice_l(value);
598781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
598881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
59891035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // store input device and output device but do not forward output device to audio HAL.
59901035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // Note that status is ignored by the caller for output device
59911035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // (see AudioFlinger::setParameters()
59921035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (audio_is_output_devices(value)) {
59931035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mOutDevice = value;
59941035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            status = BAD_VALUE;
59951035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        } else {
59961035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mInDevice = value;
59971035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // disable AEC and NS if the device is a BT SCO headset supporting those
59981035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            // pre processings
59991035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (mTracks.size() > 0) {
60001035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
60011035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                    mAudioFlinger->btNrecIsOff();
60021035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                for (size_t i = 0; i < mTracks.size(); i++) {
60031035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                    sp<RecordTrack> track = mTracks[i];
60041035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                    setEffectSuspended_l(FX_IID_AEC, suspend, track->sessionId());
60051035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                    setEffectSuspended_l(FX_IID_NS, suspend, track->sessionId());
600681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                }
600781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
600881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
60091035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
60101035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (param.getInt(String8(AudioParameter::keyInputSource), value) == NO_ERROR &&
60111035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mAudioSource != (audio_source_t)value) {
60121035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // forward device change to effects that have requested to be
60131035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        // aware of attached audio device.
60141035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        for (size_t i = 0; i < mEffectChains.size(); i++) {
60151035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mEffectChains[i]->setAudioSource_l((audio_source_t)value);
601681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
60171035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        mAudioSource = (audio_source_t)value;
60181035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    }
6019e198c360d5e75a9b2097844c495c10902e7e8500Glenn Kasten
60201035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    if (status == NO_ERROR) {
60211035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        status = mInput->stream->common.set_parameters(&mInput->stream->common,
60221035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                keyValuePair.string());
60231035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (status == INVALID_OPERATION) {
60241035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            inputStandBy();
602581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status = mInput->stream->common.set_parameters(&mInput->stream->common,
602681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    keyValuePair.string());
60271035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
60281035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        if (reconfig) {
60291035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (status == BAD_VALUE &&
60301035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
60311035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
60321035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                (mInput->stream->common.get_sample_rate(&mInput->stream->common)
60331035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                        <= (2 * samplingRate)) &&
6034e541269be94f3a1072932d51537905b120ef4733Andy Hung                audio_channel_count_from_in_mask(
6035e541269be94f3a1072932d51537905b120ef4733Andy Hung                        mInput->stream->common.get_channels(&mInput->stream->common)) <= FCC_2 &&
60361035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                (channelMask == AUDIO_CHANNEL_IN_MONO ||
60371035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                        channelMask == AUDIO_CHANNEL_IN_STEREO)) {
60381035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                status = NO_ERROR;
603981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
60401035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            if (status == NO_ERROR) {
60411035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                readInputParameters_l();
60421035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                sendIoConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
604381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            }
604481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
604581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
60461035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
604781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return reconfig;
604881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
604981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
605081784c37c61b09289654b979567a42bf73cd2b12Eric LaurentString8 AudioFlinger::RecordThread::getParameters(const String8& keys)
605181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
605281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
605381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (initCheck() != NO_ERROR) {
6054d8ea699dc8e7dac58bb32e9cdb31b0758da25817Glenn Kasten        return String8();
605581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
605681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6057d8ea699dc8e7dac58bb32e9cdb31b0758da25817Glenn Kasten    char *s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
6058d8ea699dc8e7dac58bb32e9cdb31b0758da25817Glenn Kasten    const String8 out_s8(s);
605981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    free(s);
606081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return out_s8;
606181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
606281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6063021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurentvoid AudioFlinger::RecordThread::audioConfigChanged(int event, int param __unused) {
606481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioSystem::OutputDescriptor desc;
6065b2737d0b33c17e408d96d6f9eeaa3381479c94c7Glenn Kasten    const void *param2 = NULL;
606681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
606781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    switch (event) {
606881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::INPUT_OPENED:
606981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::INPUT_CONFIG_CHANGED:
6070fad226abd12435dbcd232f7de396f1a097b2bd5fGlenn Kasten        desc.channelMask = mChannelMask;
607181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.samplingRate = mSampleRate;
607281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.format = mFormat;
607381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.frameCount = mFrameCount;
607481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        desc.latency = 0;
607581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        param2 = &desc;
607681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
607781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
607881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    case AudioSystem::INPUT_CLOSED:
607981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    default:
608081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        break;
608181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
6082021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent    mAudioFlinger->audioConfigChanged(event, mId, param2);
608381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
608481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6085deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kastenvoid AudioFlinger::RecordThread::readInputParameters_l()
608681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
608781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
608881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
6089e541269be94f3a1072932d51537905b120ef4733Andy Hung    mChannelCount = audio_channel_count_from_in_mask(mChannelMask);
6090463be250de73907965faa6a216c00312bf81e049Andy Hung    mHALFormat = mInput->stream->common.get_format(&mInput->stream->common);
6091463be250de73907965faa6a216c00312bf81e049Andy Hung    mFormat = mHALFormat;
6092291bb6d8947c5b0c062f0895d623c529259bfa39Glenn Kasten    if (mFormat != AUDIO_FORMAT_PCM_16_BIT) {
6093cac3daa6332bf6d1f7d26adc4a9915f3d7992dd9Glenn Kasten        ALOGE("HAL format %#x not supported; must be AUDIO_FORMAT_PCM_16_BIT", mFormat);
6094291bb6d8947c5b0c062f0895d623c529259bfa39Glenn Kasten    }
6095665470b36f202bcc8ee2f7417f68fd2608dd07c1Eric Laurent    mFrameSize = audio_stream_in_frame_size(mInput->stream);
6096548efc94813c1dec6e8cf6c085ae41ccb04827f1Glenn Kasten    mBufferSize = mInput->stream->common.get_buffer_size(&mInput->stream->common);
6097548efc94813c1dec6e8cf6c085ae41ccb04827f1Glenn Kasten    mFrameCount = mBufferSize / mFrameSize;
60986dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // This is the formula for calculating the temporary buffer size.
6099e842614837e5401adf77e90485300c288b9a7876Glenn Kasten    // With 7 HAL buffers, we can guarantee ability to down-sample the input by ratio of 6:1 to
61008594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    // 1 full output buffer, regardless of the alignment of the available input.
6101e842614837e5401adf77e90485300c288b9a7876Glenn Kasten    // The value is somewhat arbitrary, and could probably be even larger.
61026dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // A larger value should allow more old data to be read after a track calls start(),
61036dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    // without increasing latency.
6104e842614837e5401adf77e90485300c288b9a7876Glenn Kasten    mRsmpInFrames = mFrameCount * 7;
61058594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    mRsmpInFramesP2 = roundup(mRsmpInFrames);
61066dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    delete[] mRsmpInBuffer;
610749d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten
610849d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten    // TODO optimize audio capture buffer sizes ...
610949d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten    // Here we calculate the size of the sliding buffer used as a source
611049d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten    // for resampling.  mRsmpInFramesP2 is currently roundup(mFrameCount * 7).
611149d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten    // For current HAL frame counts, this is usually 2048 = 40 ms.  It would
611249d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten    // be better to have it derived from the pipe depth in the long term.
611349d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten    // The current value is higher than necessary.  However it should not add to latency.
611449d00ad9164ea5ce48c85765a2b6460d9b457d38Glenn Kasten
61158594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    // Over-allocate beyond mRsmpInFramesP2 to permit a HAL read past end of buffer
61168594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten    mRsmpInBuffer = new int16_t[(mRsmpInFramesP2 + mFrameCount - 1) * mChannelCount];
61176dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
61184cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten    // AudioRecord mSampleRate and mChannelCount are constant due to AudioRecord API constraints.
61194cc0a6a835c806d200ef83ef31fe5bef327c355cGlenn Kasten    // But if thread's mSampleRate or mChannelCount changes, how will that affect active tracks?
612081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
612181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
61225f972c031d4061f4f037c9fda1ea4bd9b6a756cdGlenn Kastenuint32_t AudioFlinger::RecordThread::getInputFramesLost()
612381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
612481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
612581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (initCheck() != NO_ERROR) {
612681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return 0;
612781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
612881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
612981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return mInput->stream->get_input_frames_lost(mInput->stream);
613081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
613181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
613281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentuint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId) const
613381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
613481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
613581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t result = 0;
613681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (getEffectChain_l(sessionId) != 0) {
613781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        result = EFFECT_SESSION;
613881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
613981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
614081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t i = 0; i < mTracks.size(); ++i) {
614181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (sessionId == mTracks[i]->sessionId()) {
614281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            result |= TRACK_SESSION;
614381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            break;
614481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
614581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
614681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
614781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return result;
614881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
614981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
615081784c37c61b09289654b979567a42bf73cd2b12Eric LaurentKeyedVector<int, bool> AudioFlinger::RecordThread::sessionIds() const
615181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
615281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    KeyedVector<int, bool> ids;
615381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
615481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    for (size_t j = 0; j < mTracks.size(); ++j) {
615581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        sp<RecordThread::RecordTrack> track = mTracks[j];
615681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        int sessionId = track->sessionId();
615781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        if (ids.indexOfKey(sessionId) < 0) {
615881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            ids.add(sessionId, true);
615981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
616081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
616181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return ids;
616281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
616381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
616481784c37c61b09289654b979567a42bf73cd2b12Eric LaurentAudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
616581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
616681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    Mutex::Autolock _l(mLock);
616781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioStreamIn *input = mInput;
616881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mInput = NULL;
616981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return input;
617081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
617181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
617281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// this method must always be called either with ThreadBase mLock held or inside the thread loop
617381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentaudio_stream_t* AudioFlinger::RecordThread::stream() const
617481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
617581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mInput == NULL) {
617681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return NULL;
617781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
617881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return &mInput->stream->common;
617981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
618081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
618181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentstatus_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
618281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
618381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // only one chain per input thread
618481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mEffectChains.size() != 0) {
6185aaa44478a373232d8416657035a9020f9c7aa7c3Eric Laurent        ALOGW("addEffectChain_l() already one chain %p on thread %p", chain.get(), this);
618681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        return INVALID_OPERATION;
618781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
618881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
6189aaa44478a373232d8416657035a9020f9c7aa7c3Eric Laurent    chain->setThread(this);
619081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    chain->setInBuffer(NULL);
619181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    chain->setOutBuffer(NULL);
619281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
619381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    checkSuspendOnAddEffectChain_l(chain);
619481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
61951b92868010b5c1409692a86f6b27e4a265b64c1aEric Laurent    // make sure enabled pre processing effects state is communicated to the HAL as we
61961b92868010b5c1409692a86f6b27e4a265b64c1aEric Laurent    // just moved them to a new input stream.
61971b92868010b5c1409692a86f6b27e4a265b64c1aEric Laurent    chain->syncHalEffectsState();
61981b92868010b5c1409692a86f6b27e4a265b64c1aEric Laurent
619981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mEffectChains.add(chain);
620081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
620181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return NO_ERROR;
620281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
620381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
620481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentsize_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
620581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
620681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
620781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ALOGW_IF(mEffectChains.size() != 1,
620881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            "removeEffectChain_l() %p invalid chain size %d on thread %p",
620981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            chain.get(), mEffectChains.size(), this);
621081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    if (mEffectChains.size() == 1) {
621181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        mEffectChains.removeAt(0);
621281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    }
621381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    return 0;
621481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}
621581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
62161c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurentstatus_t AudioFlinger::RecordThread::createAudioPatch_l(const struct audio_patch *patch,
62171c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                                          audio_patch_handle_t *handle)
62181c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent{
62191c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    status_t status = NO_ERROR;
62201c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    if (mInput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
62211c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        // store new device and send to effects
62221c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        mInDevice = patch->sources[0].ext.device.type;
62231c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        for (size_t i = 0; i < mEffectChains.size(); i++) {
62241c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mEffectChains[i]->setDevice_l(mInDevice);
62251c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
62261c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
62271c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        // disable AEC and NS if the device is a BT SCO headset supporting those
62281c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        // pre processings
62291c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        if (mTracks.size() > 0) {
62301c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
62311c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                mAudioFlinger->btNrecIsOff();
62321c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            for (size_t i = 0; i < mTracks.size(); i++) {
62331c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                sp<RecordTrack> track = mTracks[i];
62341c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                setEffectSuspended_l(FX_IID_AEC, suspend, track->sessionId());
62351c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                setEffectSuspended_l(FX_IID_NS, suspend, track->sessionId());
62361c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            }
62371c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
62381c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
62391c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        // store new source and send to effects
62401c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        if (mAudioSource != patch->sinks[0].ext.mix.usecase.source) {
62411c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mAudioSource = patch->sinks[0].ext.mix.usecase.source;
62421c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            for (size_t i = 0; i < mEffectChains.size(); i++) {
62431c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                mEffectChains[i]->setAudioSource_l(mAudioSource);
62441c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            }
62451c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
62461c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
62471c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_hw_device_t *hwDevice = mInput->audioHwDev->hwDevice();
62481c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        status = hwDevice->create_audio_patch(hwDevice,
62491c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->num_sources,
62501c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->sources,
62511c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->num_sinks,
62521c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               patch->sinks,
62531c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               handle);
62541c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    } else {
62551c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        ALOG_ASSERT(false, "createAudioPatch_l() called on a pre 3.0 HAL");
62561c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    }
62571c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    return status;
62581c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent}
62591c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
62601c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurentstatus_t AudioFlinger::RecordThread::releaseAudioPatch_l(const audio_patch_handle_t handle)
62611c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent{
62621c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    status_t status = NO_ERROR;
62631c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    if (mInput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
62641c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_hw_device_t *hwDevice = mInput->audioHwDev->hwDevice();
62651c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        status = hwDevice->release_audio_patch(hwDevice, handle);
62661c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    } else {
62671c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        ALOG_ASSERT(false, "releaseAudioPatch_l() called on a pre 3.0 HAL");
62681c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    }
62691c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    return status;
62701c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent}
62711c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
627283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::RecordThread::addPatchRecord(const sp<PatchRecord>& record)
627383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
627483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    Mutex::Autolock _l(mLock);
627583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    mTracks.add(record);
627683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
627783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
627883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::RecordThread::deletePatchRecord(const sp<PatchRecord>& record)
627983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
628083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    Mutex::Autolock _l(mLock);
628183b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    destroyTrack_l(record);
628283b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
628383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
628483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurentvoid AudioFlinger::RecordThread::getAudioPortConfig(struct audio_port_config *config)
628583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent{
628683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    ThreadBase::getAudioPortConfig(config);
628783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->role = AUDIO_PORT_ROLE_SINK;
628883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->ext.mix.hw_module = mInput->audioHwDev->handle();
628983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    config->ext.mix.usecase.source = mAudioSource;
629083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent}
62911c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
629281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent}; // namespace android
6293