AudioFlinger.cpp revision f99590187e2e3f1cf6f093063170edec269cac5d
1/*
2**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9**     http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18
19#define LOG_TAG "AudioFlinger"
20//#define LOG_NDEBUG 0
21
22#include <math.h>
23#include <signal.h>
24#include <sys/time.h>
25#include <sys/resource.h>
26
27#include <binder/IPCThreadState.h>
28#include <binder/IServiceManager.h>
29#include <utils/Log.h>
30#include <binder/Parcel.h>
31#include <binder/IPCThreadState.h>
32#include <utils/String16.h>
33#include <utils/threads.h>
34#include <utils/Atomic.h>
35
36#include <cutils/bitops.h>
37#include <cutils/properties.h>
38#include <cutils/compiler.h>
39
40#undef ADD_BATTERY_DATA
41
42#ifdef ADD_BATTERY_DATA
43#include <media/IMediaPlayerService.h>
44#include <media/IMediaDeathNotifier.h>
45#endif
46
47#include <private/media/AudioTrackShared.h>
48#include <private/media/AudioEffectShared.h>
49
50#include <system/audio.h>
51#include <hardware/audio.h>
52
53#include "AudioMixer.h"
54#include "AudioFlinger.h"
55#include "ServiceUtilities.h"
56
57#include <media/EffectsFactoryApi.h>
58#include <audio_effects/effect_visualizer.h>
59#include <audio_effects/effect_ns.h>
60#include <audio_effects/effect_aec.h>
61
62#include <audio_utils/primitives.h>
63
64#include <powermanager/PowerManager.h>
65
66// #define DEBUG_CPU_USAGE 10  // log statistics every n wall clock seconds
67#ifdef DEBUG_CPU_USAGE
68#include <cpustats/CentralTendencyStatistics.h>
69#include <cpustats/ThreadCpuUsage.h>
70#endif
71
72#include <common_time/cc_helper.h>
73#include <common_time/local_clock.h>
74
75// ----------------------------------------------------------------------------
76
77
78namespace android {
79
80static const char kDeadlockedString[] = "AudioFlinger may be deadlocked\n";
81static const char kHardwareLockedString[] = "Hardware lock is taken\n";
82
83static const float MAX_GAIN = 4096.0f;
84static const uint32_t MAX_GAIN_INT = 0x1000;
85
86// retry counts for buffer fill timeout
87// 50 * ~20msecs = 1 second
88static const int8_t kMaxTrackRetries = 50;
89static const int8_t kMaxTrackStartupRetries = 50;
90// allow less retry attempts on direct output thread.
91// direct outputs can be a scarce resource in audio hardware and should
92// be released as quickly as possible.
93static const int8_t kMaxTrackRetriesDirect = 2;
94
95static const int kDumpLockRetries = 50;
96static const int kDumpLockSleepUs = 20000;
97
98// don't warn about blocked writes or record buffer overflows more often than this
99static const nsecs_t kWarningThrottleNs = seconds(5);
100
101// RecordThread loop sleep time upon application overrun or audio HAL read error
102static const int kRecordThreadSleepUs = 5000;
103
104// maximum time to wait for setParameters to complete
105static const nsecs_t kSetParametersTimeoutNs = seconds(2);
106
107// minimum sleep time for the mixer thread loop when tracks are active but in underrun
108static const uint32_t kMinThreadSleepTimeUs = 5000;
109// maximum divider applied to the active sleep time in the mixer thread loop
110static const uint32_t kMaxThreadSleepTimeShift = 2;
111
112nsecs_t AudioFlinger::mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
113
114// ----------------------------------------------------------------------------
115
116#ifdef ADD_BATTERY_DATA
117// To collect the amplifier usage
118static void addBatteryData(uint32_t params) {
119    sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
120    if (service == NULL) {
121        // it already logged
122        return;
123    }
124
125    service->addBatteryData(params);
126}
127#endif
128
129static int load_audio_interface(const char *if_name, const hw_module_t **mod,
130                                audio_hw_device_t **dev)
131{
132    int rc;
133
134    rc = hw_get_module_by_class(AUDIO_HARDWARE_MODULE_ID, if_name, mod);
135    if (rc)
136        goto out;
137
138    rc = audio_hw_device_open(*mod, dev);
139    ALOGE_IF(rc, "couldn't open audio hw device in %s.%s (%s)",
140            AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
141    if (rc)
142        goto out;
143
144    return 0;
145
146out:
147    *mod = NULL;
148    *dev = NULL;
149    return rc;
150}
151
152static const char * const audio_interfaces[] = {
153    "primary",
154    "a2dp",
155    "usb",
156};
157#define ARRAY_SIZE(x) (sizeof((x))/sizeof(((x)[0])))
158
159// ----------------------------------------------------------------------------
160
161AudioFlinger::AudioFlinger()
162    : BnAudioFlinger(),
163      mPrimaryHardwareDev(NULL),
164      mHardwareStatus(AUDIO_HW_IDLE), // see also onFirstRef()
165      mMasterVolume(1.0f),
166      mMasterVolumeSupportLvl(MVS_NONE),
167      mMasterMute(false),
168      mNextUniqueId(1),
169      mMode(AUDIO_MODE_INVALID),
170      mBtNrecIsOff(false)
171{
172}
173
174void AudioFlinger::onFirstRef()
175{
176    int rc = 0;
177
178    Mutex::Autolock _l(mLock);
179
180    /* TODO: move all this work into an Init() function */
181    char val_str[PROPERTY_VALUE_MAX] = { 0 };
182    if (property_get("ro.audio.flinger_standbytime_ms", val_str, NULL) >= 0) {
183        uint32_t int_val;
184        if (1 == sscanf(val_str, "%u", &int_val)) {
185            mStandbyTimeInNsecs = milliseconds(int_val);
186            ALOGI("Using %u mSec as standby time.", int_val);
187        } else {
188            mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
189            ALOGI("Using default %u mSec as standby time.",
190                    (uint32_t)(mStandbyTimeInNsecs / 1000000));
191        }
192    }
193
194    for (size_t i = 0; i < ARRAY_SIZE(audio_interfaces); i++) {
195        const hw_module_t *mod;
196        audio_hw_device_t *dev;
197
198        rc = load_audio_interface(audio_interfaces[i], &mod, &dev);
199        if (rc)
200            continue;
201
202        ALOGI("Loaded %s audio interface from %s (%s)", audio_interfaces[i],
203            mod->name, mod->id);
204        mAudioHwDevs.push(dev);
205
206        if (mPrimaryHardwareDev == NULL) {
207            mPrimaryHardwareDev = dev;
208            ALOGI("Using '%s' (%s.%s) as the primary audio interface",
209                mod->name, mod->id, audio_interfaces[i]);
210        }
211    }
212
213    if (mPrimaryHardwareDev == NULL) {
214        ALOGE("Primary audio interface not found");
215        // proceed, all later accesses to mPrimaryHardwareDev verify it's safe with initCheck()
216    }
217
218    // Currently (mPrimaryHardwareDev == NULL) == (mAudioHwDevs.size() == 0), but the way the
219    // primary HW dev is selected can change so these conditions might not always be equivalent.
220    // When that happens, re-visit all the code that assumes this.
221
222    AutoMutex lock(mHardwareLock);
223
224    // Determine the level of master volume support the primary audio HAL has,
225    // and set the initial master volume at the same time.
226    float initialVolume = 1.0;
227    mMasterVolumeSupportLvl = MVS_NONE;
228    if (0 == mPrimaryHardwareDev->init_check(mPrimaryHardwareDev)) {
229        audio_hw_device_t *dev = mPrimaryHardwareDev;
230
231        mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
232        if ((NULL != dev->get_master_volume) &&
233            (NO_ERROR == dev->get_master_volume(dev, &initialVolume))) {
234            mMasterVolumeSupportLvl = MVS_FULL;
235        } else {
236            mMasterVolumeSupportLvl = MVS_SETONLY;
237            initialVolume = 1.0;
238        }
239
240        mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
241        if ((NULL == dev->set_master_volume) ||
242            (NO_ERROR != dev->set_master_volume(dev, initialVolume))) {
243            mMasterVolumeSupportLvl = MVS_NONE;
244        }
245        mHardwareStatus = AUDIO_HW_IDLE;
246    }
247
248    // Set the mode for each audio HAL, and try to set the initial volume (if
249    // supported) for all of the non-primary audio HALs.
250    for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
251        audio_hw_device_t *dev = mAudioHwDevs[i];
252
253        mHardwareStatus = AUDIO_HW_INIT;
254        rc = dev->init_check(dev);
255        mHardwareStatus = AUDIO_HW_IDLE;
256        if (rc == 0) {
257            mMode = AUDIO_MODE_NORMAL;  // assigned multiple times with same value
258            mHardwareStatus = AUDIO_HW_SET_MODE;
259            dev->set_mode(dev, mMode);
260
261            if ((dev != mPrimaryHardwareDev) &&
262                (NULL != dev->set_master_volume)) {
263                mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
264                dev->set_master_volume(dev, initialVolume);
265            }
266
267            mHardwareStatus = AUDIO_HW_IDLE;
268        }
269    }
270
271    mMasterVolumeSW = (MVS_NONE == mMasterVolumeSupportLvl)
272                    ? initialVolume
273                    : 1.0;
274    mMasterVolume   = initialVolume;
275    mHardwareStatus = AUDIO_HW_IDLE;
276}
277
278AudioFlinger::~AudioFlinger()
279{
280
281    while (!mRecordThreads.isEmpty()) {
282        // closeInput() will remove first entry from mRecordThreads
283        closeInput(mRecordThreads.keyAt(0));
284    }
285    while (!mPlaybackThreads.isEmpty()) {
286        // closeOutput() will remove first entry from mPlaybackThreads
287        closeOutput(mPlaybackThreads.keyAt(0));
288    }
289
290    for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
291        // no mHardwareLock needed, as there are no other references to this
292        audio_hw_device_close(mAudioHwDevs[i]);
293    }
294}
295
296audio_hw_device_t* AudioFlinger::findSuitableHwDev_l(uint32_t devices)
297{
298    /* first matching HW device is returned */
299    for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
300        audio_hw_device_t *dev = mAudioHwDevs[i];
301        if ((dev->get_supported_devices(dev) & devices) == devices)
302            return dev;
303    }
304    return NULL;
305}
306
307status_t AudioFlinger::dumpClients(int fd, const Vector<String16>& args)
308{
309    const size_t SIZE = 256;
310    char buffer[SIZE];
311    String8 result;
312
313    result.append("Clients:\n");
314    for (size_t i = 0; i < mClients.size(); ++i) {
315        sp<Client> client = mClients.valueAt(i).promote();
316        if (client != 0) {
317            snprintf(buffer, SIZE, "  pid: %d\n", client->pid());
318            result.append(buffer);
319        }
320    }
321
322    result.append("Global session refs:\n");
323    result.append(" session pid count\n");
324    for (size_t i = 0; i < mAudioSessionRefs.size(); i++) {
325        AudioSessionRef *r = mAudioSessionRefs[i];
326        snprintf(buffer, SIZE, " %7d %3d %3d\n", r->mSessionid, r->mPid, r->mCnt);
327        result.append(buffer);
328    }
329    write(fd, result.string(), result.size());
330    return NO_ERROR;
331}
332
333
334status_t AudioFlinger::dumpInternals(int fd, const Vector<String16>& args)
335{
336    const size_t SIZE = 256;
337    char buffer[SIZE];
338    String8 result;
339    hardware_call_state hardwareStatus = mHardwareStatus;
340
341    snprintf(buffer, SIZE, "Hardware status: %d\n"
342                           "Standby Time mSec: %u\n",
343                            hardwareStatus,
344                            (uint32_t)(mStandbyTimeInNsecs / 1000000));
345    result.append(buffer);
346    write(fd, result.string(), result.size());
347    return NO_ERROR;
348}
349
350status_t AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args)
351{
352    const size_t SIZE = 256;
353    char buffer[SIZE];
354    String8 result;
355    snprintf(buffer, SIZE, "Permission Denial: "
356            "can't dump AudioFlinger from pid=%d, uid=%d\n",
357            IPCThreadState::self()->getCallingPid(),
358            IPCThreadState::self()->getCallingUid());
359    result.append(buffer);
360    write(fd, result.string(), result.size());
361    return NO_ERROR;
362}
363
364static bool tryLock(Mutex& mutex)
365{
366    bool locked = false;
367    for (int i = 0; i < kDumpLockRetries; ++i) {
368        if (mutex.tryLock() == NO_ERROR) {
369            locked = true;
370            break;
371        }
372        usleep(kDumpLockSleepUs);
373    }
374    return locked;
375}
376
377status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
378{
379    if (!dumpAllowed()) {
380        dumpPermissionDenial(fd, args);
381    } else {
382        // get state of hardware lock
383        bool hardwareLocked = tryLock(mHardwareLock);
384        if (!hardwareLocked) {
385            String8 result(kHardwareLockedString);
386            write(fd, result.string(), result.size());
387        } else {
388            mHardwareLock.unlock();
389        }
390
391        bool locked = tryLock(mLock);
392
393        // failed to lock - AudioFlinger is probably deadlocked
394        if (!locked) {
395            String8 result(kDeadlockedString);
396            write(fd, result.string(), result.size());
397        }
398
399        dumpClients(fd, args);
400        dumpInternals(fd, args);
401
402        // dump playback threads
403        for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
404            mPlaybackThreads.valueAt(i)->dump(fd, args);
405        }
406
407        // dump record threads
408        for (size_t i = 0; i < mRecordThreads.size(); i++) {
409            mRecordThreads.valueAt(i)->dump(fd, args);
410        }
411
412        // dump all hardware devs
413        for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
414            audio_hw_device_t *dev = mAudioHwDevs[i];
415            dev->dump(dev, fd);
416        }
417        if (locked) mLock.unlock();
418    }
419    return NO_ERROR;
420}
421
422sp<AudioFlinger::Client> AudioFlinger::registerPid_l(pid_t pid)
423{
424    // If pid is already in the mClients wp<> map, then use that entry
425    // (for which promote() is always != 0), otherwise create a new entry and Client.
426    sp<Client> client = mClients.valueFor(pid).promote();
427    if (client == 0) {
428        client = new Client(this, pid);
429        mClients.add(pid, client);
430    }
431
432    return client;
433}
434
435// IAudioFlinger interface
436
437
438sp<IAudioTrack> AudioFlinger::createTrack(
439        pid_t pid,
440        audio_stream_type_t streamType,
441        uint32_t sampleRate,
442        audio_format_t format,
443        uint32_t channelMask,
444        int frameCount,
445        // FIXME dead, remove from IAudioFlinger
446        uint32_t flags,
447        const sp<IMemory>& sharedBuffer,
448        audio_io_handle_t output,
449        bool isTimed,
450        int *sessionId,
451        status_t *status)
452{
453    sp<PlaybackThread::Track> track;
454    sp<TrackHandle> trackHandle;
455    sp<Client> client;
456    status_t lStatus;
457    int lSessionId;
458
459    // client AudioTrack::set already implements AUDIO_STREAM_DEFAULT => AUDIO_STREAM_MUSIC,
460    // but if someone uses binder directly they could bypass that and cause us to crash
461    if (uint32_t(streamType) >= AUDIO_STREAM_CNT) {
462        ALOGE("createTrack() invalid stream type %d", streamType);
463        lStatus = BAD_VALUE;
464        goto Exit;
465    }
466
467    {
468        Mutex::Autolock _l(mLock);
469        PlaybackThread *thread = checkPlaybackThread_l(output);
470        PlaybackThread *effectThread = NULL;
471        if (thread == NULL) {
472            ALOGE("unknown output thread");
473            lStatus = BAD_VALUE;
474            goto Exit;
475        }
476
477        client = registerPid_l(pid);
478
479        ALOGV("createTrack() sessionId: %d", (sessionId == NULL) ? -2 : *sessionId);
480        if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
481            for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
482                sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
483                if (mPlaybackThreads.keyAt(i) != output) {
484                    // prevent same audio session on different output threads
485                    uint32_t sessions = t->hasAudioSession(*sessionId);
486                    if (sessions & PlaybackThread::TRACK_SESSION) {
487                        ALOGE("createTrack() session ID %d already in use", *sessionId);
488                        lStatus = BAD_VALUE;
489                        goto Exit;
490                    }
491                    // check if an effect with same session ID is waiting for a track to be created
492                    if (sessions & PlaybackThread::EFFECT_SESSION) {
493                        effectThread = t.get();
494                    }
495                }
496            }
497            lSessionId = *sessionId;
498        } else {
499            // if no audio session id is provided, create one here
500            lSessionId = nextUniqueId();
501            if (sessionId != NULL) {
502                *sessionId = lSessionId;
503            }
504        }
505        ALOGV("createTrack() lSessionId: %d", lSessionId);
506
507        track = thread->createTrack_l(client, streamType, sampleRate, format,
508                channelMask, frameCount, sharedBuffer, lSessionId, isTimed, &lStatus);
509
510        // move effect chain to this output thread if an effect on same session was waiting
511        // for a track to be created
512        if (lStatus == NO_ERROR && effectThread != NULL) {
513            Mutex::Autolock _dl(thread->mLock);
514            Mutex::Autolock _sl(effectThread->mLock);
515            moveEffectChain_l(lSessionId, effectThread, thread, true);
516        }
517    }
518    if (lStatus == NO_ERROR) {
519        trackHandle = new TrackHandle(track);
520    } else {
521        // remove local strong reference to Client before deleting the Track so that the Client
522        // destructor is called by the TrackBase destructor with mLock held
523        client.clear();
524        track.clear();
525    }
526
527Exit:
528    if (status != NULL) {
529        *status = lStatus;
530    }
531    return trackHandle;
532}
533
534uint32_t AudioFlinger::sampleRate(audio_io_handle_t output) const
535{
536    Mutex::Autolock _l(mLock);
537    PlaybackThread *thread = checkPlaybackThread_l(output);
538    if (thread == NULL) {
539        ALOGW("sampleRate() unknown thread %d", output);
540        return 0;
541    }
542    return thread->sampleRate();
543}
544
545int AudioFlinger::channelCount(audio_io_handle_t output) const
546{
547    Mutex::Autolock _l(mLock);
548    PlaybackThread *thread = checkPlaybackThread_l(output);
549    if (thread == NULL) {
550        ALOGW("channelCount() unknown thread %d", output);
551        return 0;
552    }
553    return thread->channelCount();
554}
555
556audio_format_t AudioFlinger::format(audio_io_handle_t output) const
557{
558    Mutex::Autolock _l(mLock);
559    PlaybackThread *thread = checkPlaybackThread_l(output);
560    if (thread == NULL) {
561        ALOGW("format() unknown thread %d", output);
562        return AUDIO_FORMAT_INVALID;
563    }
564    return thread->format();
565}
566
567size_t AudioFlinger::frameCount(audio_io_handle_t output) const
568{
569    Mutex::Autolock _l(mLock);
570    PlaybackThread *thread = checkPlaybackThread_l(output);
571    if (thread == NULL) {
572        ALOGW("frameCount() unknown thread %d", output);
573        return 0;
574    }
575    return thread->frameCount();
576}
577
578uint32_t AudioFlinger::latency(audio_io_handle_t output) const
579{
580    Mutex::Autolock _l(mLock);
581    PlaybackThread *thread = checkPlaybackThread_l(output);
582    if (thread == NULL) {
583        ALOGW("latency() unknown thread %d", output);
584        return 0;
585    }
586    return thread->latency();
587}
588
589status_t AudioFlinger::setMasterVolume(float value)
590{
591    status_t ret = initCheck();
592    if (ret != NO_ERROR) {
593        return ret;
594    }
595
596    // check calling permissions
597    if (!settingsAllowed()) {
598        return PERMISSION_DENIED;
599    }
600
601    float swmv = value;
602
603    // when hw supports master volume, don't scale in sw mixer
604    if (MVS_NONE != mMasterVolumeSupportLvl) {
605        for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
606            AutoMutex lock(mHardwareLock);
607            audio_hw_device_t *dev = mAudioHwDevs[i];
608
609            mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
610            if (NULL != dev->set_master_volume) {
611                dev->set_master_volume(dev, value);
612            }
613            mHardwareStatus = AUDIO_HW_IDLE;
614        }
615
616        swmv = 1.0;
617    }
618
619    Mutex::Autolock _l(mLock);
620    mMasterVolume   = value;
621    mMasterVolumeSW = swmv;
622    for (size_t i = 0; i < mPlaybackThreads.size(); i++)
623        mPlaybackThreads.valueAt(i)->setMasterVolume(swmv);
624
625    return NO_ERROR;
626}
627
628status_t AudioFlinger::setMode(audio_mode_t mode)
629{
630    status_t ret = initCheck();
631    if (ret != NO_ERROR) {
632        return ret;
633    }
634
635    // check calling permissions
636    if (!settingsAllowed()) {
637        return PERMISSION_DENIED;
638    }
639    if (uint32_t(mode) >= AUDIO_MODE_CNT) {
640        ALOGW("Illegal value: setMode(%d)", mode);
641        return BAD_VALUE;
642    }
643
644    { // scope for the lock
645        AutoMutex lock(mHardwareLock);
646        mHardwareStatus = AUDIO_HW_SET_MODE;
647        ret = mPrimaryHardwareDev->set_mode(mPrimaryHardwareDev, mode);
648        mHardwareStatus = AUDIO_HW_IDLE;
649    }
650
651    if (NO_ERROR == ret) {
652        Mutex::Autolock _l(mLock);
653        mMode = mode;
654        for (size_t i = 0; i < mPlaybackThreads.size(); i++)
655            mPlaybackThreads.valueAt(i)->setMode(mode);
656    }
657
658    return ret;
659}
660
661status_t AudioFlinger::setMicMute(bool state)
662{
663    status_t ret = initCheck();
664    if (ret != NO_ERROR) {
665        return ret;
666    }
667
668    // check calling permissions
669    if (!settingsAllowed()) {
670        return PERMISSION_DENIED;
671    }
672
673    AutoMutex lock(mHardwareLock);
674    mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
675    ret = mPrimaryHardwareDev->set_mic_mute(mPrimaryHardwareDev, state);
676    mHardwareStatus = AUDIO_HW_IDLE;
677    return ret;
678}
679
680bool AudioFlinger::getMicMute() const
681{
682    status_t ret = initCheck();
683    if (ret != NO_ERROR) {
684        return false;
685    }
686
687    bool state = AUDIO_MODE_INVALID;
688    AutoMutex lock(mHardwareLock);
689    mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
690    mPrimaryHardwareDev->get_mic_mute(mPrimaryHardwareDev, &state);
691    mHardwareStatus = AUDIO_HW_IDLE;
692    return state;
693}
694
695status_t AudioFlinger::setMasterMute(bool muted)
696{
697    // check calling permissions
698    if (!settingsAllowed()) {
699        return PERMISSION_DENIED;
700    }
701
702    Mutex::Autolock _l(mLock);
703    // This is an optimization, so PlaybackThread doesn't have to look at the one from AudioFlinger
704    mMasterMute = muted;
705    for (size_t i = 0; i < mPlaybackThreads.size(); i++)
706        mPlaybackThreads.valueAt(i)->setMasterMute(muted);
707
708    return NO_ERROR;
709}
710
711float AudioFlinger::masterVolume() const
712{
713    Mutex::Autolock _l(mLock);
714    return masterVolume_l();
715}
716
717float AudioFlinger::masterVolumeSW() const
718{
719    Mutex::Autolock _l(mLock);
720    return masterVolumeSW_l();
721}
722
723bool AudioFlinger::masterMute() const
724{
725    Mutex::Autolock _l(mLock);
726    return masterMute_l();
727}
728
729float AudioFlinger::masterVolume_l() const
730{
731    if (MVS_FULL == mMasterVolumeSupportLvl) {
732        float ret_val;
733        AutoMutex lock(mHardwareLock);
734
735        mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
736        ALOG_ASSERT((NULL != mPrimaryHardwareDev) &&
737                    (NULL != mPrimaryHardwareDev->get_master_volume),
738                "can't get master volume");
739
740        mPrimaryHardwareDev->get_master_volume(mPrimaryHardwareDev, &ret_val);
741        mHardwareStatus = AUDIO_HW_IDLE;
742        return ret_val;
743    }
744
745    return mMasterVolume;
746}
747
748status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value,
749        audio_io_handle_t output)
750{
751    // check calling permissions
752    if (!settingsAllowed()) {
753        return PERMISSION_DENIED;
754    }
755
756    if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
757        ALOGE("setStreamVolume() invalid stream %d", stream);
758        return BAD_VALUE;
759    }
760
761    AutoMutex lock(mLock);
762    PlaybackThread *thread = NULL;
763    if (output) {
764        thread = checkPlaybackThread_l(output);
765        if (thread == NULL) {
766            return BAD_VALUE;
767        }
768    }
769
770    mStreamTypes[stream].volume = value;
771
772    if (thread == NULL) {
773        for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
774            mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
775        }
776    } else {
777        thread->setStreamVolume(stream, value);
778    }
779
780    return NO_ERROR;
781}
782
783status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
784{
785    // check calling permissions
786    if (!settingsAllowed()) {
787        return PERMISSION_DENIED;
788    }
789
790    if (uint32_t(stream) >= AUDIO_STREAM_CNT ||
791        uint32_t(stream) == AUDIO_STREAM_ENFORCED_AUDIBLE) {
792        ALOGE("setStreamMute() invalid stream %d", stream);
793        return BAD_VALUE;
794    }
795
796    AutoMutex lock(mLock);
797    mStreamTypes[stream].mute = muted;
798    for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
799        mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
800
801    return NO_ERROR;
802}
803
804float AudioFlinger::streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const
805{
806    if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
807        return 0.0f;
808    }
809
810    AutoMutex lock(mLock);
811    float volume;
812    if (output) {
813        PlaybackThread *thread = checkPlaybackThread_l(output);
814        if (thread == NULL) {
815            return 0.0f;
816        }
817        volume = thread->streamVolume(stream);
818    } else {
819        volume = streamVolume_l(stream);
820    }
821
822    return volume;
823}
824
825bool AudioFlinger::streamMute(audio_stream_type_t stream) const
826{
827    if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
828        return true;
829    }
830
831    AutoMutex lock(mLock);
832    return streamMute_l(stream);
833}
834
835status_t AudioFlinger::setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs)
836{
837    ALOGV("setParameters(): io %d, keyvalue %s, tid %d, calling pid %d",
838            ioHandle, keyValuePairs.string(), gettid(), IPCThreadState::self()->getCallingPid());
839    // check calling permissions
840    if (!settingsAllowed()) {
841        return PERMISSION_DENIED;
842    }
843
844    // ioHandle == 0 means the parameters are global to the audio hardware interface
845    if (ioHandle == 0) {
846        status_t final_result = NO_ERROR;
847        {
848        AutoMutex lock(mHardwareLock);
849        mHardwareStatus = AUDIO_HW_SET_PARAMETER;
850        for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
851            audio_hw_device_t *dev = mAudioHwDevs[i];
852            status_t result = dev->set_parameters(dev, keyValuePairs.string());
853            final_result = result ?: final_result;
854        }
855        mHardwareStatus = AUDIO_HW_IDLE;
856        }
857        // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
858        AudioParameter param = AudioParameter(keyValuePairs);
859        String8 value;
860        if (param.get(String8(AUDIO_PARAMETER_KEY_BT_NREC), value) == NO_ERROR) {
861            Mutex::Autolock _l(mLock);
862            bool btNrecIsOff = (value == AUDIO_PARAMETER_VALUE_OFF);
863            if (mBtNrecIsOff != btNrecIsOff) {
864                for (size_t i = 0; i < mRecordThreads.size(); i++) {
865                    sp<RecordThread> thread = mRecordThreads.valueAt(i);
866                    RecordThread::RecordTrack *track = thread->track();
867                    if (track != NULL) {
868                        audio_devices_t device = (audio_devices_t)(
869                                thread->device() & AUDIO_DEVICE_IN_ALL);
870                        bool suspend = audio_is_bluetooth_sco_device(device) && btNrecIsOff;
871                        thread->setEffectSuspended(FX_IID_AEC,
872                                                   suspend,
873                                                   track->sessionId());
874                        thread->setEffectSuspended(FX_IID_NS,
875                                                   suspend,
876                                                   track->sessionId());
877                    }
878                }
879                mBtNrecIsOff = btNrecIsOff;
880            }
881        }
882        return final_result;
883    }
884
885    // hold a strong ref on thread in case closeOutput() or closeInput() is called
886    // and the thread is exited once the lock is released
887    sp<ThreadBase> thread;
888    {
889        Mutex::Autolock _l(mLock);
890        thread = checkPlaybackThread_l(ioHandle);
891        if (thread == NULL) {
892            thread = checkRecordThread_l(ioHandle);
893        } else if (thread == primaryPlaybackThread_l()) {
894            // indicate output device change to all input threads for pre processing
895            AudioParameter param = AudioParameter(keyValuePairs);
896            int value;
897            if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
898                for (size_t i = 0; i < mRecordThreads.size(); i++) {
899                    mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
900                }
901            }
902        }
903    }
904    if (thread != 0) {
905        return thread->setParameters(keyValuePairs);
906    }
907    return BAD_VALUE;
908}
909
910String8 AudioFlinger::getParameters(audio_io_handle_t ioHandle, const String8& keys) const
911{
912//    ALOGV("getParameters() io %d, keys %s, tid %d, calling pid %d",
913//            ioHandle, keys.string(), gettid(), IPCThreadState::self()->getCallingPid());
914
915    if (ioHandle == 0) {
916        String8 out_s8;
917
918        for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
919            char *s;
920            {
921            AutoMutex lock(mHardwareLock);
922            mHardwareStatus = AUDIO_HW_GET_PARAMETER;
923            audio_hw_device_t *dev = mAudioHwDevs[i];
924            s = dev->get_parameters(dev, keys.string());
925            mHardwareStatus = AUDIO_HW_IDLE;
926            }
927            out_s8 += String8(s ? s : "");
928            free(s);
929        }
930        return out_s8;
931    }
932
933    Mutex::Autolock _l(mLock);
934
935    PlaybackThread *playbackThread = checkPlaybackThread_l(ioHandle);
936    if (playbackThread != NULL) {
937        return playbackThread->getParameters(keys);
938    }
939    RecordThread *recordThread = checkRecordThread_l(ioHandle);
940    if (recordThread != NULL) {
941        return recordThread->getParameters(keys);
942    }
943    return String8("");
944}
945
946size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const
947{
948    status_t ret = initCheck();
949    if (ret != NO_ERROR) {
950        return 0;
951    }
952
953    AutoMutex lock(mHardwareLock);
954    mHardwareStatus = AUDIO_HW_GET_INPUT_BUFFER_SIZE;
955    size_t size = mPrimaryHardwareDev->get_input_buffer_size(mPrimaryHardwareDev, sampleRate, format, channelCount);
956    mHardwareStatus = AUDIO_HW_IDLE;
957    return size;
958}
959
960unsigned int AudioFlinger::getInputFramesLost(audio_io_handle_t ioHandle) const
961{
962    if (ioHandle == 0) {
963        return 0;
964    }
965
966    Mutex::Autolock _l(mLock);
967
968    RecordThread *recordThread = checkRecordThread_l(ioHandle);
969    if (recordThread != NULL) {
970        return recordThread->getInputFramesLost();
971    }
972    return 0;
973}
974
975status_t AudioFlinger::setVoiceVolume(float value)
976{
977    status_t ret = initCheck();
978    if (ret != NO_ERROR) {
979        return ret;
980    }
981
982    // check calling permissions
983    if (!settingsAllowed()) {
984        return PERMISSION_DENIED;
985    }
986
987    AutoMutex lock(mHardwareLock);
988    mHardwareStatus = AUDIO_HW_SET_VOICE_VOLUME;
989    ret = mPrimaryHardwareDev->set_voice_volume(mPrimaryHardwareDev, value);
990    mHardwareStatus = AUDIO_HW_IDLE;
991
992    return ret;
993}
994
995status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
996        audio_io_handle_t output) const
997{
998    status_t status;
999
1000    Mutex::Autolock _l(mLock);
1001
1002    PlaybackThread *playbackThread = checkPlaybackThread_l(output);
1003    if (playbackThread != NULL) {
1004        return playbackThread->getRenderPosition(halFrames, dspFrames);
1005    }
1006
1007    return BAD_VALUE;
1008}
1009
1010void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
1011{
1012
1013    Mutex::Autolock _l(mLock);
1014
1015    pid_t pid = IPCThreadState::self()->getCallingPid();
1016    if (mNotificationClients.indexOfKey(pid) < 0) {
1017        sp<NotificationClient> notificationClient = new NotificationClient(this,
1018                                                                            client,
1019                                                                            pid);
1020        ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid);
1021
1022        mNotificationClients.add(pid, notificationClient);
1023
1024        sp<IBinder> binder = client->asBinder();
1025        binder->linkToDeath(notificationClient);
1026
1027        // the config change is always sent from playback or record threads to avoid deadlock
1028        // with AudioSystem::gLock
1029        for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1030            mPlaybackThreads.valueAt(i)->sendConfigEvent(AudioSystem::OUTPUT_OPENED);
1031        }
1032
1033        for (size_t i = 0; i < mRecordThreads.size(); i++) {
1034            mRecordThreads.valueAt(i)->sendConfigEvent(AudioSystem::INPUT_OPENED);
1035        }
1036    }
1037}
1038
1039void AudioFlinger::removeNotificationClient(pid_t pid)
1040{
1041    Mutex::Autolock _l(mLock);
1042
1043    mNotificationClients.removeItem(pid);
1044
1045    ALOGV("%d died, releasing its sessions", pid);
1046    size_t num = mAudioSessionRefs.size();
1047    bool removed = false;
1048    for (size_t i = 0; i< num; ) {
1049        AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
1050        ALOGV(" pid %d @ %d", ref->mPid, i);
1051        if (ref->mPid == pid) {
1052            ALOGV(" removing entry for pid %d session %d", pid, ref->mSessionid);
1053            mAudioSessionRefs.removeAt(i);
1054            delete ref;
1055            removed = true;
1056            num--;
1057        } else {
1058            i++;
1059        }
1060    }
1061    if (removed) {
1062        purgeStaleEffects_l();
1063    }
1064}
1065
1066// audioConfigChanged_l() must be called with AudioFlinger::mLock held
1067void AudioFlinger::audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2)
1068{
1069    size_t size = mNotificationClients.size();
1070    for (size_t i = 0; i < size; i++) {
1071        mNotificationClients.valueAt(i)->audioFlingerClient()->ioConfigChanged(event, ioHandle,
1072                                                                               param2);
1073    }
1074}
1075
1076// removeClient_l() must be called with AudioFlinger::mLock held
1077void AudioFlinger::removeClient_l(pid_t pid)
1078{
1079    ALOGV("removeClient_l() pid %d, tid %d, calling tid %d", pid, gettid(), IPCThreadState::self()->getCallingPid());
1080    mClients.removeItem(pid);
1081}
1082
1083
1084// ----------------------------------------------------------------------------
1085
1086AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
1087        uint32_t device, type_t type)
1088    :   Thread(false),
1089        mType(type),
1090        mAudioFlinger(audioFlinger), mSampleRate(0), mFrameCount(0),
1091        // mChannelMask
1092        mChannelCount(0),
1093        mFrameSize(1), mFormat(AUDIO_FORMAT_INVALID),
1094        mParamStatus(NO_ERROR),
1095        mStandby(false), mId(id),
1096        mDevice(device),
1097        mDeathRecipient(new PMDeathRecipient(this))
1098{
1099}
1100
1101AudioFlinger::ThreadBase::~ThreadBase()
1102{
1103    mParamCond.broadcast();
1104    // do not lock the mutex in destructor
1105    releaseWakeLock_l();
1106    if (mPowerManager != 0) {
1107        sp<IBinder> binder = mPowerManager->asBinder();
1108        binder->unlinkToDeath(mDeathRecipient);
1109    }
1110}
1111
1112void AudioFlinger::ThreadBase::exit()
1113{
1114    ALOGV("ThreadBase::exit");
1115    {
1116        // This lock prevents the following race in thread (uniprocessor for illustration):
1117        //  if (!exitPending()) {
1118        //      // context switch from here to exit()
1119        //      // exit() calls requestExit(), what exitPending() observes
1120        //      // exit() calls signal(), which is dropped since no waiters
1121        //      // context switch back from exit() to here
1122        //      mWaitWorkCV.wait(...);
1123        //      // now thread is hung
1124        //  }
1125        AutoMutex lock(mLock);
1126        requestExit();
1127        mWaitWorkCV.signal();
1128    }
1129    // When Thread::requestExitAndWait is made virtual and this method is renamed to
1130    // "virtual status_t requestExitAndWait()", replace by "return Thread::requestExitAndWait();"
1131    requestExitAndWait();
1132}
1133
1134status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
1135{
1136    status_t status;
1137
1138    ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
1139    Mutex::Autolock _l(mLock);
1140
1141    mNewParameters.add(keyValuePairs);
1142    mWaitWorkCV.signal();
1143    // wait condition with timeout in case the thread loop has exited
1144    // before the request could be processed
1145    if (mParamCond.waitRelative(mLock, kSetParametersTimeoutNs) == NO_ERROR) {
1146        status = mParamStatus;
1147        mWaitWorkCV.signal();
1148    } else {
1149        status = TIMED_OUT;
1150    }
1151    return status;
1152}
1153
1154void AudioFlinger::ThreadBase::sendConfigEvent(int event, int param)
1155{
1156    Mutex::Autolock _l(mLock);
1157    sendConfigEvent_l(event, param);
1158}
1159
1160// sendConfigEvent_l() must be called with ThreadBase::mLock held
1161void AudioFlinger::ThreadBase::sendConfigEvent_l(int event, int param)
1162{
1163    ConfigEvent configEvent;
1164    configEvent.mEvent = event;
1165    configEvent.mParam = param;
1166    mConfigEvents.add(configEvent);
1167    ALOGV("sendConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event, param);
1168    mWaitWorkCV.signal();
1169}
1170
1171void AudioFlinger::ThreadBase::processConfigEvents()
1172{
1173    mLock.lock();
1174    while (!mConfigEvents.isEmpty()) {
1175        ALOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
1176        ConfigEvent configEvent = mConfigEvents[0];
1177        mConfigEvents.removeAt(0);
1178        // release mLock before locking AudioFlinger mLock: lock order is always
1179        // AudioFlinger then ThreadBase to avoid cross deadlock
1180        mLock.unlock();
1181        mAudioFlinger->mLock.lock();
1182        audioConfigChanged_l(configEvent.mEvent, configEvent.mParam);
1183        mAudioFlinger->mLock.unlock();
1184        mLock.lock();
1185    }
1186    mLock.unlock();
1187}
1188
1189status_t AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args)
1190{
1191    const size_t SIZE = 256;
1192    char buffer[SIZE];
1193    String8 result;
1194
1195    bool locked = tryLock(mLock);
1196    if (!locked) {
1197        snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
1198        write(fd, buffer, strlen(buffer));
1199    }
1200
1201    snprintf(buffer, SIZE, "io handle: %d\n", mId);
1202    result.append(buffer);
1203    snprintf(buffer, SIZE, "TID: %d\n", getTid());
1204    result.append(buffer);
1205    snprintf(buffer, SIZE, "standby: %d\n", mStandby);
1206    result.append(buffer);
1207    snprintf(buffer, SIZE, "Sample rate: %d\n", mSampleRate);
1208    result.append(buffer);
1209    snprintf(buffer, SIZE, "Frame count: %d\n", mFrameCount);
1210    result.append(buffer);
1211    snprintf(buffer, SIZE, "Channel Count: %d\n", mChannelCount);
1212    result.append(buffer);
1213    snprintf(buffer, SIZE, "Channel Mask: 0x%08x\n", mChannelMask);
1214    result.append(buffer);
1215    snprintf(buffer, SIZE, "Format: %d\n", mFormat);
1216    result.append(buffer);
1217    snprintf(buffer, SIZE, "Frame size: %u\n", mFrameSize);
1218    result.append(buffer);
1219
1220    snprintf(buffer, SIZE, "\nPending setParameters commands: \n");
1221    result.append(buffer);
1222    result.append(" Index Command");
1223    for (size_t i = 0; i < mNewParameters.size(); ++i) {
1224        snprintf(buffer, SIZE, "\n %02d    ", i);
1225        result.append(buffer);
1226        result.append(mNewParameters[i]);
1227    }
1228
1229    snprintf(buffer, SIZE, "\n\nPending config events: \n");
1230    result.append(buffer);
1231    snprintf(buffer, SIZE, " Index event param\n");
1232    result.append(buffer);
1233    for (size_t i = 0; i < mConfigEvents.size(); i++) {
1234        snprintf(buffer, SIZE, " %02d    %02d    %d\n", i, mConfigEvents[i].mEvent, mConfigEvents[i].mParam);
1235        result.append(buffer);
1236    }
1237    result.append("\n");
1238
1239    write(fd, result.string(), result.size());
1240
1241    if (locked) {
1242        mLock.unlock();
1243    }
1244    return NO_ERROR;
1245}
1246
1247status_t AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
1248{
1249    const size_t SIZE = 256;
1250    char buffer[SIZE];
1251    String8 result;
1252
1253    snprintf(buffer, SIZE, "\n- %d Effect Chains:\n", mEffectChains.size());
1254    write(fd, buffer, strlen(buffer));
1255
1256    for (size_t i = 0; i < mEffectChains.size(); ++i) {
1257        sp<EffectChain> chain = mEffectChains[i];
1258        if (chain != 0) {
1259            chain->dump(fd, args);
1260        }
1261    }
1262    return NO_ERROR;
1263}
1264
1265void AudioFlinger::ThreadBase::acquireWakeLock()
1266{
1267    Mutex::Autolock _l(mLock);
1268    acquireWakeLock_l();
1269}
1270
1271void AudioFlinger::ThreadBase::acquireWakeLock_l()
1272{
1273    if (mPowerManager == 0) {
1274        // use checkService() to avoid blocking if power service is not up yet
1275        sp<IBinder> binder =
1276            defaultServiceManager()->checkService(String16("power"));
1277        if (binder == 0) {
1278            ALOGW("Thread %s cannot connect to the power manager service", mName);
1279        } else {
1280            mPowerManager = interface_cast<IPowerManager>(binder);
1281            binder->linkToDeath(mDeathRecipient);
1282        }
1283    }
1284    if (mPowerManager != 0) {
1285        sp<IBinder> binder = new BBinder();
1286        status_t status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
1287                                                         binder,
1288                                                         String16(mName));
1289        if (status == NO_ERROR) {
1290            mWakeLockToken = binder;
1291        }
1292        ALOGV("acquireWakeLock_l() %s status %d", mName, status);
1293    }
1294}
1295
1296void AudioFlinger::ThreadBase::releaseWakeLock()
1297{
1298    Mutex::Autolock _l(mLock);
1299    releaseWakeLock_l();
1300}
1301
1302void AudioFlinger::ThreadBase::releaseWakeLock_l()
1303{
1304    if (mWakeLockToken != 0) {
1305        ALOGV("releaseWakeLock_l() %s", mName);
1306        if (mPowerManager != 0) {
1307            mPowerManager->releaseWakeLock(mWakeLockToken, 0);
1308        }
1309        mWakeLockToken.clear();
1310    }
1311}
1312
1313void AudioFlinger::ThreadBase::clearPowerManager()
1314{
1315    Mutex::Autolock _l(mLock);
1316    releaseWakeLock_l();
1317    mPowerManager.clear();
1318}
1319
1320void AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who)
1321{
1322    sp<ThreadBase> thread = mThread.promote();
1323    if (thread != 0) {
1324        thread->clearPowerManager();
1325    }
1326    ALOGW("power manager service died !!!");
1327}
1328
1329void AudioFlinger::ThreadBase::setEffectSuspended(
1330        const effect_uuid_t *type, bool suspend, int sessionId)
1331{
1332    Mutex::Autolock _l(mLock);
1333    setEffectSuspended_l(type, suspend, sessionId);
1334}
1335
1336void AudioFlinger::ThreadBase::setEffectSuspended_l(
1337        const effect_uuid_t *type, bool suspend, int sessionId)
1338{
1339    sp<EffectChain> chain = getEffectChain_l(sessionId);
1340    if (chain != 0) {
1341        if (type != NULL) {
1342            chain->setEffectSuspended_l(type, suspend);
1343        } else {
1344            chain->setEffectSuspendedAll_l(suspend);
1345        }
1346    }
1347
1348    updateSuspendedSessions_l(type, suspend, sessionId);
1349}
1350
1351void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
1352{
1353    ssize_t index = mSuspendedSessions.indexOfKey(chain->sessionId());
1354    if (index < 0) {
1355        return;
1356    }
1357
1358    KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects =
1359            mSuspendedSessions.editValueAt(index);
1360
1361    for (size_t i = 0; i < sessionEffects.size(); i++) {
1362        sp<SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
1363        for (int j = 0; j < desc->mRefCount; j++) {
1364            if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
1365                chain->setEffectSuspendedAll_l(true);
1366            } else {
1367                ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
1368                    desc->mType.timeLow);
1369                chain->setEffectSuspended_l(&desc->mType, true);
1370            }
1371        }
1372    }
1373}
1374
1375void AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
1376                                                         bool suspend,
1377                                                         int sessionId)
1378{
1379    ssize_t index = mSuspendedSessions.indexOfKey(sessionId);
1380
1381    KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
1382
1383    if (suspend) {
1384        if (index >= 0) {
1385            sessionEffects = mSuspendedSessions.editValueAt(index);
1386        } else {
1387            mSuspendedSessions.add(sessionId, sessionEffects);
1388        }
1389    } else {
1390        if (index < 0) {
1391            return;
1392        }
1393        sessionEffects = mSuspendedSessions.editValueAt(index);
1394    }
1395
1396
1397    int key = EffectChain::kKeyForSuspendAll;
1398    if (type != NULL) {
1399        key = type->timeLow;
1400    }
1401    index = sessionEffects.indexOfKey(key);
1402
1403    sp<SuspendedSessionDesc> desc;
1404    if (suspend) {
1405        if (index >= 0) {
1406            desc = sessionEffects.valueAt(index);
1407        } else {
1408            desc = new SuspendedSessionDesc();
1409            if (type != NULL) {
1410                memcpy(&desc->mType, type, sizeof(effect_uuid_t));
1411            }
1412            sessionEffects.add(key, desc);
1413            ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
1414        }
1415        desc->mRefCount++;
1416    } else {
1417        if (index < 0) {
1418            return;
1419        }
1420        desc = sessionEffects.valueAt(index);
1421        if (--desc->mRefCount == 0) {
1422            ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
1423            sessionEffects.removeItemsAt(index);
1424            if (sessionEffects.isEmpty()) {
1425                ALOGV("updateSuspendedSessions_l() restore removing session %d",
1426                                 sessionId);
1427                mSuspendedSessions.removeItem(sessionId);
1428            }
1429        }
1430    }
1431    if (!sessionEffects.isEmpty()) {
1432        mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
1433    }
1434}
1435
1436void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1437                                                            bool enabled,
1438                                                            int sessionId)
1439{
1440    Mutex::Autolock _l(mLock);
1441    checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
1442}
1443
1444void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
1445                                                            bool enabled,
1446                                                            int sessionId)
1447{
1448    if (mType != RECORD) {
1449        // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
1450        // another session. This gives the priority to well behaved effect control panels
1451        // and applications not using global effects.
1452        if (sessionId != AUDIO_SESSION_OUTPUT_MIX) {
1453            setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
1454        }
1455    }
1456
1457    sp<EffectChain> chain = getEffectChain_l(sessionId);
1458    if (chain != 0) {
1459        chain->checkSuspendOnEffectEnabled(effect, enabled);
1460    }
1461}
1462
1463// ----------------------------------------------------------------------------
1464
1465AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
1466                                             AudioStreamOut* output,
1467                                             audio_io_handle_t id,
1468                                             uint32_t device,
1469                                             type_t type)
1470    :   ThreadBase(audioFlinger, id, device, type),
1471        mMixBuffer(NULL), mSuspended(0), mBytesWritten(0),
1472        // Assumes constructor is called by AudioFlinger with it's mLock held,
1473        // but it would be safer to explicitly pass initial masterMute as parameter
1474        mMasterMute(audioFlinger->masterMute_l()),
1475        // mStreamTypes[] initialized in constructor body
1476        mOutput(output),
1477        // Assumes constructor is called by AudioFlinger with it's mLock held,
1478        // but it would be safer to explicitly pass initial masterVolume as parameter
1479        mMasterVolume(audioFlinger->masterVolumeSW_l()),
1480        mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
1481        mMixerStatus(MIXER_IDLE),
1482        mPrevMixerStatus(MIXER_IDLE),
1483        standbyDelay(AudioFlinger::mStandbyTimeInNsecs)
1484{
1485    snprintf(mName, kNameLength, "AudioOut_%X", id);
1486
1487    readOutputParameters();
1488
1489    // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
1490    // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
1491    for (audio_stream_type_t stream = (audio_stream_type_t) 0; stream < AUDIO_STREAM_CNT;
1492            stream = (audio_stream_type_t) (stream + 1)) {
1493        mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
1494        mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
1495        // initialized by stream_type_t default constructor
1496        // mStreamTypes[stream].valid = true;
1497    }
1498    // mStreamTypes[AUDIO_STREAM_CNT] exists but isn't explicitly initialized here,
1499    // because mAudioFlinger doesn't have one to copy from
1500}
1501
1502AudioFlinger::PlaybackThread::~PlaybackThread()
1503{
1504    delete [] mMixBuffer;
1505}
1506
1507status_t AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
1508{
1509    dumpInternals(fd, args);
1510    dumpTracks(fd, args);
1511    dumpEffectChains(fd, args);
1512    return NO_ERROR;
1513}
1514
1515status_t AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args)
1516{
1517    const size_t SIZE = 256;
1518    char buffer[SIZE];
1519    String8 result;
1520
1521    snprintf(buffer, SIZE, "Output thread %p tracks\n", this);
1522    result.append(buffer);
1523    result.append("   Name  Clien Typ Fmt Chn mask   Session Buf  S M F SRate LeftV RighV  Serv       User       Main buf   Aux Buf\n");
1524    for (size_t i = 0; i < mTracks.size(); ++i) {
1525        sp<Track> track = mTracks[i];
1526        if (track != 0) {
1527            track->dump(buffer, SIZE);
1528            result.append(buffer);
1529        }
1530    }
1531
1532    snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
1533    result.append(buffer);
1534    result.append("   Name  Clien Typ Fmt Chn mask   Session Buf  S M F SRate LeftV RighV  Serv       User       Main buf   Aux Buf\n");
1535    for (size_t i = 0; i < mActiveTracks.size(); ++i) {
1536        sp<Track> track = mActiveTracks[i].promote();
1537        if (track != 0) {
1538            track->dump(buffer, SIZE);
1539            result.append(buffer);
1540        }
1541    }
1542    write(fd, result.string(), result.size());
1543    return NO_ERROR;
1544}
1545
1546status_t AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
1547{
1548    const size_t SIZE = 256;
1549    char buffer[SIZE];
1550    String8 result;
1551
1552    snprintf(buffer, SIZE, "\nOutput thread %p internals\n", this);
1553    result.append(buffer);
1554    snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
1555    result.append(buffer);
1556    snprintf(buffer, SIZE, "total writes: %d\n", mNumWrites);
1557    result.append(buffer);
1558    snprintf(buffer, SIZE, "delayed writes: %d\n", mNumDelayedWrites);
1559    result.append(buffer);
1560    snprintf(buffer, SIZE, "blocked in write: %d\n", mInWrite);
1561    result.append(buffer);
1562    snprintf(buffer, SIZE, "suspend count: %d\n", mSuspended);
1563    result.append(buffer);
1564    snprintf(buffer, SIZE, "mix buffer : %p\n", mMixBuffer);
1565    result.append(buffer);
1566    write(fd, result.string(), result.size());
1567
1568    dumpBase(fd, args);
1569
1570    return NO_ERROR;
1571}
1572
1573// Thread virtuals
1574status_t AudioFlinger::PlaybackThread::readyToRun()
1575{
1576    status_t status = initCheck();
1577    if (status == NO_ERROR) {
1578        ALOGI("AudioFlinger's thread %p ready to run", this);
1579    } else {
1580        ALOGE("No working audio driver found.");
1581    }
1582    return status;
1583}
1584
1585void AudioFlinger::PlaybackThread::onFirstRef()
1586{
1587    run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
1588}
1589
1590// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
1591sp<AudioFlinger::PlaybackThread::Track>  AudioFlinger::PlaybackThread::createTrack_l(
1592        const sp<AudioFlinger::Client>& client,
1593        audio_stream_type_t streamType,
1594        uint32_t sampleRate,
1595        audio_format_t format,
1596        uint32_t channelMask,
1597        int frameCount,
1598        const sp<IMemory>& sharedBuffer,
1599        int sessionId,
1600        bool isTimed,
1601        status_t *status)
1602{
1603    sp<Track> track;
1604    status_t lStatus;
1605
1606    if (mType == DIRECT) {
1607        if ((format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_PCM) {
1608            if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
1609                ALOGE("createTrack_l() Bad parameter: sampleRate %d format %d, channelMask 0x%08x \""
1610                        "for output %p with format %d",
1611                        sampleRate, format, channelMask, mOutput, mFormat);
1612                lStatus = BAD_VALUE;
1613                goto Exit;
1614            }
1615        }
1616    } else {
1617        // Resampler implementation limits input sampling rate to 2 x output sampling rate.
1618        if (sampleRate > mSampleRate*2) {
1619            ALOGE("Sample rate out of range: %d mSampleRate %d", sampleRate, mSampleRate);
1620            lStatus = BAD_VALUE;
1621            goto Exit;
1622        }
1623    }
1624
1625    lStatus = initCheck();
1626    if (lStatus != NO_ERROR) {
1627        ALOGE("Audio driver not initialized.");
1628        goto Exit;
1629    }
1630
1631    { // scope for mLock
1632        Mutex::Autolock _l(mLock);
1633
1634        // all tracks in same audio session must share the same routing strategy otherwise
1635        // conflicts will happen when tracks are moved from one output to another by audio policy
1636        // manager
1637        uint32_t strategy = AudioSystem::getStrategyForStream(streamType);
1638        for (size_t i = 0; i < mTracks.size(); ++i) {
1639            sp<Track> t = mTracks[i];
1640            if (t != 0 && !t->isOutputTrack()) {
1641                uint32_t actual = AudioSystem::getStrategyForStream(t->streamType());
1642                if (sessionId == t->sessionId() && strategy != actual) {
1643                    ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
1644                            strategy, actual);
1645                    lStatus = BAD_VALUE;
1646                    goto Exit;
1647                }
1648            }
1649        }
1650
1651        if (!isTimed) {
1652            track = new Track(this, client, streamType, sampleRate, format,
1653                    channelMask, frameCount, sharedBuffer, sessionId);
1654        } else {
1655            track = TimedTrack::create(this, client, streamType, sampleRate, format,
1656                    channelMask, frameCount, sharedBuffer, sessionId);
1657        }
1658        if (track == NULL || track->getCblk() == NULL || track->name() < 0) {
1659            lStatus = NO_MEMORY;
1660            goto Exit;
1661        }
1662        mTracks.add(track);
1663
1664        sp<EffectChain> chain = getEffectChain_l(sessionId);
1665        if (chain != 0) {
1666            ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
1667            track->setMainBuffer(chain->inBuffer());
1668            chain->setStrategy(AudioSystem::getStrategyForStream(track->streamType()));
1669            chain->incTrackCnt();
1670        }
1671
1672        // invalidate track immediately if the stream type was moved to another thread since
1673        // createTrack() was called by the client process.
1674        if (!mStreamTypes[streamType].valid) {
1675            ALOGW("createTrack_l() on thread %p: invalidating track on stream %d",
1676                this, streamType);
1677            android_atomic_or(CBLK_INVALID_ON, &track->mCblk->flags);
1678        }
1679    }
1680    lStatus = NO_ERROR;
1681
1682Exit:
1683    if (status) {
1684        *status = lStatus;
1685    }
1686    return track;
1687}
1688
1689uint32_t AudioFlinger::PlaybackThread::latency() const
1690{
1691    Mutex::Autolock _l(mLock);
1692    if (initCheck() == NO_ERROR) {
1693        return mOutput->stream->get_latency(mOutput->stream);
1694    } else {
1695        return 0;
1696    }
1697}
1698
1699void AudioFlinger::PlaybackThread::setMasterVolume(float value)
1700{
1701    Mutex::Autolock _l(mLock);
1702    mMasterVolume = value;
1703}
1704
1705void AudioFlinger::PlaybackThread::setMasterMute(bool muted)
1706{
1707    Mutex::Autolock _l(mLock);
1708    setMasterMute_l(muted);
1709}
1710
1711void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
1712{
1713    Mutex::Autolock _l(mLock);
1714    mStreamTypes[stream].volume = value;
1715}
1716
1717void AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
1718{
1719    Mutex::Autolock _l(mLock);
1720    mStreamTypes[stream].mute = muted;
1721}
1722
1723float AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
1724{
1725    Mutex::Autolock _l(mLock);
1726    return mStreamTypes[stream].volume;
1727}
1728
1729// addTrack_l() must be called with ThreadBase::mLock held
1730status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
1731{
1732    status_t status = ALREADY_EXISTS;
1733
1734    // set retry count for buffer fill
1735    track->mRetryCount = kMaxTrackStartupRetries;
1736    if (mActiveTracks.indexOf(track) < 0) {
1737        // the track is newly added, make sure it fills up all its
1738        // buffers before playing. This is to ensure the client will
1739        // effectively get the latency it requested.
1740        track->mFillingUpStatus = Track::FS_FILLING;
1741        track->mResetDone = false;
1742        mActiveTracks.add(track);
1743        if (track->mainBuffer() != mMixBuffer) {
1744            sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1745            if (chain != 0) {
1746                ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(), track->sessionId());
1747                chain->incActiveTrackCnt();
1748            }
1749        }
1750
1751        status = NO_ERROR;
1752    }
1753
1754    ALOGV("mWaitWorkCV.broadcast");
1755    mWaitWorkCV.broadcast();
1756
1757    return status;
1758}
1759
1760// destroyTrack_l() must be called with ThreadBase::mLock held
1761void AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
1762{
1763    track->mState = TrackBase::TERMINATED;
1764    if (mActiveTracks.indexOf(track) < 0) {
1765        removeTrack_l(track);
1766    }
1767}
1768
1769void AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
1770{
1771    mTracks.remove(track);
1772    deleteTrackName_l(track->name());
1773    sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1774    if (chain != 0) {
1775        chain->decTrackCnt();
1776    }
1777}
1778
1779String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
1780{
1781    String8 out_s8 = String8("");
1782    char *s;
1783
1784    Mutex::Autolock _l(mLock);
1785    if (initCheck() != NO_ERROR) {
1786        return out_s8;
1787    }
1788
1789    s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
1790    out_s8 = String8(s);
1791    free(s);
1792    return out_s8;
1793}
1794
1795// audioConfigChanged_l() must be called with AudioFlinger::mLock held
1796void AudioFlinger::PlaybackThread::audioConfigChanged_l(int event, int param) {
1797    AudioSystem::OutputDescriptor desc;
1798    void *param2 = NULL;
1799
1800    ALOGV("PlaybackThread::audioConfigChanged_l, thread %p, event %d, param %d", this, event, param);
1801
1802    switch (event) {
1803    case AudioSystem::OUTPUT_OPENED:
1804    case AudioSystem::OUTPUT_CONFIG_CHANGED:
1805        desc.channels = mChannelMask;
1806        desc.samplingRate = mSampleRate;
1807        desc.format = mFormat;
1808        desc.frameCount = mFrameCount;
1809        desc.latency = latency();
1810        param2 = &desc;
1811        break;
1812
1813    case AudioSystem::STREAM_CONFIG_CHANGED:
1814        param2 = &param;
1815    case AudioSystem::OUTPUT_CLOSED:
1816    default:
1817        break;
1818    }
1819    mAudioFlinger->audioConfigChanged_l(event, mId, param2);
1820}
1821
1822void AudioFlinger::PlaybackThread::readOutputParameters()
1823{
1824    mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
1825    mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
1826    mChannelCount = (uint16_t)popcount(mChannelMask);
1827    mFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
1828    mFrameSize = audio_stream_frame_size(&mOutput->stream->common);
1829    mFrameCount = mOutput->stream->common.get_buffer_size(&mOutput->stream->common) / mFrameSize;
1830
1831    // FIXME - Current mixer implementation only supports stereo output: Always
1832    // Allocate a stereo buffer even if HW output is mono.
1833    delete[] mMixBuffer;
1834    mMixBuffer = new int16_t[mFrameCount * 2];
1835    memset(mMixBuffer, 0, mFrameCount * 2 * sizeof(int16_t));
1836
1837    // force reconfiguration of effect chains and engines to take new buffer size and audio
1838    // parameters into account
1839    // Note that mLock is not held when readOutputParameters() is called from the constructor
1840    // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
1841    // matter.
1842    // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
1843    Vector< sp<EffectChain> > effectChains = mEffectChains;
1844    for (size_t i = 0; i < effectChains.size(); i ++) {
1845        mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
1846    }
1847}
1848
1849status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
1850{
1851    if (halFrames == NULL || dspFrames == NULL) {
1852        return BAD_VALUE;
1853    }
1854    Mutex::Autolock _l(mLock);
1855    if (initCheck() != NO_ERROR) {
1856        return INVALID_OPERATION;
1857    }
1858    *halFrames = mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
1859
1860    return mOutput->stream->get_render_position(mOutput->stream, dspFrames);
1861}
1862
1863uint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId)
1864{
1865    Mutex::Autolock _l(mLock);
1866    uint32_t result = 0;
1867    if (getEffectChain_l(sessionId) != 0) {
1868        result = EFFECT_SESSION;
1869    }
1870
1871    for (size_t i = 0; i < mTracks.size(); ++i) {
1872        sp<Track> track = mTracks[i];
1873        if (sessionId == track->sessionId() &&
1874                !(track->mCblk->flags & CBLK_INVALID_MSK)) {
1875            result |= TRACK_SESSION;
1876            break;
1877        }
1878    }
1879
1880    return result;
1881}
1882
1883uint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
1884{
1885    // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
1886    // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
1887    if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
1888        return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1889    }
1890    for (size_t i = 0; i < mTracks.size(); i++) {
1891        sp<Track> track = mTracks[i];
1892        if (sessionId == track->sessionId() &&
1893                !(track->mCblk->flags & CBLK_INVALID_MSK)) {
1894            return AudioSystem::getStrategyForStream(track->streamType());
1895        }
1896    }
1897    return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1898}
1899
1900
1901AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput() const
1902{
1903    Mutex::Autolock _l(mLock);
1904    return mOutput;
1905}
1906
1907AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
1908{
1909    Mutex::Autolock _l(mLock);
1910    AudioStreamOut *output = mOutput;
1911    mOutput = NULL;
1912    return output;
1913}
1914
1915// this method must always be called either with ThreadBase mLock held or inside the thread loop
1916audio_stream_t* AudioFlinger::PlaybackThread::stream()
1917{
1918    if (mOutput == NULL) {
1919        return NULL;
1920    }
1921    return &mOutput->stream->common;
1922}
1923
1924uint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs()
1925{
1926    // A2DP output latency is not due only to buffering capacity. It also reflects encoding,
1927    // decoding and transfer time. So sleeping for half of the latency would likely cause
1928    // underruns
1929    if (audio_is_a2dp_device((audio_devices_t)mDevice)) {
1930        return (uint32_t)((uint32_t)((mFrameCount * 1000) / mSampleRate) * 1000);
1931    } else {
1932        return (uint32_t)(mOutput->stream->get_latency(mOutput->stream) * 1000) / 2;
1933    }
1934}
1935
1936// ----------------------------------------------------------------------------
1937
1938AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1939        audio_io_handle_t id, uint32_t device, type_t type)
1940    :   PlaybackThread(audioFlinger, output, id, device, type)
1941{
1942    mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
1943    // FIXME - Current mixer implementation only supports stereo output
1944    if (mChannelCount == 1) {
1945        ALOGE("Invalid audio hardware channel count");
1946    }
1947}
1948
1949AudioFlinger::MixerThread::~MixerThread()
1950{
1951    delete mAudioMixer;
1952}
1953
1954class CpuStats {
1955public:
1956    CpuStats();
1957    void sample(const String8 &title);
1958#ifdef DEBUG_CPU_USAGE
1959private:
1960    ThreadCpuUsage mCpuUsage;           // instantaneous thread CPU usage in wall clock ns
1961    CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns
1962
1963    CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles
1964
1965    int mCpuNum;                        // thread's current CPU number
1966    int mCpukHz;                        // frequency of thread's current CPU in kHz
1967#endif
1968};
1969
1970CpuStats::CpuStats()
1971#ifdef DEBUG_CPU_USAGE
1972    : mCpuNum(-1), mCpukHz(-1)
1973#endif
1974{
1975}
1976
1977void CpuStats::sample(const String8 &title) {
1978#ifdef DEBUG_CPU_USAGE
1979    // get current thread's delta CPU time in wall clock ns
1980    double wcNs;
1981    bool valid = mCpuUsage.sampleAndEnable(wcNs);
1982
1983    // record sample for wall clock statistics
1984    if (valid) {
1985        mWcStats.sample(wcNs);
1986    }
1987
1988    // get the current CPU number
1989    int cpuNum = sched_getcpu();
1990
1991    // get the current CPU frequency in kHz
1992    int cpukHz = mCpuUsage.getCpukHz(cpuNum);
1993
1994    // check if either CPU number or frequency changed
1995    if (cpuNum != mCpuNum || cpukHz != mCpukHz) {
1996        mCpuNum = cpuNum;
1997        mCpukHz = cpukHz;
1998        // ignore sample for purposes of cycles
1999        valid = false;
2000    }
2001
2002    // if no change in CPU number or frequency, then record sample for cycle statistics
2003    if (valid && mCpukHz > 0) {
2004        double cycles = wcNs * cpukHz * 0.000001;
2005        mHzStats.sample(cycles);
2006    }
2007
2008    unsigned n = mWcStats.n();
2009    // mCpuUsage.elapsed() is expensive, so don't call it every loop
2010    if ((n & 127) == 1) {
2011        long long elapsed = mCpuUsage.elapsed();
2012        if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
2013            double perLoop = elapsed / (double) n;
2014            double perLoop100 = perLoop * 0.01;
2015            double perLoop1k = perLoop * 0.001;
2016            double mean = mWcStats.mean();
2017            double stddev = mWcStats.stddev();
2018            double minimum = mWcStats.minimum();
2019            double maximum = mWcStats.maximum();
2020            double meanCycles = mHzStats.mean();
2021            double stddevCycles = mHzStats.stddev();
2022            double minCycles = mHzStats.minimum();
2023            double maxCycles = mHzStats.maximum();
2024            mCpuUsage.resetElapsed();
2025            mWcStats.reset();
2026            mHzStats.reset();
2027            ALOGD("CPU usage for %s over past %.1f secs\n"
2028                "  (%u mixer loops at %.1f mean ms per loop):\n"
2029                "  us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
2030                "  %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
2031                "  MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
2032                    title.string(),
2033                    elapsed * .000000001, n, perLoop * .000001,
2034                    mean * .001,
2035                    stddev * .001,
2036                    minimum * .001,
2037                    maximum * .001,
2038                    mean / perLoop100,
2039                    stddev / perLoop100,
2040                    minimum / perLoop100,
2041                    maximum / perLoop100,
2042                    meanCycles / perLoop1k,
2043                    stddevCycles / perLoop1k,
2044                    minCycles / perLoop1k,
2045                    maxCycles / perLoop1k);
2046
2047        }
2048    }
2049#endif
2050};
2051
2052void AudioFlinger::PlaybackThread::checkSilentMode_l()
2053{
2054    if (!mMasterMute) {
2055        char value[PROPERTY_VALUE_MAX];
2056        if (property_get("ro.audio.silent", value, "0") > 0) {
2057            char *endptr;
2058            unsigned long ul = strtoul(value, &endptr, 0);
2059            if (*endptr == '\0' && ul != 0) {
2060                ALOGD("Silence is golden");
2061                // The setprop command will not allow a property to be changed after
2062                // the first time it is set, so we don't have to worry about un-muting.
2063                setMasterMute_l(true);
2064            }
2065        }
2066    }
2067}
2068
2069bool AudioFlinger::PlaybackThread::threadLoop()
2070{
2071    Vector< sp<Track> > tracksToRemove;
2072
2073    standbyTime = systemTime();
2074
2075    // MIXER
2076    nsecs_t lastWarning = 0;
2077if (mType == MIXER) {
2078    longStandbyExit = false;
2079}
2080
2081    // DUPLICATING
2082    // FIXME could this be made local to while loop?
2083    writeFrames = 0;
2084
2085    cacheParameters_l();
2086    sleepTime = idleSleepTime;
2087
2088if (mType == MIXER) {
2089    sleepTimeShift = 0;
2090}
2091
2092    CpuStats cpuStats;
2093    const String8 myName(String8::format("thread %p type %d TID %d", this, mType, gettid()));
2094
2095    acquireWakeLock();
2096
2097    while (!exitPending())
2098    {
2099        cpuStats.sample(myName);
2100
2101        Vector< sp<EffectChain> > effectChains;
2102
2103        processConfigEvents();
2104
2105        { // scope for mLock
2106
2107            Mutex::Autolock _l(mLock);
2108
2109            if (checkForNewParameters_l()) {
2110                cacheParameters_l();
2111            }
2112
2113            saveOutputTracks();
2114
2115            // put audio hardware into standby after short delay
2116            if (CC_UNLIKELY((!mActiveTracks.size() && systemTime() > standbyTime) ||
2117                        mSuspended > 0)) {
2118                if (!mStandby) {
2119
2120                    threadLoop_standby();
2121
2122                    mStandby = true;
2123                    mBytesWritten = 0;
2124                }
2125
2126                if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
2127                    // we're about to wait, flush the binder command buffer
2128                    IPCThreadState::self()->flushCommands();
2129
2130                    clearOutputTracks();
2131
2132                    if (exitPending()) break;
2133
2134                    releaseWakeLock_l();
2135                    // wait until we have something to do...
2136                    ALOGV("%s going to sleep", myName.string());
2137                    mWaitWorkCV.wait(mLock);
2138                    ALOGV("%s waking up", myName.string());
2139                    acquireWakeLock_l();
2140
2141                    mPrevMixerStatus = MIXER_IDLE;
2142
2143                    checkSilentMode_l();
2144
2145                    standbyTime = systemTime() + standbyDelay;
2146                    sleepTime = idleSleepTime;
2147                    if (mType == MIXER) {
2148                        sleepTimeShift = 0;
2149                    }
2150
2151                    continue;
2152                }
2153            }
2154
2155            mixer_state newMixerStatus = prepareTracks_l(&tracksToRemove);
2156            // Shift in the new status; this could be a queue if it's
2157            // useful to filter the mixer status over several cycles.
2158            mPrevMixerStatus = mMixerStatus;
2159            mMixerStatus = newMixerStatus;
2160
2161            // prevent any changes in effect chain list and in each effect chain
2162            // during mixing and effect process as the audio buffers could be deleted
2163            // or modified if an effect is created or deleted
2164            lockEffectChains_l(effectChains);
2165        }
2166
2167        if (CC_LIKELY(mMixerStatus == MIXER_TRACKS_READY)) {
2168            threadLoop_mix();
2169        } else {
2170            threadLoop_sleepTime();
2171        }
2172
2173        if (mSuspended > 0) {
2174            sleepTime = suspendSleepTimeUs();
2175        }
2176
2177        // only process effects if we're going to write
2178        if (sleepTime == 0) {
2179            for (size_t i = 0; i < effectChains.size(); i ++) {
2180                effectChains[i]->process_l();
2181            }
2182        }
2183
2184        // enable changes in effect chain
2185        unlockEffectChains(effectChains);
2186
2187        // sleepTime == 0 means we must write to audio hardware
2188        if (sleepTime == 0) {
2189
2190            threadLoop_write();
2191
2192if (mType == MIXER) {
2193            // write blocked detection
2194            nsecs_t now = systemTime();
2195            nsecs_t delta = now - mLastWriteTime;
2196            if (!mStandby && delta > maxPeriod) {
2197                mNumDelayedWrites++;
2198                if ((now - lastWarning) > kWarningThrottleNs) {
2199                    ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
2200                            ns2ms(delta), mNumDelayedWrites, this);
2201                    lastWarning = now;
2202                }
2203                // FIXME this is broken: longStandbyExit should be handled out of the if() and with
2204                // a different threshold. Or completely removed for what it is worth anyway...
2205                if (mStandby) {
2206                    longStandbyExit = true;
2207                }
2208            }
2209}
2210
2211            mStandby = false;
2212        } else {
2213            usleep(sleepTime);
2214        }
2215
2216        // finally let go of removed track(s), without the lock held
2217        // since we can't guarantee the destructors won't acquire that
2218        // same lock.
2219        tracksToRemove.clear();
2220
2221        // FIXME I don't understand the need for this here;
2222        //       it was in the original code but maybe the
2223        //       assignment in saveOutputTracks() makes this unnecessary?
2224        clearOutputTracks();
2225
2226        // Effect chains will be actually deleted here if they were removed from
2227        // mEffectChains list during mixing or effects processing
2228        effectChains.clear();
2229
2230        // FIXME Note that the above .clear() is no longer necessary since effectChains
2231        // is now local to this block, but will keep it for now (at least until merge done).
2232    }
2233
2234if (mType == MIXER || mType == DIRECT) {
2235    // put output stream into standby mode
2236    if (!mStandby) {
2237        mOutput->stream->common.standby(&mOutput->stream->common);
2238    }
2239}
2240if (mType == DUPLICATING) {
2241    // for DuplicatingThread, standby mode is handled by the outputTracks
2242}
2243
2244    releaseWakeLock();
2245
2246    ALOGV("Thread %p type %d exiting", this, mType);
2247    return false;
2248}
2249
2250// shared by MIXER and DIRECT, overridden by DUPLICATING
2251void AudioFlinger::PlaybackThread::threadLoop_write()
2252{
2253    // FIXME rewrite to reduce number of system calls
2254    mLastWriteTime = systemTime();
2255    mInWrite = true;
2256    mBytesWritten += mixBufferSize;
2257    int bytesWritten = (int)mOutput->stream->write(mOutput->stream, mMixBuffer, mixBufferSize);
2258    if (bytesWritten < 0) mBytesWritten -= mixBufferSize;
2259    mNumWrites++;
2260    mInWrite = false;
2261}
2262
2263// shared by MIXER and DIRECT, overridden by DUPLICATING
2264void AudioFlinger::PlaybackThread::threadLoop_standby()
2265{
2266    ALOGV("Audio hardware entering standby, mixer %p, suspend count %u", this, mSuspended);
2267    mOutput->stream->common.standby(&mOutput->stream->common);
2268}
2269
2270void AudioFlinger::MixerThread::threadLoop_mix()
2271{
2272    // obtain the presentation timestamp of the next output buffer
2273    int64_t pts;
2274    status_t status = INVALID_OPERATION;
2275
2276    if (NULL != mOutput->stream->get_next_write_timestamp) {
2277        status = mOutput->stream->get_next_write_timestamp(
2278                mOutput->stream, &pts);
2279    }
2280
2281    if (status != NO_ERROR) {
2282        pts = AudioBufferProvider::kInvalidPTS;
2283    }
2284
2285    // mix buffers...
2286    mAudioMixer->process(pts);
2287    // increase sleep time progressively when application underrun condition clears.
2288    // Only increase sleep time if the mixer is ready for two consecutive times to avoid
2289    // that a steady state of alternating ready/not ready conditions keeps the sleep time
2290    // such that we would underrun the audio HAL.
2291    if ((sleepTime == 0) && (sleepTimeShift > 0)) {
2292        sleepTimeShift--;
2293    }
2294    sleepTime = 0;
2295    standbyTime = systemTime() + standbyDelay;
2296    //TODO: delay standby when effects have a tail
2297}
2298
2299void AudioFlinger::MixerThread::threadLoop_sleepTime()
2300{
2301    // If no tracks are ready, sleep once for the duration of an output
2302    // buffer size, then write 0s to the output
2303    if (sleepTime == 0) {
2304        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
2305            sleepTime = activeSleepTime >> sleepTimeShift;
2306            if (sleepTime < kMinThreadSleepTimeUs) {
2307                sleepTime = kMinThreadSleepTimeUs;
2308            }
2309            // reduce sleep time in case of consecutive application underruns to avoid
2310            // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
2311            // duration we would end up writing less data than needed by the audio HAL if
2312            // the condition persists.
2313            if (sleepTimeShift < kMaxThreadSleepTimeShift) {
2314                sleepTimeShift++;
2315            }
2316        } else {
2317            sleepTime = idleSleepTime;
2318        }
2319    } else if (mBytesWritten != 0 ||
2320               (mMixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)) {
2321        memset (mMixBuffer, 0, mixBufferSize);
2322        sleepTime = 0;
2323        ALOGV_IF((mBytesWritten == 0 && (mMixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)), "anticipated start");
2324    }
2325    // TODO add standby time extension fct of effect tail
2326}
2327
2328// prepareTracks_l() must be called with ThreadBase::mLock held
2329AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l(
2330        Vector< sp<Track> > *tracksToRemove)
2331{
2332
2333    mixer_state mixerStatus = MIXER_IDLE;
2334    // find out which tracks need to be processed
2335    size_t count = mActiveTracks.size();
2336    size_t mixedTracks = 0;
2337    size_t tracksWithEffect = 0;
2338
2339    float masterVolume = mMasterVolume;
2340    bool  masterMute = mMasterMute;
2341
2342    if (masterMute) {
2343        masterVolume = 0;
2344    }
2345    // Delegate master volume control to effect in output mix effect chain if needed
2346    sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
2347    if (chain != 0) {
2348        uint32_t v = (uint32_t)(masterVolume * (1 << 24));
2349        chain->setVolume_l(&v, &v);
2350        masterVolume = (float)((v + (1 << 23)) >> 24);
2351        chain.clear();
2352    }
2353
2354    for (size_t i=0 ; i<count ; i++) {
2355        sp<Track> t = mActiveTracks[i].promote();
2356        if (t == 0) continue;
2357
2358        // this const just means the local variable doesn't change
2359        Track* const track = t.get();
2360        audio_track_cblk_t* cblk = track->cblk();
2361
2362        // The first time a track is added we wait
2363        // for all its buffers to be filled before processing it
2364        int name = track->name();
2365        // make sure that we have enough frames to mix one full buffer.
2366        // enforce this condition only once to enable draining the buffer in case the client
2367        // app does not call stop() and relies on underrun to stop:
2368        // hence the test on (mPrevMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
2369        // during last round
2370        uint32_t minFrames = 1;
2371        if (!track->isStopped() && !track->isPausing() &&
2372                (mPrevMixerStatus == MIXER_TRACKS_READY)) {
2373            if (t->sampleRate() == (int)mSampleRate) {
2374                minFrames = mFrameCount;
2375            } else {
2376                // +1 for rounding and +1 for additional sample needed for interpolation
2377                minFrames = (mFrameCount * t->sampleRate()) / mSampleRate + 1 + 1;
2378                // add frames already consumed but not yet released by the resampler
2379                // because cblk->framesReady() will  include these frames
2380                minFrames += mAudioMixer->getUnreleasedFrames(track->name());
2381                // the minimum track buffer size is normally twice the number of frames necessary
2382                // to fill one buffer and the resampler should not leave more than one buffer worth
2383                // of unreleased frames after each pass, but just in case...
2384                ALOG_ASSERT(minFrames <= cblk->frameCount);
2385            }
2386        }
2387        if ((track->framesReady() >= minFrames) && track->isReady() &&
2388                !track->isPaused() && !track->isTerminated())
2389        {
2390            //ALOGV("track %d u=%08x, s=%08x [OK] on thread %p", name, cblk->user, cblk->server, this);
2391
2392            mixedTracks++;
2393
2394            // track->mainBuffer() != mMixBuffer means there is an effect chain
2395            // connected to the track
2396            chain.clear();
2397            if (track->mainBuffer() != mMixBuffer) {
2398                chain = getEffectChain_l(track->sessionId());
2399                // Delegate volume control to effect in track effect chain if needed
2400                if (chain != 0) {
2401                    tracksWithEffect++;
2402                } else {
2403                    ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on session %d",
2404                            name, track->sessionId());
2405                }
2406            }
2407
2408
2409            int param = AudioMixer::VOLUME;
2410            if (track->mFillingUpStatus == Track::FS_FILLED) {
2411                // no ramp for the first volume setting
2412                track->mFillingUpStatus = Track::FS_ACTIVE;
2413                if (track->mState == TrackBase::RESUMING) {
2414                    track->mState = TrackBase::ACTIVE;
2415                    param = AudioMixer::RAMP_VOLUME;
2416                }
2417                mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
2418            } else if (cblk->server != 0) {
2419                // If the track is stopped before the first frame was mixed,
2420                // do not apply ramp
2421                param = AudioMixer::RAMP_VOLUME;
2422            }
2423
2424            // compute volume for this track
2425            uint32_t vl, vr, va;
2426            if (track->isMuted() || track->isPausing() ||
2427                mStreamTypes[track->streamType()].mute) {
2428                vl = vr = va = 0;
2429                if (track->isPausing()) {
2430                    track->setPaused();
2431                }
2432            } else {
2433
2434                // read original volumes with volume control
2435                float typeVolume = mStreamTypes[track->streamType()].volume;
2436                float v = masterVolume * typeVolume;
2437                uint32_t vlr = cblk->getVolumeLR();
2438                vl = vlr & 0xFFFF;
2439                vr = vlr >> 16;
2440                // track volumes come from shared memory, so can't be trusted and must be clamped
2441                if (vl > MAX_GAIN_INT) {
2442                    ALOGV("Track left volume out of range: %04X", vl);
2443                    vl = MAX_GAIN_INT;
2444                }
2445                if (vr > MAX_GAIN_INT) {
2446                    ALOGV("Track right volume out of range: %04X", vr);
2447                    vr = MAX_GAIN_INT;
2448                }
2449                // now apply the master volume and stream type volume
2450                vl = (uint32_t)(v * vl) << 12;
2451                vr = (uint32_t)(v * vr) << 12;
2452                // assuming master volume and stream type volume each go up to 1.0,
2453                // vl and vr are now in 8.24 format
2454
2455                uint16_t sendLevel = cblk->getSendLevel_U4_12();
2456                // send level comes from shared memory and so may be corrupt
2457                if (sendLevel > MAX_GAIN_INT) {
2458                    ALOGV("Track send level out of range: %04X", sendLevel);
2459                    sendLevel = MAX_GAIN_INT;
2460                }
2461                va = (uint32_t)(v * sendLevel);
2462            }
2463            // Delegate volume control to effect in track effect chain if needed
2464            if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
2465                // Do not ramp volume if volume is controlled by effect
2466                param = AudioMixer::VOLUME;
2467                track->mHasVolumeController = true;
2468            } else {
2469                // force no volume ramp when volume controller was just disabled or removed
2470                // from effect chain to avoid volume spike
2471                if (track->mHasVolumeController) {
2472                    param = AudioMixer::VOLUME;
2473                }
2474                track->mHasVolumeController = false;
2475            }
2476
2477            // Convert volumes from 8.24 to 4.12 format
2478            // This additional clamping is needed in case chain->setVolume_l() overshot
2479            vl = (vl + (1 << 11)) >> 12;
2480            if (vl > MAX_GAIN_INT) vl = MAX_GAIN_INT;
2481            vr = (vr + (1 << 11)) >> 12;
2482            if (vr > MAX_GAIN_INT) vr = MAX_GAIN_INT;
2483
2484            if (va > MAX_GAIN_INT) va = MAX_GAIN_INT;   // va is uint32_t, so no need to check for -
2485
2486            // XXX: these things DON'T need to be done each time
2487            mAudioMixer->setBufferProvider(name, track);
2488            mAudioMixer->enable(name);
2489
2490            mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, (void *)vl);
2491            mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, (void *)vr);
2492            mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, (void *)va);
2493            mAudioMixer->setParameter(
2494                name,
2495                AudioMixer::TRACK,
2496                AudioMixer::FORMAT, (void *)track->format());
2497            mAudioMixer->setParameter(
2498                name,
2499                AudioMixer::TRACK,
2500                AudioMixer::CHANNEL_MASK, (void *)track->channelMask());
2501            mAudioMixer->setParameter(
2502                name,
2503                AudioMixer::RESAMPLE,
2504                AudioMixer::SAMPLE_RATE,
2505                (void *)(cblk->sampleRate));
2506            mAudioMixer->setParameter(
2507                name,
2508                AudioMixer::TRACK,
2509                AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
2510            mAudioMixer->setParameter(
2511                name,
2512                AudioMixer::TRACK,
2513                AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
2514
2515            // reset retry count
2516            track->mRetryCount = kMaxTrackRetries;
2517            // If one track is ready, set the mixer ready if:
2518            //  - the mixer was not ready during previous round OR
2519            //  - no other track is not ready
2520            if (mPrevMixerStatus != MIXER_TRACKS_READY ||
2521                    mixerStatus != MIXER_TRACKS_ENABLED) {
2522                mixerStatus = MIXER_TRACKS_READY;
2523            }
2524        } else {
2525            //ALOGV("track %d u=%08x, s=%08x [NOT READY] on thread %p", name, cblk->user, cblk->server, this);
2526            if (track->isStopped()) {
2527                track->reset();
2528            }
2529            if (track->isTerminated() || track->isStopped() || track->isPaused()) {
2530                // We have consumed all the buffers of this track.
2531                // Remove it from the list of active tracks.
2532                tracksToRemove->add(track);
2533            } else {
2534                // No buffers for this track. Give it a few chances to
2535                // fill a buffer, then remove it from active list.
2536                if (--(track->mRetryCount) <= 0) {
2537                    ALOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
2538                    tracksToRemove->add(track);
2539                    // indicate to client process that the track was disabled because of underrun
2540                    android_atomic_or(CBLK_DISABLED_ON, &cblk->flags);
2541                // If one track is not ready, mark the mixer also not ready if:
2542                //  - the mixer was ready during previous round OR
2543                //  - no other track is ready
2544                } else if (mPrevMixerStatus == MIXER_TRACKS_READY ||
2545                                mixerStatus != MIXER_TRACKS_READY) {
2546                    mixerStatus = MIXER_TRACKS_ENABLED;
2547                }
2548            }
2549            mAudioMixer->disable(name);
2550        }
2551    }
2552
2553    // remove all the tracks that need to be...
2554    count = tracksToRemove->size();
2555    if (CC_UNLIKELY(count)) {
2556        for (size_t i=0 ; i<count ; i++) {
2557            const sp<Track>& track = tracksToRemove->itemAt(i);
2558            mActiveTracks.remove(track);
2559            if (track->mainBuffer() != mMixBuffer) {
2560                chain = getEffectChain_l(track->sessionId());
2561                if (chain != 0) {
2562                    ALOGV("stopping track on chain %p for session Id: %d", chain.get(), track->sessionId());
2563                    chain->decActiveTrackCnt();
2564                }
2565            }
2566            if (track->isTerminated()) {
2567                removeTrack_l(track);
2568            }
2569        }
2570    }
2571
2572    // mix buffer must be cleared if all tracks are connected to an
2573    // effect chain as in this case the mixer will not write to
2574    // mix buffer and track effects will accumulate into it
2575    if (mixedTracks != 0 && mixedTracks == tracksWithEffect) {
2576        memset(mMixBuffer, 0, mFrameCount * mChannelCount * sizeof(int16_t));
2577    }
2578
2579    return mixerStatus;
2580}
2581
2582/*
2583The derived values that are cached:
2584 - mixBufferSize from frame count * frame size
2585 - activeSleepTime from activeSleepTimeUs()
2586 - idleSleepTime from idleSleepTimeUs()
2587 - standbyDelay from mActiveSleepTimeUs (DIRECT only)
2588 - maxPeriod from frame count and sample rate (MIXER only)
2589
2590The parameters that affect these derived values are:
2591 - frame count
2592 - frame size
2593 - sample rate
2594 - device type: A2DP or not
2595 - device latency
2596 - format: PCM or not
2597 - active sleep time
2598 - idle sleep time
2599*/
2600
2601void AudioFlinger::PlaybackThread::cacheParameters_l()
2602{
2603    mixBufferSize = mFrameCount * mFrameSize;
2604    activeSleepTime = activeSleepTimeUs();
2605    idleSleepTime = idleSleepTimeUs();
2606}
2607
2608void AudioFlinger::MixerThread::invalidateTracks(audio_stream_type_t streamType)
2609{
2610    ALOGV ("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
2611            this,  streamType, mTracks.size());
2612    Mutex::Autolock _l(mLock);
2613
2614    size_t size = mTracks.size();
2615    for (size_t i = 0; i < size; i++) {
2616        sp<Track> t = mTracks[i];
2617        if (t->streamType() == streamType) {
2618            android_atomic_or(CBLK_INVALID_ON, &t->mCblk->flags);
2619            t->mCblk->cv.signal();
2620        }
2621    }
2622}
2623
2624void AudioFlinger::PlaybackThread::setStreamValid(audio_stream_type_t streamType, bool valid)
2625{
2626    ALOGV ("PlaybackThread::setStreamValid() thread %p, streamType %d, valid %d",
2627            this,  streamType, valid);
2628    Mutex::Autolock _l(mLock);
2629
2630    mStreamTypes[streamType].valid = valid;
2631}
2632
2633// getTrackName_l() must be called with ThreadBase::mLock held
2634int AudioFlinger::MixerThread::getTrackName_l()
2635{
2636    return mAudioMixer->getTrackName();
2637}
2638
2639// deleteTrackName_l() must be called with ThreadBase::mLock held
2640void AudioFlinger::MixerThread::deleteTrackName_l(int name)
2641{
2642    ALOGV("remove track (%d) and delete from mixer", name);
2643    mAudioMixer->deleteTrackName(name);
2644}
2645
2646// checkForNewParameters_l() must be called with ThreadBase::mLock held
2647bool AudioFlinger::MixerThread::checkForNewParameters_l()
2648{
2649    bool reconfig = false;
2650
2651    while (!mNewParameters.isEmpty()) {
2652        status_t status = NO_ERROR;
2653        String8 keyValuePair = mNewParameters[0];
2654        AudioParameter param = AudioParameter(keyValuePair);
2655        int value;
2656
2657        if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
2658            reconfig = true;
2659        }
2660        if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
2661            if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
2662                status = BAD_VALUE;
2663            } else {
2664                reconfig = true;
2665            }
2666        }
2667        if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
2668            if (value != AUDIO_CHANNEL_OUT_STEREO) {
2669                status = BAD_VALUE;
2670            } else {
2671                reconfig = true;
2672            }
2673        }
2674        if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
2675            // do not accept frame count changes if tracks are open as the track buffer
2676            // size depends on frame count and correct behavior would not be guaranteed
2677            // if frame count is changed after track creation
2678            if (!mTracks.isEmpty()) {
2679                status = INVALID_OPERATION;
2680            } else {
2681                reconfig = true;
2682            }
2683        }
2684        if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
2685#ifdef ADD_BATTERY_DATA
2686            // when changing the audio output device, call addBatteryData to notify
2687            // the change
2688            if ((int)mDevice != value) {
2689                uint32_t params = 0;
2690                // check whether speaker is on
2691                if (value & AUDIO_DEVICE_OUT_SPEAKER) {
2692                    params |= IMediaPlayerService::kBatteryDataSpeakerOn;
2693                }
2694
2695                int deviceWithoutSpeaker
2696                    = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
2697                // check if any other device (except speaker) is on
2698                if (value & deviceWithoutSpeaker ) {
2699                    params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
2700                }
2701
2702                if (params != 0) {
2703                    addBatteryData(params);
2704                }
2705            }
2706#endif
2707
2708            // forward device change to effects that have requested to be
2709            // aware of attached audio device.
2710            mDevice = (uint32_t)value;
2711            for (size_t i = 0; i < mEffectChains.size(); i++) {
2712                mEffectChains[i]->setDevice_l(mDevice);
2713            }
2714        }
2715
2716        if (status == NO_ERROR) {
2717            status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
2718                                                    keyValuePair.string());
2719            if (!mStandby && status == INVALID_OPERATION) {
2720                mOutput->stream->common.standby(&mOutput->stream->common);
2721                mStandby = true;
2722                mBytesWritten = 0;
2723                status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
2724                                                       keyValuePair.string());
2725            }
2726            if (status == NO_ERROR && reconfig) {
2727                delete mAudioMixer;
2728                // for safety in case readOutputParameters() accesses mAudioMixer (it doesn't)
2729                mAudioMixer = NULL;
2730                readOutputParameters();
2731                mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
2732                for (size_t i = 0; i < mTracks.size() ; i++) {
2733                    int name = getTrackName_l();
2734                    if (name < 0) break;
2735                    mTracks[i]->mName = name;
2736                    // limit track sample rate to 2 x new output sample rate
2737                    if (mTracks[i]->mCblk->sampleRate > 2 * sampleRate()) {
2738                        mTracks[i]->mCblk->sampleRate = 2 * sampleRate();
2739                    }
2740                }
2741                sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
2742            }
2743        }
2744
2745        mNewParameters.removeAt(0);
2746
2747        mParamStatus = status;
2748        mParamCond.signal();
2749        // wait for condition with time out in case the thread calling ThreadBase::setParameters()
2750        // already timed out waiting for the status and will never signal the condition.
2751        mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
2752    }
2753    return reconfig;
2754}
2755
2756status_t AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
2757{
2758    const size_t SIZE = 256;
2759    char buffer[SIZE];
2760    String8 result;
2761
2762    PlaybackThread::dumpInternals(fd, args);
2763
2764    snprintf(buffer, SIZE, "AudioMixer tracks: %08x\n", mAudioMixer->trackNames());
2765    result.append(buffer);
2766    write(fd, result.string(), result.size());
2767    return NO_ERROR;
2768}
2769
2770uint32_t AudioFlinger::MixerThread::idleSleepTimeUs()
2771{
2772    return (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
2773}
2774
2775uint32_t AudioFlinger::MixerThread::suspendSleepTimeUs()
2776{
2777    return (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
2778}
2779
2780void AudioFlinger::MixerThread::cacheParameters_l()
2781{
2782    PlaybackThread::cacheParameters_l();
2783
2784    // FIXME: Relaxed timing because of a certain device that can't meet latency
2785    // Should be reduced to 2x after the vendor fixes the driver issue
2786    // increase threshold again due to low power audio mode. The way this warning
2787    // threshold is calculated and its usefulness should be reconsidered anyway.
2788    maxPeriod = seconds(mFrameCount) / mSampleRate * 15;
2789}
2790
2791// ----------------------------------------------------------------------------
2792AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
2793        AudioStreamOut* output, audio_io_handle_t id, uint32_t device)
2794    :   PlaybackThread(audioFlinger, output, id, device, DIRECT)
2795        // mLeftVolFloat, mRightVolFloat
2796        // mLeftVolShort, mRightVolShort
2797{
2798}
2799
2800AudioFlinger::DirectOutputThread::~DirectOutputThread()
2801{
2802}
2803
2804AudioFlinger::PlaybackThread::mixer_state AudioFlinger::DirectOutputThread::prepareTracks_l(
2805    Vector< sp<Track> > *tracksToRemove
2806)
2807{
2808    sp<Track> trackToRemove;
2809
2810    mixer_state mixerStatus = MIXER_IDLE;
2811
2812    // find out which tracks need to be processed
2813    if (mActiveTracks.size() != 0) {
2814        sp<Track> t = mActiveTracks[0].promote();
2815        // The track died recently
2816        if (t == 0) return MIXER_IDLE;
2817
2818        Track* const track = t.get();
2819        audio_track_cblk_t* cblk = track->cblk();
2820
2821        // The first time a track is added we wait
2822        // for all its buffers to be filled before processing it
2823        if (cblk->framesReady() && track->isReady() &&
2824                !track->isPaused() && !track->isTerminated())
2825        {
2826            //ALOGV("track %d u=%08x, s=%08x [OK]", track->name(), cblk->user, cblk->server);
2827
2828            if (track->mFillingUpStatus == Track::FS_FILLED) {
2829                track->mFillingUpStatus = Track::FS_ACTIVE;
2830                mLeftVolFloat = mRightVolFloat = 0;
2831                mLeftVolShort = mRightVolShort = 0;
2832                if (track->mState == TrackBase::RESUMING) {
2833                    track->mState = TrackBase::ACTIVE;
2834                    rampVolume = true;
2835                }
2836            } else if (cblk->server != 0) {
2837                // If the track is stopped before the first frame was mixed,
2838                // do not apply ramp
2839                rampVolume = true;
2840            }
2841            // compute volume for this track
2842            float left, right;
2843            if (track->isMuted() || mMasterMute || track->isPausing() ||
2844                mStreamTypes[track->streamType()].mute) {
2845                left = right = 0;
2846                if (track->isPausing()) {
2847                    track->setPaused();
2848                }
2849            } else {
2850                float typeVolume = mStreamTypes[track->streamType()].volume;
2851                float v = mMasterVolume * typeVolume;
2852                uint32_t vlr = cblk->getVolumeLR();
2853                float v_clamped = v * (vlr & 0xFFFF);
2854                if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
2855                left = v_clamped/MAX_GAIN;
2856                v_clamped = v * (vlr >> 16);
2857                if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
2858                right = v_clamped/MAX_GAIN;
2859            }
2860
2861            if (left != mLeftVolFloat || right != mRightVolFloat) {
2862                mLeftVolFloat = left;
2863                mRightVolFloat = right;
2864
2865                // If audio HAL implements volume control,
2866                // force software volume to nominal value
2867                if (mOutput->stream->set_volume(mOutput->stream, left, right) == NO_ERROR) {
2868                    left = 1.0f;
2869                    right = 1.0f;
2870                }
2871
2872                // Convert volumes from float to 8.24
2873                uint32_t vl = (uint32_t)(left * (1 << 24));
2874                uint32_t vr = (uint32_t)(right * (1 << 24));
2875
2876                // Delegate volume control to effect in track effect chain if needed
2877                // only one effect chain can be present on DirectOutputThread, so if
2878                // there is one, the track is connected to it
2879                if (!mEffectChains.isEmpty()) {
2880                    // Do not ramp volume if volume is controlled by effect
2881                    if (mEffectChains[0]->setVolume_l(&vl, &vr)) {
2882                        rampVolume = false;
2883                    }
2884                }
2885
2886                // Convert volumes from 8.24 to 4.12 format
2887                uint32_t v_clamped = (vl + (1 << 11)) >> 12;
2888                if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2889                leftVol = (uint16_t)v_clamped;
2890                v_clamped = (vr + (1 << 11)) >> 12;
2891                if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2892                rightVol = (uint16_t)v_clamped;
2893            } else {
2894                leftVol = mLeftVolShort;
2895                rightVol = mRightVolShort;
2896                rampVolume = false;
2897            }
2898
2899            // reset retry count
2900            track->mRetryCount = kMaxTrackRetriesDirect;
2901            mActiveTrack = t;
2902            mixerStatus = MIXER_TRACKS_READY;
2903        } else {
2904            //ALOGV("track %d u=%08x, s=%08x [NOT READY]", track->name(), cblk->user, cblk->server);
2905            if (track->isStopped()) {
2906                track->reset();
2907            }
2908            if (track->isTerminated() || track->isStopped() || track->isPaused()) {
2909                // We have consumed all the buffers of this track.
2910                // Remove it from the list of active tracks.
2911                trackToRemove = track;
2912            } else {
2913                // No buffers for this track. Give it a few chances to
2914                // fill a buffer, then remove it from active list.
2915                if (--(track->mRetryCount) <= 0) {
2916                    ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
2917                    trackToRemove = track;
2918                } else {
2919                    mixerStatus = MIXER_TRACKS_ENABLED;
2920                }
2921            }
2922        }
2923    }
2924
2925    // FIXME merge this with similar code for removing multiple tracks
2926    // remove all the tracks that need to be...
2927    if (CC_UNLIKELY(trackToRemove != 0)) {
2928        tracksToRemove->add(trackToRemove);
2929        mActiveTracks.remove(trackToRemove);
2930        if (!mEffectChains.isEmpty()) {
2931            ALOGV("stopping track on chain %p for session Id: %d", mEffectChains[0].get(),
2932                    trackToRemove->sessionId());
2933            mEffectChains[0]->decActiveTrackCnt();
2934        }
2935        if (trackToRemove->isTerminated()) {
2936            removeTrack_l(trackToRemove);
2937        }
2938    }
2939
2940    return mixerStatus;
2941}
2942
2943void AudioFlinger::DirectOutputThread::threadLoop_mix()
2944{
2945    AudioBufferProvider::Buffer buffer;
2946    size_t frameCount = mFrameCount;
2947    int8_t *curBuf = (int8_t *)mMixBuffer;
2948    // output audio to hardware
2949    while (frameCount) {
2950        buffer.frameCount = frameCount;
2951        mActiveTrack->getNextBuffer(&buffer);
2952        if (CC_UNLIKELY(buffer.raw == NULL)) {
2953            memset(curBuf, 0, frameCount * mFrameSize);
2954            break;
2955        }
2956        memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
2957        frameCount -= buffer.frameCount;
2958        curBuf += buffer.frameCount * mFrameSize;
2959        mActiveTrack->releaseBuffer(&buffer);
2960    }
2961    sleepTime = 0;
2962    standbyTime = systemTime() + standbyDelay;
2963    mActiveTrack.clear();
2964
2965    // apply volume
2966
2967    // Do not apply volume on compressed audio
2968    if (!audio_is_linear_pcm(mFormat)) {
2969        return;
2970    }
2971
2972    // convert to signed 16 bit before volume calculation
2973    if (mFormat == AUDIO_FORMAT_PCM_8_BIT) {
2974        size_t count = mFrameCount * mChannelCount;
2975        uint8_t *src = (uint8_t *)mMixBuffer + count-1;
2976        int16_t *dst = mMixBuffer + count-1;
2977        while (count--) {
2978            *dst-- = (int16_t)(*src--^0x80) << 8;
2979        }
2980    }
2981
2982    frameCount = mFrameCount;
2983    int16_t *out = mMixBuffer;
2984    if (rampVolume) {
2985        if (mChannelCount == 1) {
2986            int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
2987            int32_t vlInc = d / (int32_t)frameCount;
2988            int32_t vl = ((int32_t)mLeftVolShort << 16);
2989            do {
2990                out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
2991                out++;
2992                vl += vlInc;
2993            } while (--frameCount);
2994
2995        } else {
2996            int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
2997            int32_t vlInc = d / (int32_t)frameCount;
2998            d = ((int32_t)rightVol - (int32_t)mRightVolShort) << 16;
2999            int32_t vrInc = d / (int32_t)frameCount;
3000            int32_t vl = ((int32_t)mLeftVolShort << 16);
3001            int32_t vr = ((int32_t)mRightVolShort << 16);
3002            do {
3003                out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
3004                out[1] = clamp16(mul(out[1], vr >> 16) >> 12);
3005                out += 2;
3006                vl += vlInc;
3007                vr += vrInc;
3008            } while (--frameCount);
3009        }
3010    } else {
3011        if (mChannelCount == 1) {
3012            do {
3013                out[0] = clamp16(mul(out[0], leftVol) >> 12);
3014                out++;
3015            } while (--frameCount);
3016        } else {
3017            do {
3018                out[0] = clamp16(mul(out[0], leftVol) >> 12);
3019                out[1] = clamp16(mul(out[1], rightVol) >> 12);
3020                out += 2;
3021            } while (--frameCount);
3022        }
3023    }
3024
3025    // convert back to unsigned 8 bit after volume calculation
3026    if (mFormat == AUDIO_FORMAT_PCM_8_BIT) {
3027        size_t count = mFrameCount * mChannelCount;
3028        int16_t *src = mMixBuffer;
3029        uint8_t *dst = (uint8_t *)mMixBuffer;
3030        while (count--) {
3031            *dst++ = (uint8_t)(((int32_t)*src++ + (1<<7)) >> 8)^0x80;
3032        }
3033    }
3034
3035    mLeftVolShort = leftVol;
3036    mRightVolShort = rightVol;
3037}
3038
3039void AudioFlinger::DirectOutputThread::threadLoop_sleepTime()
3040{
3041    if (sleepTime == 0) {
3042        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
3043            sleepTime = activeSleepTime;
3044        } else {
3045            sleepTime = idleSleepTime;
3046        }
3047    } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
3048        memset (mMixBuffer, 0, mFrameCount * mFrameSize);
3049        sleepTime = 0;
3050    }
3051}
3052
3053// getTrackName_l() must be called with ThreadBase::mLock held
3054int AudioFlinger::DirectOutputThread::getTrackName_l()
3055{
3056    return 0;
3057}
3058
3059// deleteTrackName_l() must be called with ThreadBase::mLock held
3060void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name)
3061{
3062}
3063
3064// checkForNewParameters_l() must be called with ThreadBase::mLock held
3065bool AudioFlinger::DirectOutputThread::checkForNewParameters_l()
3066{
3067    bool reconfig = false;
3068
3069    while (!mNewParameters.isEmpty()) {
3070        status_t status = NO_ERROR;
3071        String8 keyValuePair = mNewParameters[0];
3072        AudioParameter param = AudioParameter(keyValuePair);
3073        int value;
3074
3075        if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3076            // do not accept frame count changes if tracks are open as the track buffer
3077            // size depends on frame count and correct behavior would not be garantied
3078            // if frame count is changed after track creation
3079            if (!mTracks.isEmpty()) {
3080                status = INVALID_OPERATION;
3081            } else {
3082                reconfig = true;
3083            }
3084        }
3085        if (status == NO_ERROR) {
3086            status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
3087                                                    keyValuePair.string());
3088            if (!mStandby && status == INVALID_OPERATION) {
3089                mOutput->stream->common.standby(&mOutput->stream->common);
3090                mStandby = true;
3091                mBytesWritten = 0;
3092                status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
3093                                                       keyValuePair.string());
3094            }
3095            if (status == NO_ERROR && reconfig) {
3096                readOutputParameters();
3097                sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
3098            }
3099        }
3100
3101        mNewParameters.removeAt(0);
3102
3103        mParamStatus = status;
3104        mParamCond.signal();
3105        // wait for condition with time out in case the thread calling ThreadBase::setParameters()
3106        // already timed out waiting for the status and will never signal the condition.
3107        mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
3108    }
3109    return reconfig;
3110}
3111
3112uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs()
3113{
3114    uint32_t time;
3115    if (audio_is_linear_pcm(mFormat)) {
3116        time = PlaybackThread::activeSleepTimeUs();
3117    } else {
3118        time = 10000;
3119    }
3120    return time;
3121}
3122
3123uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs()
3124{
3125    uint32_t time;
3126    if (audio_is_linear_pcm(mFormat)) {
3127        time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
3128    } else {
3129        time = 10000;
3130    }
3131    return time;
3132}
3133
3134uint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs()
3135{
3136    uint32_t time;
3137    if (audio_is_linear_pcm(mFormat)) {
3138        time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
3139    } else {
3140        time = 10000;
3141    }
3142    return time;
3143}
3144
3145void AudioFlinger::DirectOutputThread::cacheParameters_l()
3146{
3147    PlaybackThread::cacheParameters_l();
3148
3149    // use shorter standby delay as on normal output to release
3150    // hardware resources as soon as possible
3151    standbyDelay = microseconds(activeSleepTime*2);
3152}
3153
3154// ----------------------------------------------------------------------------
3155
3156AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger,
3157        AudioFlinger::MixerThread* mainThread, audio_io_handle_t id)
3158    :   MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->device(), DUPLICATING),
3159        mWaitTimeMs(UINT_MAX)
3160{
3161    addOutputTrack(mainThread);
3162}
3163
3164AudioFlinger::DuplicatingThread::~DuplicatingThread()
3165{
3166    for (size_t i = 0; i < mOutputTracks.size(); i++) {
3167        mOutputTracks[i]->destroy();
3168    }
3169}
3170
3171void AudioFlinger::DuplicatingThread::threadLoop_mix()
3172{
3173    // mix buffers...
3174    if (outputsReady(outputTracks)) {
3175        mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
3176    } else {
3177        memset(mMixBuffer, 0, mixBufferSize);
3178    }
3179    sleepTime = 0;
3180    writeFrames = mFrameCount;
3181}
3182
3183void AudioFlinger::DuplicatingThread::threadLoop_sleepTime()
3184{
3185    if (sleepTime == 0) {
3186        if (mMixerStatus == MIXER_TRACKS_ENABLED) {
3187            sleepTime = activeSleepTime;
3188        } else {
3189            sleepTime = idleSleepTime;
3190        }
3191    } else if (mBytesWritten != 0) {
3192        // flush remaining overflow buffers in output tracks
3193        for (size_t i = 0; i < outputTracks.size(); i++) {
3194            if (outputTracks[i]->isActive()) {
3195                sleepTime = 0;
3196                writeFrames = 0;
3197                memset(mMixBuffer, 0, mixBufferSize);
3198                break;
3199            }
3200        }
3201    }
3202}
3203
3204void AudioFlinger::DuplicatingThread::threadLoop_write()
3205{
3206    standbyTime = systemTime() + standbyDelay;
3207    for (size_t i = 0; i < outputTracks.size(); i++) {
3208        outputTracks[i]->write(mMixBuffer, writeFrames);
3209    }
3210    mBytesWritten += mixBufferSize;
3211}
3212
3213void AudioFlinger::DuplicatingThread::threadLoop_standby()
3214{
3215    // DuplicatingThread implements standby by stopping all tracks
3216    for (size_t i = 0; i < outputTracks.size(); i++) {
3217        outputTracks[i]->stop();
3218    }
3219}
3220
3221void AudioFlinger::DuplicatingThread::saveOutputTracks()
3222{
3223    outputTracks = mOutputTracks;
3224}
3225
3226void AudioFlinger::DuplicatingThread::clearOutputTracks()
3227{
3228    outputTracks.clear();
3229}
3230
3231void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
3232{
3233    Mutex::Autolock _l(mLock);
3234    // FIXME explain this formula
3235    int frameCount = (3 * mFrameCount * mSampleRate) / thread->sampleRate();
3236    OutputTrack *outputTrack = new OutputTrack(thread,
3237                                            this,
3238                                            mSampleRate,
3239                                            mFormat,
3240                                            mChannelMask,
3241                                            frameCount);
3242    if (outputTrack->cblk() != NULL) {
3243        thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
3244        mOutputTracks.add(outputTrack);
3245        ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
3246        updateWaitTime_l();
3247    }
3248}
3249
3250void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
3251{
3252    Mutex::Autolock _l(mLock);
3253    for (size_t i = 0; i < mOutputTracks.size(); i++) {
3254        if (mOutputTracks[i]->thread() == thread) {
3255            mOutputTracks[i]->destroy();
3256            mOutputTracks.removeAt(i);
3257            updateWaitTime_l();
3258            return;
3259        }
3260    }
3261    ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
3262}
3263
3264// caller must hold mLock
3265void AudioFlinger::DuplicatingThread::updateWaitTime_l()
3266{
3267    mWaitTimeMs = UINT_MAX;
3268    for (size_t i = 0; i < mOutputTracks.size(); i++) {
3269        sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
3270        if (strong != 0) {
3271            uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
3272            if (waitTimeMs < mWaitTimeMs) {
3273                mWaitTimeMs = waitTimeMs;
3274            }
3275        }
3276    }
3277}
3278
3279
3280bool AudioFlinger::DuplicatingThread::outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks)
3281{
3282    for (size_t i = 0; i < outputTracks.size(); i++) {
3283        sp<ThreadBase> thread = outputTracks[i]->thread().promote();
3284        if (thread == 0) {
3285            ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p", outputTracks[i].get());
3286            return false;
3287        }
3288        PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3289        if (playbackThread->standby() && !playbackThread->isSuspended()) {
3290            ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(), thread.get());
3291            return false;
3292        }
3293    }
3294    return true;
3295}
3296
3297uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs()
3298{
3299    return (mWaitTimeMs * 1000) / 2;
3300}
3301
3302void AudioFlinger::DuplicatingThread::cacheParameters_l()
3303{
3304    // updateWaitTime_l() sets mWaitTimeMs, which affects activeSleepTimeUs(), so call it first
3305    updateWaitTime_l();
3306
3307    MixerThread::cacheParameters_l();
3308}
3309
3310// ----------------------------------------------------------------------------
3311
3312// TrackBase constructor must be called with AudioFlinger::mLock held
3313AudioFlinger::ThreadBase::TrackBase::TrackBase(
3314            ThreadBase *thread,
3315            const sp<Client>& client,
3316            uint32_t sampleRate,
3317            audio_format_t format,
3318            uint32_t channelMask,
3319            int frameCount,
3320            const sp<IMemory>& sharedBuffer,
3321            int sessionId)
3322    :   RefBase(),
3323        mThread(thread),
3324        mClient(client),
3325        mCblk(NULL),
3326        // mBuffer
3327        // mBufferEnd
3328        mFrameCount(0),
3329        mState(IDLE),
3330        mFormat(format),
3331        mStepServerFailed(false),
3332        mSessionId(sessionId)
3333        // mChannelCount
3334        // mChannelMask
3335{
3336    ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
3337
3338    // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
3339    size_t size = sizeof(audio_track_cblk_t);
3340    uint8_t channelCount = popcount(channelMask);
3341    size_t bufferSize = frameCount*channelCount*sizeof(int16_t);
3342    if (sharedBuffer == 0) {
3343        size += bufferSize;
3344    }
3345
3346    if (client != NULL) {
3347        mCblkMemory = client->heap()->allocate(size);
3348        if (mCblkMemory != 0) {
3349            mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer());
3350            if (mCblk != NULL) { // construct the shared structure in-place.
3351                new(mCblk) audio_track_cblk_t();
3352                // clear all buffers
3353                mCblk->frameCount = frameCount;
3354                mCblk->sampleRate = sampleRate;
3355                mChannelCount = channelCount;
3356                mChannelMask = channelMask;
3357                if (sharedBuffer == 0) {
3358                    mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
3359                    memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
3360                    // Force underrun condition to avoid false underrun callback until first data is
3361                    // written to buffer (other flags are cleared)
3362                    mCblk->flags = CBLK_UNDERRUN_ON;
3363                } else {
3364                    mBuffer = sharedBuffer->pointer();
3365                }
3366                mBufferEnd = (uint8_t *)mBuffer + bufferSize;
3367            }
3368        } else {
3369            ALOGE("not enough memory for AudioTrack size=%u", size);
3370            client->heap()->dump("AudioTrack");
3371            return;
3372        }
3373    } else {
3374        mCblk = (audio_track_cblk_t *)(new uint8_t[size]);
3375            // construct the shared structure in-place.
3376            new(mCblk) audio_track_cblk_t();
3377            // clear all buffers
3378            mCblk->frameCount = frameCount;
3379            mCblk->sampleRate = sampleRate;
3380            mChannelCount = channelCount;
3381            mChannelMask = channelMask;
3382            mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
3383            memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
3384            // Force underrun condition to avoid false underrun callback until first data is
3385            // written to buffer (other flags are cleared)
3386            mCblk->flags = CBLK_UNDERRUN_ON;
3387            mBufferEnd = (uint8_t *)mBuffer + bufferSize;
3388    }
3389}
3390
3391AudioFlinger::ThreadBase::TrackBase::~TrackBase()
3392{
3393    if (mCblk != NULL) {
3394        if (mClient == 0) {
3395            delete mCblk;
3396        } else {
3397            mCblk->~audio_track_cblk_t();   // destroy our shared-structure.
3398        }
3399    }
3400    mCblkMemory.clear();    // free the shared memory before releasing the heap it belongs to
3401    if (mClient != 0) {
3402        // Client destructor must run with AudioFlinger mutex locked
3403        Mutex::Autolock _l(mClient->audioFlinger()->mLock);
3404        // If the client's reference count drops to zero, the associated destructor
3405        // must run with AudioFlinger lock held. Thus the explicit clear() rather than
3406        // relying on the automatic clear() at end of scope.
3407        mClient.clear();
3408    }
3409}
3410
3411// AudioBufferProvider interface
3412// getNextBuffer() = 0;
3413// This implementation of releaseBuffer() is used by Track and RecordTrack, but not TimedTrack
3414void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
3415{
3416    buffer->raw = NULL;
3417    mFrameCount = buffer->frameCount;
3418    (void) step();      // ignore return value of step()
3419    buffer->frameCount = 0;
3420}
3421
3422bool AudioFlinger::ThreadBase::TrackBase::step() {
3423    bool result;
3424    audio_track_cblk_t* cblk = this->cblk();
3425
3426    result = cblk->stepServer(mFrameCount);
3427    if (!result) {
3428        ALOGV("stepServer failed acquiring cblk mutex");
3429        mStepServerFailed = true;
3430    }
3431    return result;
3432}
3433
3434void AudioFlinger::ThreadBase::TrackBase::reset() {
3435    audio_track_cblk_t* cblk = this->cblk();
3436
3437    cblk->user = 0;
3438    cblk->server = 0;
3439    cblk->userBase = 0;
3440    cblk->serverBase = 0;
3441    mStepServerFailed = false;
3442    ALOGV("TrackBase::reset");
3443}
3444
3445int AudioFlinger::ThreadBase::TrackBase::sampleRate() const {
3446    return (int)mCblk->sampleRate;
3447}
3448
3449void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
3450    audio_track_cblk_t* cblk = this->cblk();
3451    size_t frameSize = cblk->frameSize;
3452    int8_t *bufferStart = (int8_t *)mBuffer + (offset-cblk->serverBase)*frameSize;
3453    int8_t *bufferEnd = bufferStart + frames * frameSize;
3454
3455    // Check validity of returned pointer in case the track control block would have been corrupted.
3456    if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
3457        ((unsigned long)bufferStart & (unsigned long)(frameSize - 1))) {
3458        ALOGE("TrackBase::getBuffer buffer out of range:\n    start: %p, end %p , mBuffer %p mBufferEnd %p\n    \
3459                server %d, serverBase %d, user %d, userBase %d",
3460                bufferStart, bufferEnd, mBuffer, mBufferEnd,
3461                cblk->server, cblk->serverBase, cblk->user, cblk->userBase);
3462        return NULL;
3463    }
3464
3465    return bufferStart;
3466}
3467
3468// ----------------------------------------------------------------------------
3469
3470// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
3471AudioFlinger::PlaybackThread::Track::Track(
3472            PlaybackThread *thread,
3473            const sp<Client>& client,
3474            audio_stream_type_t streamType,
3475            uint32_t sampleRate,
3476            audio_format_t format,
3477            uint32_t channelMask,
3478            int frameCount,
3479            const sp<IMemory>& sharedBuffer,
3480            int sessionId)
3481    :   TrackBase(thread, client, sampleRate, format, channelMask, frameCount, sharedBuffer, sessionId),
3482    mMute(false),
3483    // mFillingUpStatus ?
3484    // mRetryCount initialized later when needed
3485    mSharedBuffer(sharedBuffer),
3486    mStreamType(streamType),
3487    mName(-1),  // see note below
3488    mMainBuffer(thread->mixBuffer()),
3489    mAuxBuffer(NULL),
3490    mAuxEffectId(0), mHasVolumeController(false)
3491{
3492    if (mCblk != NULL) {
3493        // NOTE: audio_track_cblk_t::frameSize for 8 bit PCM data is based on a sample size of
3494        // 16 bit because data is converted to 16 bit before being stored in buffer by AudioTrack
3495        mCblk->frameSize = audio_is_linear_pcm(format) ? mChannelCount * sizeof(int16_t) : sizeof(uint8_t);
3496        // to avoid leaking a track name, do not allocate one unless there is an mCblk
3497        mName = thread->getTrackName_l();
3498        if (mName < 0) {
3499            ALOGE("no more track names available");
3500        }
3501    }
3502    ALOGV("Track constructor name %d, calling pid %d", mName, IPCThreadState::self()->getCallingPid());
3503}
3504
3505AudioFlinger::PlaybackThread::Track::~Track()
3506{
3507    ALOGV("PlaybackThread::Track destructor");
3508    sp<ThreadBase> thread = mThread.promote();
3509    if (thread != 0) {
3510        Mutex::Autolock _l(thread->mLock);
3511        mState = TERMINATED;
3512    }
3513}
3514
3515void AudioFlinger::PlaybackThread::Track::destroy()
3516{
3517    // NOTE: destroyTrack_l() can remove a strong reference to this Track
3518    // by removing it from mTracks vector, so there is a risk that this Tracks's
3519    // destructor is called. As the destructor needs to lock mLock,
3520    // we must acquire a strong reference on this Track before locking mLock
3521    // here so that the destructor is called only when exiting this function.
3522    // On the other hand, as long as Track::destroy() is only called by
3523    // TrackHandle destructor, the TrackHandle still holds a strong ref on
3524    // this Track with its member mTrack.
3525    sp<Track> keep(this);
3526    { // scope for mLock
3527        sp<ThreadBase> thread = mThread.promote();
3528        if (thread != 0) {
3529            if (!isOutputTrack()) {
3530                if (mState == ACTIVE || mState == RESUMING) {
3531                    AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
3532
3533#ifdef ADD_BATTERY_DATA
3534                    // to track the speaker usage
3535                    addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
3536#endif
3537                }
3538                AudioSystem::releaseOutput(thread->id());
3539            }
3540            Mutex::Autolock _l(thread->mLock);
3541            PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3542            playbackThread->destroyTrack_l(this);
3543        }
3544    }
3545}
3546
3547void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size)
3548{
3549    uint32_t vlr = mCblk->getVolumeLR();
3550    snprintf(buffer, size, "   %05d %05d %03u %03u 0x%08x %05u   %04u %1d %1d %1d %05u %05u %05u  0x%08x 0x%08x 0x%08x 0x%08x\n",
3551            mName - AudioMixer::TRACK0,
3552            (mClient == 0) ? getpid_cached : mClient->pid(),
3553            mStreamType,
3554            mFormat,
3555            mChannelMask,
3556            mSessionId,
3557            mFrameCount,
3558            mState,
3559            mMute,
3560            mFillingUpStatus,
3561            mCblk->sampleRate,
3562            vlr & 0xFFFF,
3563            vlr >> 16,
3564            mCblk->server,
3565            mCblk->user,
3566            (int)mMainBuffer,
3567            (int)mAuxBuffer);
3568}
3569
3570// AudioBufferProvider interface
3571status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(
3572        AudioBufferProvider::Buffer* buffer, int64_t pts)
3573{
3574    audio_track_cblk_t* cblk = this->cblk();
3575    uint32_t framesReady;
3576    uint32_t framesReq = buffer->frameCount;
3577
3578    // Check if last stepServer failed, try to step now
3579    if (mStepServerFailed) {
3580        if (!step())  goto getNextBuffer_exit;
3581        ALOGV("stepServer recovered");
3582        mStepServerFailed = false;
3583    }
3584
3585    framesReady = cblk->framesReady();
3586
3587    if (CC_LIKELY(framesReady)) {
3588        uint32_t s = cblk->server;
3589        uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
3590
3591        bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
3592        if (framesReq > framesReady) {
3593            framesReq = framesReady;
3594        }
3595        if (s + framesReq > bufferEnd) {
3596            framesReq = bufferEnd - s;
3597        }
3598
3599        buffer->raw = getBuffer(s, framesReq);
3600        if (buffer->raw == NULL) goto getNextBuffer_exit;
3601
3602        buffer->frameCount = framesReq;
3603        return NO_ERROR;
3604    }
3605
3606getNextBuffer_exit:
3607    buffer->raw = NULL;
3608    buffer->frameCount = 0;
3609    ALOGV("getNextBuffer() no more data for track %d on thread %p", mName, mThread.unsafe_get());
3610    return NOT_ENOUGH_DATA;
3611}
3612
3613uint32_t AudioFlinger::PlaybackThread::Track::framesReady() const {
3614    return mCblk->framesReady();
3615}
3616
3617bool AudioFlinger::PlaybackThread::Track::isReady() const {
3618    if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) return true;
3619
3620    if (framesReady() >= mCblk->frameCount ||
3621            (mCblk->flags & CBLK_FORCEREADY_MSK)) {
3622        mFillingUpStatus = FS_FILLED;
3623        android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
3624        return true;
3625    }
3626    return false;
3627}
3628
3629status_t AudioFlinger::PlaybackThread::Track::start(pid_t tid)
3630{
3631    status_t status = NO_ERROR;
3632    ALOGV("start(%d), calling pid %d session %d tid %d",
3633            mName, IPCThreadState::self()->getCallingPid(), mSessionId, tid);
3634    sp<ThreadBase> thread = mThread.promote();
3635    if (thread != 0) {
3636        Mutex::Autolock _l(thread->mLock);
3637        track_state state = mState;
3638        // here the track could be either new, or restarted
3639        // in both cases "unstop" the track
3640        if (mState == PAUSED) {
3641            mState = TrackBase::RESUMING;
3642            ALOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
3643        } else {
3644            mState = TrackBase::ACTIVE;
3645            ALOGV("? => ACTIVE (%d) on thread %p", mName, this);
3646        }
3647
3648        if (!isOutputTrack() && state != ACTIVE && state != RESUMING) {
3649            thread->mLock.unlock();
3650            status = AudioSystem::startOutput(thread->id(), mStreamType, mSessionId);
3651            thread->mLock.lock();
3652
3653#ifdef ADD_BATTERY_DATA
3654            // to track the speaker usage
3655            if (status == NO_ERROR) {
3656                addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
3657            }
3658#endif
3659        }
3660        if (status == NO_ERROR) {
3661            PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3662            playbackThread->addTrack_l(this);
3663        } else {
3664            mState = state;
3665        }
3666    } else {
3667        status = BAD_VALUE;
3668    }
3669    return status;
3670}
3671
3672void AudioFlinger::PlaybackThread::Track::stop()
3673{
3674    ALOGV("stop(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
3675    sp<ThreadBase> thread = mThread.promote();
3676    if (thread != 0) {
3677        Mutex::Autolock _l(thread->mLock);
3678        track_state state = mState;
3679        if (mState > STOPPED) {
3680            mState = STOPPED;
3681            // If the track is not active (PAUSED and buffers full), flush buffers
3682            PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3683            if (playbackThread->mActiveTracks.indexOf(this) < 0) {
3684                reset();
3685            }
3686            ALOGV("(> STOPPED) => STOPPED (%d) on thread %p", mName, playbackThread);
3687        }
3688        if (!isOutputTrack() && (state == ACTIVE || state == RESUMING)) {
3689            thread->mLock.unlock();
3690            AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
3691            thread->mLock.lock();
3692
3693#ifdef ADD_BATTERY_DATA
3694            // to track the speaker usage
3695            addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
3696#endif
3697        }
3698    }
3699}
3700
3701void AudioFlinger::PlaybackThread::Track::pause()
3702{
3703    ALOGV("pause(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
3704    sp<ThreadBase> thread = mThread.promote();
3705    if (thread != 0) {
3706        Mutex::Autolock _l(thread->mLock);
3707        if (mState == ACTIVE || mState == RESUMING) {
3708            mState = PAUSING;
3709            ALOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
3710            if (!isOutputTrack()) {
3711                thread->mLock.unlock();
3712                AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
3713                thread->mLock.lock();
3714
3715#ifdef ADD_BATTERY_DATA
3716                // to track the speaker usage
3717                addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
3718#endif
3719            }
3720        }
3721    }
3722}
3723
3724void AudioFlinger::PlaybackThread::Track::flush()
3725{
3726    ALOGV("flush(%d)", mName);
3727    sp<ThreadBase> thread = mThread.promote();
3728    if (thread != 0) {
3729        Mutex::Autolock _l(thread->mLock);
3730        if (mState != STOPPED && mState != PAUSED && mState != PAUSING) {
3731            return;
3732        }
3733        // No point remaining in PAUSED state after a flush => go to
3734        // STOPPED state
3735        mState = STOPPED;
3736
3737        // do not reset the track if it is still in the process of being stopped or paused.
3738        // this will be done by prepareTracks_l() when the track is stopped.
3739        PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3740        if (playbackThread->mActiveTracks.indexOf(this) < 0) {
3741            reset();
3742        }
3743    }
3744}
3745
3746void AudioFlinger::PlaybackThread::Track::reset()
3747{
3748    // Do not reset twice to avoid discarding data written just after a flush and before
3749    // the audioflinger thread detects the track is stopped.
3750    if (!mResetDone) {
3751        TrackBase::reset();
3752        // Force underrun condition to avoid false underrun callback until first data is
3753        // written to buffer
3754        android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
3755        android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
3756        mFillingUpStatus = FS_FILLING;
3757        mResetDone = true;
3758    }
3759}
3760
3761void AudioFlinger::PlaybackThread::Track::mute(bool muted)
3762{
3763    mMute = muted;
3764}
3765
3766status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
3767{
3768    status_t status = DEAD_OBJECT;
3769    sp<ThreadBase> thread = mThread.promote();
3770    if (thread != 0) {
3771        PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3772        status = playbackThread->attachAuxEffect(this, EffectId);
3773    }
3774    return status;
3775}
3776
3777void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
3778{
3779    mAuxEffectId = EffectId;
3780    mAuxBuffer = buffer;
3781}
3782
3783// timed audio tracks
3784
3785sp<AudioFlinger::PlaybackThread::TimedTrack>
3786AudioFlinger::PlaybackThread::TimedTrack::create(
3787            PlaybackThread *thread,
3788            const sp<Client>& client,
3789            audio_stream_type_t streamType,
3790            uint32_t sampleRate,
3791            audio_format_t format,
3792            uint32_t channelMask,
3793            int frameCount,
3794            const sp<IMemory>& sharedBuffer,
3795            int sessionId) {
3796    if (!client->reserveTimedTrack())
3797        return NULL;
3798
3799    sp<TimedTrack> track = new TimedTrack(
3800        thread, client, streamType, sampleRate, format, channelMask, frameCount,
3801        sharedBuffer, sessionId);
3802
3803    if (track == NULL) {
3804        client->releaseTimedTrack();
3805        return NULL;
3806    }
3807
3808    return track;
3809}
3810
3811AudioFlinger::PlaybackThread::TimedTrack::TimedTrack(
3812            PlaybackThread *thread,
3813            const sp<Client>& client,
3814            audio_stream_type_t streamType,
3815            uint32_t sampleRate,
3816            audio_format_t format,
3817            uint32_t channelMask,
3818            int frameCount,
3819            const sp<IMemory>& sharedBuffer,
3820            int sessionId)
3821    : Track(thread, client, streamType, sampleRate, format, channelMask,
3822            frameCount, sharedBuffer, sessionId),
3823      mTimedSilenceBuffer(NULL),
3824      mTimedSilenceBufferSize(0),
3825      mTimedAudioOutputOnTime(false),
3826      mMediaTimeTransformValid(false)
3827{
3828    LocalClock lc;
3829    mLocalTimeFreq = lc.getLocalFreq();
3830
3831    mLocalTimeToSampleTransform.a_zero = 0;
3832    mLocalTimeToSampleTransform.b_zero = 0;
3833    mLocalTimeToSampleTransform.a_to_b_numer = sampleRate;
3834    mLocalTimeToSampleTransform.a_to_b_denom = mLocalTimeFreq;
3835    LinearTransform::reduce(&mLocalTimeToSampleTransform.a_to_b_numer,
3836                            &mLocalTimeToSampleTransform.a_to_b_denom);
3837}
3838
3839AudioFlinger::PlaybackThread::TimedTrack::~TimedTrack() {
3840    mClient->releaseTimedTrack();
3841    delete [] mTimedSilenceBuffer;
3842}
3843
3844status_t AudioFlinger::PlaybackThread::TimedTrack::allocateTimedBuffer(
3845    size_t size, sp<IMemory>* buffer) {
3846
3847    Mutex::Autolock _l(mTimedBufferQueueLock);
3848
3849    trimTimedBufferQueue_l();
3850
3851    // lazily initialize the shared memory heap for timed buffers
3852    if (mTimedMemoryDealer == NULL) {
3853        const int kTimedBufferHeapSize = 512 << 10;
3854
3855        mTimedMemoryDealer = new MemoryDealer(kTimedBufferHeapSize,
3856                                              "AudioFlingerTimed");
3857        if (mTimedMemoryDealer == NULL)
3858            return NO_MEMORY;
3859    }
3860
3861    sp<IMemory> newBuffer = mTimedMemoryDealer->allocate(size);
3862    if (newBuffer == NULL) {
3863        newBuffer = mTimedMemoryDealer->allocate(size);
3864        if (newBuffer == NULL)
3865            return NO_MEMORY;
3866    }
3867
3868    *buffer = newBuffer;
3869    return NO_ERROR;
3870}
3871
3872// caller must hold mTimedBufferQueueLock
3873void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueue_l() {
3874    int64_t mediaTimeNow;
3875    {
3876        Mutex::Autolock mttLock(mMediaTimeTransformLock);
3877        if (!mMediaTimeTransformValid)
3878            return;
3879
3880        int64_t targetTimeNow;
3881        status_t res = (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME)
3882            ? mCCHelper.getCommonTime(&targetTimeNow)
3883            : mCCHelper.getLocalTime(&targetTimeNow);
3884
3885        if (OK != res)
3886            return;
3887
3888        if (!mMediaTimeTransform.doReverseTransform(targetTimeNow,
3889                                                    &mediaTimeNow)) {
3890            return;
3891        }
3892    }
3893
3894    size_t trimIndex;
3895    for (trimIndex = 0; trimIndex < mTimedBufferQueue.size(); trimIndex++) {
3896        if (mTimedBufferQueue[trimIndex].pts() > mediaTimeNow)
3897            break;
3898    }
3899
3900    if (trimIndex) {
3901        mTimedBufferQueue.removeItemsAt(0, trimIndex);
3902    }
3903}
3904
3905status_t AudioFlinger::PlaybackThread::TimedTrack::queueTimedBuffer(
3906    const sp<IMemory>& buffer, int64_t pts) {
3907
3908    {
3909        Mutex::Autolock mttLock(mMediaTimeTransformLock);
3910        if (!mMediaTimeTransformValid)
3911            return INVALID_OPERATION;
3912    }
3913
3914    Mutex::Autolock _l(mTimedBufferQueueLock);
3915
3916    mTimedBufferQueue.add(TimedBuffer(buffer, pts));
3917
3918    return NO_ERROR;
3919}
3920
3921status_t AudioFlinger::PlaybackThread::TimedTrack::setMediaTimeTransform(
3922    const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) {
3923
3924    ALOGV("%s az=%lld bz=%lld n=%d d=%u tgt=%d", __PRETTY_FUNCTION__,
3925         xform.a_zero, xform.b_zero, xform.a_to_b_numer, xform.a_to_b_denom,
3926         target);
3927
3928    if (!(target == TimedAudioTrack::LOCAL_TIME ||
3929          target == TimedAudioTrack::COMMON_TIME)) {
3930        return BAD_VALUE;
3931    }
3932
3933    Mutex::Autolock lock(mMediaTimeTransformLock);
3934    mMediaTimeTransform = xform;
3935    mMediaTimeTransformTarget = target;
3936    mMediaTimeTransformValid = true;
3937
3938    return NO_ERROR;
3939}
3940
3941#define min(a, b) ((a) < (b) ? (a) : (b))
3942
3943// implementation of getNextBuffer for tracks whose buffers have timestamps
3944status_t AudioFlinger::PlaybackThread::TimedTrack::getNextBuffer(
3945    AudioBufferProvider::Buffer* buffer, int64_t pts)
3946{
3947    if (pts == AudioBufferProvider::kInvalidPTS) {
3948        buffer->raw = 0;
3949        buffer->frameCount = 0;
3950        return INVALID_OPERATION;
3951    }
3952
3953    Mutex::Autolock _l(mTimedBufferQueueLock);
3954
3955    while (true) {
3956
3957        // if we have no timed buffers, then fail
3958        if (mTimedBufferQueue.isEmpty()) {
3959            buffer->raw = 0;
3960            buffer->frameCount = 0;
3961            return NOT_ENOUGH_DATA;
3962        }
3963
3964        TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
3965
3966        // calculate the PTS of the head of the timed buffer queue expressed in
3967        // local time
3968        int64_t headLocalPTS;
3969        {
3970            Mutex::Autolock mttLock(mMediaTimeTransformLock);
3971
3972            ALOG_ASSERT(mMediaTimeTransformValid, "media time transform invalid");
3973
3974            if (mMediaTimeTransform.a_to_b_denom == 0) {
3975                // the transform represents a pause, so yield silence
3976                timedYieldSilence(buffer->frameCount, buffer);
3977                return NO_ERROR;
3978            }
3979
3980            int64_t transformedPTS;
3981            if (!mMediaTimeTransform.doForwardTransform(head.pts(),
3982                                                        &transformedPTS)) {
3983                // the transform failed.  this shouldn't happen, but if it does
3984                // then just drop this buffer
3985                ALOGW("timedGetNextBuffer transform failed");
3986                buffer->raw = 0;
3987                buffer->frameCount = 0;
3988                mTimedBufferQueue.removeAt(0);
3989                return NO_ERROR;
3990            }
3991
3992            if (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME) {
3993                if (OK != mCCHelper.commonTimeToLocalTime(transformedPTS,
3994                                                          &headLocalPTS)) {
3995                    buffer->raw = 0;
3996                    buffer->frameCount = 0;
3997                    return INVALID_OPERATION;
3998                }
3999            } else {
4000                headLocalPTS = transformedPTS;
4001            }
4002        }
4003
4004        // adjust the head buffer's PTS to reflect the portion of the head buffer
4005        // that has already been consumed
4006        int64_t effectivePTS = headLocalPTS +
4007                ((head.position() / mCblk->frameSize) * mLocalTimeFreq / sampleRate());
4008
4009        // Calculate the delta in samples between the head of the input buffer
4010        // queue and the start of the next output buffer that will be written.
4011        // If the transformation fails because of over or underflow, it means
4012        // that the sample's position in the output stream is so far out of
4013        // whack that it should just be dropped.
4014        int64_t sampleDelta;
4015        if (llabs(effectivePTS - pts) >= (static_cast<int64_t>(1) << 31)) {
4016            ALOGV("*** head buffer is too far from PTS: dropped buffer");
4017            mTimedBufferQueue.removeAt(0);
4018            continue;
4019        }
4020        if (!mLocalTimeToSampleTransform.doForwardTransform(
4021                (effectivePTS - pts) << 32, &sampleDelta)) {
4022            ALOGV("*** too late during sample rate transform: dropped buffer");
4023            mTimedBufferQueue.removeAt(0);
4024            continue;
4025        }
4026
4027        ALOGV("*** %s head.pts=%lld head.pos=%d pts=%lld sampleDelta=[%d.%08x]",
4028             __PRETTY_FUNCTION__, head.pts(), head.position(), pts,
4029             static_cast<int32_t>((sampleDelta >= 0 ? 0 : 1) + (sampleDelta >> 32)),
4030             static_cast<uint32_t>(sampleDelta & 0xFFFFFFFF));
4031
4032        // if the delta between the ideal placement for the next input sample and
4033        // the current output position is within this threshold, then we will
4034        // concatenate the next input samples to the previous output
4035        const int64_t kSampleContinuityThreshold =
4036                (static_cast<int64_t>(sampleRate()) << 32) / 10;
4037
4038        // if this is the first buffer of audio that we're emitting from this track
4039        // then it should be almost exactly on time.
4040        const int64_t kSampleStartupThreshold = 1LL << 32;
4041
4042        if ((mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleContinuityThreshold) ||
4043            (!mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleStartupThreshold)) {
4044            // the next input is close enough to being on time, so concatenate it
4045            // with the last output
4046            timedYieldSamples(buffer);
4047
4048            ALOGV("*** on time: head.pos=%d frameCount=%u", head.position(), buffer->frameCount);
4049            return NO_ERROR;
4050        } else if (sampleDelta > 0) {
4051            // the gap between the current output position and the proper start of
4052            // the next input sample is too big, so fill it with silence
4053            uint32_t framesUntilNextInput = (sampleDelta + 0x80000000) >> 32;
4054
4055            timedYieldSilence(framesUntilNextInput, buffer);
4056            ALOGV("*** silence: frameCount=%u", buffer->frameCount);
4057            return NO_ERROR;
4058        } else {
4059            // the next input sample is late
4060            uint32_t lateFrames = static_cast<uint32_t>(-((sampleDelta + 0x80000000) >> 32));
4061            size_t onTimeSamplePosition =
4062                    head.position() + lateFrames * mCblk->frameSize;
4063
4064            if (onTimeSamplePosition > head.buffer()->size()) {
4065                // all the remaining samples in the head are too late, so
4066                // drop it and move on
4067                ALOGV("*** too late: dropped buffer");
4068                mTimedBufferQueue.removeAt(0);
4069                continue;
4070            } else {
4071                // skip over the late samples
4072                head.setPosition(onTimeSamplePosition);
4073
4074                // yield the available samples
4075                timedYieldSamples(buffer);
4076
4077                ALOGV("*** late: head.pos=%d frameCount=%u", head.position(), buffer->frameCount);
4078                return NO_ERROR;
4079            }
4080        }
4081    }
4082}
4083
4084// Yield samples from the timed buffer queue head up to the given output
4085// buffer's capacity.
4086//
4087// Caller must hold mTimedBufferQueueLock
4088void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSamples(
4089    AudioBufferProvider::Buffer* buffer) {
4090
4091    const TimedBuffer& head = mTimedBufferQueue[0];
4092
4093    buffer->raw = (static_cast<uint8_t*>(head.buffer()->pointer()) +
4094                   head.position());
4095
4096    uint32_t framesLeftInHead = ((head.buffer()->size() - head.position()) /
4097                                 mCblk->frameSize);
4098    size_t framesRequested = buffer->frameCount;
4099    buffer->frameCount = min(framesLeftInHead, framesRequested);
4100
4101    mTimedAudioOutputOnTime = true;
4102}
4103
4104// Yield samples of silence up to the given output buffer's capacity
4105//
4106// Caller must hold mTimedBufferQueueLock
4107void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSilence(
4108    uint32_t numFrames, AudioBufferProvider::Buffer* buffer) {
4109
4110    // lazily allocate a buffer filled with silence
4111    if (mTimedSilenceBufferSize < numFrames * mCblk->frameSize) {
4112        delete [] mTimedSilenceBuffer;
4113        mTimedSilenceBufferSize = numFrames * mCblk->frameSize;
4114        mTimedSilenceBuffer = new uint8_t[mTimedSilenceBufferSize];
4115        memset(mTimedSilenceBuffer, 0, mTimedSilenceBufferSize);
4116    }
4117
4118    buffer->raw = mTimedSilenceBuffer;
4119    size_t framesRequested = buffer->frameCount;
4120    buffer->frameCount = min(numFrames, framesRequested);
4121
4122    mTimedAudioOutputOnTime = false;
4123}
4124
4125// AudioBufferProvider interface
4126void AudioFlinger::PlaybackThread::TimedTrack::releaseBuffer(
4127    AudioBufferProvider::Buffer* buffer) {
4128
4129    Mutex::Autolock _l(mTimedBufferQueueLock);
4130
4131    // If the buffer which was just released is part of the buffer at the head
4132    // of the queue, be sure to update the amt of the buffer which has been
4133    // consumed.  If the buffer being returned is not part of the head of the
4134    // queue, its either because the buffer is part of the silence buffer, or
4135    // because the head of the timed queue was trimmed after the mixer called
4136    // getNextBuffer but before the mixer called releaseBuffer.
4137    if ((buffer->raw != mTimedSilenceBuffer) && mTimedBufferQueue.size()) {
4138        TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
4139
4140        void* start = head.buffer()->pointer();
4141        void* end   = (char *) head.buffer()->pointer() + head.buffer()->size();
4142
4143        if ((buffer->raw >= start) && (buffer->raw <= end)) {
4144            head.setPosition(head.position() +
4145                    (buffer->frameCount * mCblk->frameSize));
4146            if (static_cast<size_t>(head.position()) >= head.buffer()->size()) {
4147                mTimedBufferQueue.removeAt(0);
4148            }
4149        }
4150    }
4151
4152    buffer->raw = 0;
4153    buffer->frameCount = 0;
4154}
4155
4156uint32_t AudioFlinger::PlaybackThread::TimedTrack::framesReady() const {
4157    Mutex::Autolock _l(mTimedBufferQueueLock);
4158
4159    uint32_t frames = 0;
4160    for (size_t i = 0; i < mTimedBufferQueue.size(); i++) {
4161        const TimedBuffer& tb = mTimedBufferQueue[i];
4162        frames += (tb.buffer()->size() - tb.position())  / mCblk->frameSize;
4163    }
4164
4165    return frames;
4166}
4167
4168AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer()
4169        : mPTS(0), mPosition(0) {}
4170
4171AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer(
4172    const sp<IMemory>& buffer, int64_t pts)
4173        : mBuffer(buffer), mPTS(pts), mPosition(0) {}
4174
4175// ----------------------------------------------------------------------------
4176
4177// RecordTrack constructor must be called with AudioFlinger::mLock held
4178AudioFlinger::RecordThread::RecordTrack::RecordTrack(
4179            RecordThread *thread,
4180            const sp<Client>& client,
4181            uint32_t sampleRate,
4182            audio_format_t format,
4183            uint32_t channelMask,
4184            int frameCount,
4185            int sessionId)
4186    :   TrackBase(thread, client, sampleRate, format,
4187                  channelMask, frameCount, 0 /*sharedBuffer*/, sessionId),
4188        mOverflow(false)
4189{
4190    if (mCblk != NULL) {
4191        ALOGV("RecordTrack constructor, size %d", (int)mBufferEnd - (int)mBuffer);
4192        if (format == AUDIO_FORMAT_PCM_16_BIT) {
4193            mCblk->frameSize = mChannelCount * sizeof(int16_t);
4194        } else if (format == AUDIO_FORMAT_PCM_8_BIT) {
4195            mCblk->frameSize = mChannelCount * sizeof(int8_t);
4196        } else {
4197            mCblk->frameSize = sizeof(int8_t);
4198        }
4199    }
4200}
4201
4202AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
4203{
4204    sp<ThreadBase> thread = mThread.promote();
4205    if (thread != 0) {
4206        AudioSystem::releaseInput(thread->id());
4207    }
4208}
4209
4210// AudioBufferProvider interface
4211status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
4212{
4213    audio_track_cblk_t* cblk = this->cblk();
4214    uint32_t framesAvail;
4215    uint32_t framesReq = buffer->frameCount;
4216
4217    // Check if last stepServer failed, try to step now
4218    if (mStepServerFailed) {
4219        if (!step()) goto getNextBuffer_exit;
4220        ALOGV("stepServer recovered");
4221        mStepServerFailed = false;
4222    }
4223
4224    framesAvail = cblk->framesAvailable_l();
4225
4226    if (CC_LIKELY(framesAvail)) {
4227        uint32_t s = cblk->server;
4228        uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
4229
4230        if (framesReq > framesAvail) {
4231            framesReq = framesAvail;
4232        }
4233        if (s + framesReq > bufferEnd) {
4234            framesReq = bufferEnd - s;
4235        }
4236
4237        buffer->raw = getBuffer(s, framesReq);
4238        if (buffer->raw == NULL) goto getNextBuffer_exit;
4239
4240        buffer->frameCount = framesReq;
4241        return NO_ERROR;
4242    }
4243
4244getNextBuffer_exit:
4245    buffer->raw = NULL;
4246    buffer->frameCount = 0;
4247    return NOT_ENOUGH_DATA;
4248}
4249
4250status_t AudioFlinger::RecordThread::RecordTrack::start(pid_t tid)
4251{
4252    sp<ThreadBase> thread = mThread.promote();
4253    if (thread != 0) {
4254        RecordThread *recordThread = (RecordThread *)thread.get();
4255        return recordThread->start(this, tid);
4256    } else {
4257        return BAD_VALUE;
4258    }
4259}
4260
4261void AudioFlinger::RecordThread::RecordTrack::stop()
4262{
4263    sp<ThreadBase> thread = mThread.promote();
4264    if (thread != 0) {
4265        RecordThread *recordThread = (RecordThread *)thread.get();
4266        recordThread->stop(this);
4267        TrackBase::reset();
4268        // Force overerrun condition to avoid false overrun callback until first data is
4269        // read from buffer
4270        android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
4271    }
4272}
4273
4274void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size)
4275{
4276    snprintf(buffer, size, "   %05d %03u 0x%08x %05d   %04u %01d %05u  %08x %08x\n",
4277            (mClient == 0) ? getpid_cached : mClient->pid(),
4278            mFormat,
4279            mChannelMask,
4280            mSessionId,
4281            mFrameCount,
4282            mState,
4283            mCblk->sampleRate,
4284            mCblk->server,
4285            mCblk->user);
4286}
4287
4288
4289// ----------------------------------------------------------------------------
4290
4291AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
4292            PlaybackThread *playbackThread,
4293            DuplicatingThread *sourceThread,
4294            uint32_t sampleRate,
4295            audio_format_t format,
4296            uint32_t channelMask,
4297            int frameCount)
4298    :   Track(playbackThread, NULL, AUDIO_STREAM_CNT, sampleRate, format, channelMask, frameCount, NULL, 0),
4299    mActive(false), mSourceThread(sourceThread)
4300{
4301
4302    if (mCblk != NULL) {
4303        mCblk->flags |= CBLK_DIRECTION_OUT;
4304        mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
4305        mOutBuffer.frameCount = 0;
4306        playbackThread->mTracks.add(this);
4307        ALOGV("OutputTrack constructor mCblk %p, mBuffer %p, mCblk->buffers %p, " \
4308                "mCblk->frameCount %d, mCblk->sampleRate %d, mChannelMask 0x%08x mBufferEnd %p",
4309                mCblk, mBuffer, mCblk->buffers,
4310                mCblk->frameCount, mCblk->sampleRate, mChannelMask, mBufferEnd);
4311    } else {
4312        ALOGW("Error creating output track on thread %p", playbackThread);
4313    }
4314}
4315
4316AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
4317{
4318    clearBufferQueue();
4319}
4320
4321status_t AudioFlinger::PlaybackThread::OutputTrack::start(pid_t tid)
4322{
4323    status_t status = Track::start(tid);
4324    if (status != NO_ERROR) {
4325        return status;
4326    }
4327
4328    mActive = true;
4329    mRetryCount = 127;
4330    return status;
4331}
4332
4333void AudioFlinger::PlaybackThread::OutputTrack::stop()
4334{
4335    Track::stop();
4336    clearBufferQueue();
4337    mOutBuffer.frameCount = 0;
4338    mActive = false;
4339}
4340
4341bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames)
4342{
4343    Buffer *pInBuffer;
4344    Buffer inBuffer;
4345    uint32_t channelCount = mChannelCount;
4346    bool outputBufferFull = false;
4347    inBuffer.frameCount = frames;
4348    inBuffer.i16 = data;
4349
4350    uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
4351
4352    if (!mActive && frames != 0) {
4353        start(0);
4354        sp<ThreadBase> thread = mThread.promote();
4355        if (thread != 0) {
4356            MixerThread *mixerThread = (MixerThread *)thread.get();
4357            if (mCblk->frameCount > frames){
4358                if (mBufferQueue.size() < kMaxOverFlowBuffers) {
4359                    uint32_t startFrames = (mCblk->frameCount - frames);
4360                    pInBuffer = new Buffer;
4361                    pInBuffer->mBuffer = new int16_t[startFrames * channelCount];
4362                    pInBuffer->frameCount = startFrames;
4363                    pInBuffer->i16 = pInBuffer->mBuffer;
4364                    memset(pInBuffer->raw, 0, startFrames * channelCount * sizeof(int16_t));
4365                    mBufferQueue.add(pInBuffer);
4366                } else {
4367                    ALOGW ("OutputTrack::write() %p no more buffers in queue", this);
4368                }
4369            }
4370        }
4371    }
4372
4373    while (waitTimeLeftMs) {
4374        // First write pending buffers, then new data
4375        if (mBufferQueue.size()) {
4376            pInBuffer = mBufferQueue.itemAt(0);
4377        } else {
4378            pInBuffer = &inBuffer;
4379        }
4380
4381        if (pInBuffer->frameCount == 0) {
4382            break;
4383        }
4384
4385        if (mOutBuffer.frameCount == 0) {
4386            mOutBuffer.frameCount = pInBuffer->frameCount;
4387            nsecs_t startTime = systemTime();
4388            if (obtainBuffer(&mOutBuffer, waitTimeLeftMs) == (status_t)NO_MORE_BUFFERS) {
4389                ALOGV ("OutputTrack::write() %p thread %p no more output buffers", this, mThread.unsafe_get());
4390                outputBufferFull = true;
4391                break;
4392            }
4393            uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
4394            if (waitTimeLeftMs >= waitTimeMs) {
4395                waitTimeLeftMs -= waitTimeMs;
4396            } else {
4397                waitTimeLeftMs = 0;
4398            }
4399        }
4400
4401        uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount : pInBuffer->frameCount;
4402        memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * channelCount * sizeof(int16_t));
4403        mCblk->stepUser(outFrames);
4404        pInBuffer->frameCount -= outFrames;
4405        pInBuffer->i16 += outFrames * channelCount;
4406        mOutBuffer.frameCount -= outFrames;
4407        mOutBuffer.i16 += outFrames * channelCount;
4408
4409        if (pInBuffer->frameCount == 0) {
4410            if (mBufferQueue.size()) {
4411                mBufferQueue.removeAt(0);
4412                delete [] pInBuffer->mBuffer;
4413                delete pInBuffer;
4414                ALOGV("OutputTrack::write() %p thread %p released overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
4415            } else {
4416                break;
4417            }
4418        }
4419    }
4420
4421    // If we could not write all frames, allocate a buffer and queue it for next time.
4422    if (inBuffer.frameCount) {
4423        sp<ThreadBase> thread = mThread.promote();
4424        if (thread != 0 && !thread->standby()) {
4425            if (mBufferQueue.size() < kMaxOverFlowBuffers) {
4426                pInBuffer = new Buffer;
4427                pInBuffer->mBuffer = new int16_t[inBuffer.frameCount * channelCount];
4428                pInBuffer->frameCount = inBuffer.frameCount;
4429                pInBuffer->i16 = pInBuffer->mBuffer;
4430                memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * channelCount * sizeof(int16_t));
4431                mBufferQueue.add(pInBuffer);
4432                ALOGV("OutputTrack::write() %p thread %p adding overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
4433            } else {
4434                ALOGW("OutputTrack::write() %p thread %p no more overflow buffers", mThread.unsafe_get(), this);
4435            }
4436        }
4437    }
4438
4439    // Calling write() with a 0 length buffer, means that no more data will be written:
4440    // If no more buffers are pending, fill output track buffer to make sure it is started
4441    // by output mixer.
4442    if (frames == 0 && mBufferQueue.size() == 0) {
4443        if (mCblk->user < mCblk->frameCount) {
4444            frames = mCblk->frameCount - mCblk->user;
4445            pInBuffer = new Buffer;
4446            pInBuffer->mBuffer = new int16_t[frames * channelCount];
4447            pInBuffer->frameCount = frames;
4448            pInBuffer->i16 = pInBuffer->mBuffer;
4449            memset(pInBuffer->raw, 0, frames * channelCount * sizeof(int16_t));
4450            mBufferQueue.add(pInBuffer);
4451        } else if (mActive) {
4452            stop();
4453        }
4454    }
4455
4456    return outputBufferFull;
4457}
4458
4459status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
4460{
4461    int active;
4462    status_t result;
4463    audio_track_cblk_t* cblk = mCblk;
4464    uint32_t framesReq = buffer->frameCount;
4465
4466//    ALOGV("OutputTrack::obtainBuffer user %d, server %d", cblk->user, cblk->server);
4467    buffer->frameCount  = 0;
4468
4469    uint32_t framesAvail = cblk->framesAvailable();
4470
4471
4472    if (framesAvail == 0) {
4473        Mutex::Autolock _l(cblk->lock);
4474        goto start_loop_here;
4475        while (framesAvail == 0) {
4476            active = mActive;
4477            if (CC_UNLIKELY(!active)) {
4478                ALOGV("Not active and NO_MORE_BUFFERS");
4479                return NO_MORE_BUFFERS;
4480            }
4481            result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
4482            if (result != NO_ERROR) {
4483                return NO_MORE_BUFFERS;
4484            }
4485            // read the server count again
4486        start_loop_here:
4487            framesAvail = cblk->framesAvailable_l();
4488        }
4489    }
4490
4491//    if (framesAvail < framesReq) {
4492//        return NO_MORE_BUFFERS;
4493//    }
4494
4495    if (framesReq > framesAvail) {
4496        framesReq = framesAvail;
4497    }
4498
4499    uint32_t u = cblk->user;
4500    uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
4501
4502    if (u + framesReq > bufferEnd) {
4503        framesReq = bufferEnd - u;
4504    }
4505
4506    buffer->frameCount  = framesReq;
4507    buffer->raw         = (void *)cblk->buffer(u);
4508    return NO_ERROR;
4509}
4510
4511
4512void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
4513{
4514    size_t size = mBufferQueue.size();
4515
4516    for (size_t i = 0; i < size; i++) {
4517        Buffer *pBuffer = mBufferQueue.itemAt(i);
4518        delete [] pBuffer->mBuffer;
4519        delete pBuffer;
4520    }
4521    mBufferQueue.clear();
4522}
4523
4524// ----------------------------------------------------------------------------
4525
4526AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
4527    :   RefBase(),
4528        mAudioFlinger(audioFlinger),
4529        // FIXME should be a "k" constant not hard-coded, in .h or ro. property, see 4 lines below
4530        mMemoryDealer(new MemoryDealer(1024*1024, "AudioFlinger::Client")),
4531        mPid(pid),
4532        mTimedTrackCount(0)
4533{
4534    // 1 MB of address space is good for 32 tracks, 8 buffers each, 4 KB/buffer
4535}
4536
4537// Client destructor must be called with AudioFlinger::mLock held
4538AudioFlinger::Client::~Client()
4539{
4540    mAudioFlinger->removeClient_l(mPid);
4541}
4542
4543sp<MemoryDealer> AudioFlinger::Client::heap() const
4544{
4545    return mMemoryDealer;
4546}
4547
4548// Reserve one of the limited slots for a timed audio track associated
4549// with this client
4550bool AudioFlinger::Client::reserveTimedTrack()
4551{
4552    const int kMaxTimedTracksPerClient = 4;
4553
4554    Mutex::Autolock _l(mTimedTrackLock);
4555
4556    if (mTimedTrackCount >= kMaxTimedTracksPerClient) {
4557        ALOGW("can not create timed track - pid %d has exceeded the limit",
4558             mPid);
4559        return false;
4560    }
4561
4562    mTimedTrackCount++;
4563    return true;
4564}
4565
4566// Release a slot for a timed audio track
4567void AudioFlinger::Client::releaseTimedTrack()
4568{
4569    Mutex::Autolock _l(mTimedTrackLock);
4570    mTimedTrackCount--;
4571}
4572
4573// ----------------------------------------------------------------------------
4574
4575AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
4576                                                     const sp<IAudioFlingerClient>& client,
4577                                                     pid_t pid)
4578    : mAudioFlinger(audioFlinger), mPid(pid), mAudioFlingerClient(client)
4579{
4580}
4581
4582AudioFlinger::NotificationClient::~NotificationClient()
4583{
4584}
4585
4586void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who)
4587{
4588    sp<NotificationClient> keep(this);
4589    mAudioFlinger->removeNotificationClient(mPid);
4590}
4591
4592// ----------------------------------------------------------------------------
4593
4594AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
4595    : BnAudioTrack(),
4596      mTrack(track)
4597{
4598}
4599
4600AudioFlinger::TrackHandle::~TrackHandle() {
4601    // just stop the track on deletion, associated resources
4602    // will be freed from the main thread once all pending buffers have
4603    // been played. Unless it's not in the active track list, in which
4604    // case we free everything now...
4605    mTrack->destroy();
4606}
4607
4608sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
4609    return mTrack->getCblk();
4610}
4611
4612status_t AudioFlinger::TrackHandle::start(pid_t tid) {
4613    return mTrack->start(tid);
4614}
4615
4616void AudioFlinger::TrackHandle::stop() {
4617    mTrack->stop();
4618}
4619
4620void AudioFlinger::TrackHandle::flush() {
4621    mTrack->flush();
4622}
4623
4624void AudioFlinger::TrackHandle::mute(bool e) {
4625    mTrack->mute(e);
4626}
4627
4628void AudioFlinger::TrackHandle::pause() {
4629    mTrack->pause();
4630}
4631
4632status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
4633{
4634    return mTrack->attachAuxEffect(EffectId);
4635}
4636
4637status_t AudioFlinger::TrackHandle::allocateTimedBuffer(size_t size,
4638                                                         sp<IMemory>* buffer) {
4639    if (!mTrack->isTimedTrack())
4640        return INVALID_OPERATION;
4641
4642    PlaybackThread::TimedTrack* tt =
4643            reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
4644    return tt->allocateTimedBuffer(size, buffer);
4645}
4646
4647status_t AudioFlinger::TrackHandle::queueTimedBuffer(const sp<IMemory>& buffer,
4648                                                     int64_t pts) {
4649    if (!mTrack->isTimedTrack())
4650        return INVALID_OPERATION;
4651
4652    PlaybackThread::TimedTrack* tt =
4653            reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
4654    return tt->queueTimedBuffer(buffer, pts);
4655}
4656
4657status_t AudioFlinger::TrackHandle::setMediaTimeTransform(
4658    const LinearTransform& xform, int target) {
4659
4660    if (!mTrack->isTimedTrack())
4661        return INVALID_OPERATION;
4662
4663    PlaybackThread::TimedTrack* tt =
4664            reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
4665    return tt->setMediaTimeTransform(
4666        xform, static_cast<TimedAudioTrack::TargetTimeline>(target));
4667}
4668
4669status_t AudioFlinger::TrackHandle::onTransact(
4670    uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4671{
4672    return BnAudioTrack::onTransact(code, data, reply, flags);
4673}
4674
4675// ----------------------------------------------------------------------------
4676
4677sp<IAudioRecord> AudioFlinger::openRecord(
4678        pid_t pid,
4679        audio_io_handle_t input,
4680        uint32_t sampleRate,
4681        audio_format_t format,
4682        uint32_t channelMask,
4683        int frameCount,
4684        // FIXME dead, remove from IAudioFlinger
4685        uint32_t flags,
4686        int *sessionId,
4687        status_t *status)
4688{
4689    sp<RecordThread::RecordTrack> recordTrack;
4690    sp<RecordHandle> recordHandle;
4691    sp<Client> client;
4692    status_t lStatus;
4693    RecordThread *thread;
4694    size_t inFrameCount;
4695    int lSessionId;
4696
4697    // check calling permissions
4698    if (!recordingAllowed()) {
4699        lStatus = PERMISSION_DENIED;
4700        goto Exit;
4701    }
4702
4703    // add client to list
4704    { // scope for mLock
4705        Mutex::Autolock _l(mLock);
4706        thread = checkRecordThread_l(input);
4707        if (thread == NULL) {
4708            lStatus = BAD_VALUE;
4709            goto Exit;
4710        }
4711
4712        client = registerPid_l(pid);
4713
4714        // If no audio session id is provided, create one here
4715        if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
4716            lSessionId = *sessionId;
4717        } else {
4718            lSessionId = nextUniqueId();
4719            if (sessionId != NULL) {
4720                *sessionId = lSessionId;
4721            }
4722        }
4723        // create new record track. The record track uses one track in mHardwareMixerThread by convention.
4724        recordTrack = thread->createRecordTrack_l(client,
4725                                                sampleRate,
4726                                                format,
4727                                                channelMask,
4728                                                frameCount,
4729                                                lSessionId,
4730                                                &lStatus);
4731    }
4732    if (lStatus != NO_ERROR) {
4733        // remove local strong reference to Client before deleting the RecordTrack so that the Client
4734        // destructor is called by the TrackBase destructor with mLock held
4735        client.clear();
4736        recordTrack.clear();
4737        goto Exit;
4738    }
4739
4740    // return to handle to client
4741    recordHandle = new RecordHandle(recordTrack);
4742    lStatus = NO_ERROR;
4743
4744Exit:
4745    if (status) {
4746        *status = lStatus;
4747    }
4748    return recordHandle;
4749}
4750
4751// ----------------------------------------------------------------------------
4752
4753AudioFlinger::RecordHandle::RecordHandle(const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
4754    : BnAudioRecord(),
4755    mRecordTrack(recordTrack)
4756{
4757}
4758
4759AudioFlinger::RecordHandle::~RecordHandle() {
4760    stop();
4761}
4762
4763sp<IMemory> AudioFlinger::RecordHandle::getCblk() const {
4764    return mRecordTrack->getCblk();
4765}
4766
4767status_t AudioFlinger::RecordHandle::start(pid_t tid) {
4768    ALOGV("RecordHandle::start()");
4769    return mRecordTrack->start(tid);
4770}
4771
4772void AudioFlinger::RecordHandle::stop() {
4773    ALOGV("RecordHandle::stop()");
4774    mRecordTrack->stop();
4775}
4776
4777status_t AudioFlinger::RecordHandle::onTransact(
4778    uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4779{
4780    return BnAudioRecord::onTransact(code, data, reply, flags);
4781}
4782
4783// ----------------------------------------------------------------------------
4784
4785AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
4786                                         AudioStreamIn *input,
4787                                         uint32_t sampleRate,
4788                                         uint32_t channels,
4789                                         audio_io_handle_t id,
4790                                         uint32_t device) :
4791    ThreadBase(audioFlinger, id, device, RECORD),
4792    mInput(input), mTrack(NULL), mResampler(NULL), mRsmpOutBuffer(NULL), mRsmpInBuffer(NULL),
4793    // mRsmpInIndex and mInputBytes set by readInputParameters()
4794    mReqChannelCount(popcount(channels)),
4795    mReqSampleRate(sampleRate)
4796    // mBytesRead is only meaningful while active, and so is cleared in start()
4797    // (but might be better to also clear here for dump?)
4798{
4799    snprintf(mName, kNameLength, "AudioIn_%X", id);
4800
4801    readInputParameters();
4802}
4803
4804
4805AudioFlinger::RecordThread::~RecordThread()
4806{
4807    delete[] mRsmpInBuffer;
4808    delete mResampler;
4809    delete[] mRsmpOutBuffer;
4810}
4811
4812void AudioFlinger::RecordThread::onFirstRef()
4813{
4814    run(mName, PRIORITY_URGENT_AUDIO);
4815}
4816
4817status_t AudioFlinger::RecordThread::readyToRun()
4818{
4819    status_t status = initCheck();
4820    ALOGW_IF(status != NO_ERROR,"RecordThread %p could not initialize", this);
4821    return status;
4822}
4823
4824bool AudioFlinger::RecordThread::threadLoop()
4825{
4826    AudioBufferProvider::Buffer buffer;
4827    sp<RecordTrack> activeTrack;
4828    Vector< sp<EffectChain> > effectChains;
4829
4830    nsecs_t lastWarning = 0;
4831
4832    acquireWakeLock();
4833
4834    // start recording
4835    while (!exitPending()) {
4836
4837        processConfigEvents();
4838
4839        { // scope for mLock
4840            Mutex::Autolock _l(mLock);
4841            checkForNewParameters_l();
4842            if (mActiveTrack == 0 && mConfigEvents.isEmpty()) {
4843                if (!mStandby) {
4844                    mInput->stream->common.standby(&mInput->stream->common);
4845                    mStandby = true;
4846                }
4847
4848                if (exitPending()) break;
4849
4850                releaseWakeLock_l();
4851                ALOGV("RecordThread: loop stopping");
4852                // go to sleep
4853                mWaitWorkCV.wait(mLock);
4854                ALOGV("RecordThread: loop starting");
4855                acquireWakeLock_l();
4856                continue;
4857            }
4858            if (mActiveTrack != 0) {
4859                if (mActiveTrack->mState == TrackBase::PAUSING) {
4860                    if (!mStandby) {
4861                        mInput->stream->common.standby(&mInput->stream->common);
4862                        mStandby = true;
4863                    }
4864                    mActiveTrack.clear();
4865                    mStartStopCond.broadcast();
4866                } else if (mActiveTrack->mState == TrackBase::RESUMING) {
4867                    if (mReqChannelCount != mActiveTrack->channelCount()) {
4868                        mActiveTrack.clear();
4869                        mStartStopCond.broadcast();
4870                    } else if (mBytesRead != 0) {
4871                        // record start succeeds only if first read from audio input
4872                        // succeeds
4873                        if (mBytesRead > 0) {
4874                            mActiveTrack->mState = TrackBase::ACTIVE;
4875                        } else {
4876                            mActiveTrack.clear();
4877                        }
4878                        mStartStopCond.broadcast();
4879                    }
4880                    mStandby = false;
4881                }
4882            }
4883            lockEffectChains_l(effectChains);
4884        }
4885
4886        if (mActiveTrack != 0) {
4887            if (mActiveTrack->mState != TrackBase::ACTIVE &&
4888                mActiveTrack->mState != TrackBase::RESUMING) {
4889                unlockEffectChains(effectChains);
4890                usleep(kRecordThreadSleepUs);
4891                continue;
4892            }
4893            for (size_t i = 0; i < effectChains.size(); i ++) {
4894                effectChains[i]->process_l();
4895            }
4896
4897            buffer.frameCount = mFrameCount;
4898            if (CC_LIKELY(mActiveTrack->getNextBuffer(&buffer) == NO_ERROR)) {
4899                size_t framesOut = buffer.frameCount;
4900                if (mResampler == NULL) {
4901                    // no resampling
4902                    while (framesOut) {
4903                        size_t framesIn = mFrameCount - mRsmpInIndex;
4904                        if (framesIn) {
4905                            int8_t *src = (int8_t *)mRsmpInBuffer + mRsmpInIndex * mFrameSize;
4906                            int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) * mActiveTrack->mCblk->frameSize;
4907                            if (framesIn > framesOut)
4908                                framesIn = framesOut;
4909                            mRsmpInIndex += framesIn;
4910                            framesOut -= framesIn;
4911                            if ((int)mChannelCount == mReqChannelCount ||
4912                                mFormat != AUDIO_FORMAT_PCM_16_BIT) {
4913                                memcpy(dst, src, framesIn * mFrameSize);
4914                            } else {
4915                                int16_t *src16 = (int16_t *)src;
4916                                int16_t *dst16 = (int16_t *)dst;
4917                                if (mChannelCount == 1) {
4918                                    while (framesIn--) {
4919                                        *dst16++ = *src16;
4920                                        *dst16++ = *src16++;
4921                                    }
4922                                } else {
4923                                    while (framesIn--) {
4924                                        *dst16++ = (int16_t)(((int32_t)*src16 + (int32_t)*(src16 + 1)) >> 1);
4925                                        src16 += 2;
4926                                    }
4927                                }
4928                            }
4929                        }
4930                        if (framesOut && mFrameCount == mRsmpInIndex) {
4931                            if (framesOut == mFrameCount &&
4932                                ((int)mChannelCount == mReqChannelCount || mFormat != AUDIO_FORMAT_PCM_16_BIT)) {
4933                                mBytesRead = mInput->stream->read(mInput->stream, buffer.raw, mInputBytes);
4934                                framesOut = 0;
4935                            } else {
4936                                mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
4937                                mRsmpInIndex = 0;
4938                            }
4939                            if (mBytesRead < 0) {
4940                                ALOGE("Error reading audio input");
4941                                if (mActiveTrack->mState == TrackBase::ACTIVE) {
4942                                    // Force input into standby so that it tries to
4943                                    // recover at next read attempt
4944                                    mInput->stream->common.standby(&mInput->stream->common);
4945                                    usleep(kRecordThreadSleepUs);
4946                                }
4947                                mRsmpInIndex = mFrameCount;
4948                                framesOut = 0;
4949                                buffer.frameCount = 0;
4950                            }
4951                        }
4952                    }
4953                } else {
4954                    // resampling
4955
4956                    memset(mRsmpOutBuffer, 0, framesOut * 2 * sizeof(int32_t));
4957                    // alter output frame count as if we were expecting stereo samples
4958                    if (mChannelCount == 1 && mReqChannelCount == 1) {
4959                        framesOut >>= 1;
4960                    }
4961                    mResampler->resample(mRsmpOutBuffer, framesOut, this);
4962                    // ditherAndClamp() works as long as all buffers returned by mActiveTrack->getNextBuffer()
4963                    // are 32 bit aligned which should be always true.
4964                    if (mChannelCount == 2 && mReqChannelCount == 1) {
4965                        ditherAndClamp(mRsmpOutBuffer, mRsmpOutBuffer, framesOut);
4966                        // the resampler always outputs stereo samples: do post stereo to mono conversion
4967                        int16_t *src = (int16_t *)mRsmpOutBuffer;
4968                        int16_t *dst = buffer.i16;
4969                        while (framesOut--) {
4970                            *dst++ = (int16_t)(((int32_t)*src + (int32_t)*(src + 1)) >> 1);
4971                            src += 2;
4972                        }
4973                    } else {
4974                        ditherAndClamp((int32_t *)buffer.raw, mRsmpOutBuffer, framesOut);
4975                    }
4976
4977                }
4978                mActiveTrack->releaseBuffer(&buffer);
4979                mActiveTrack->overflow();
4980            }
4981            // client isn't retrieving buffers fast enough
4982            else {
4983                if (!mActiveTrack->setOverflow()) {
4984                    nsecs_t now = systemTime();
4985                    if ((now - lastWarning) > kWarningThrottleNs) {
4986                        ALOGW("RecordThread: buffer overflow");
4987                        lastWarning = now;
4988                    }
4989                }
4990                // Release the processor for a while before asking for a new buffer.
4991                // This will give the application more chance to read from the buffer and
4992                // clear the overflow.
4993                usleep(kRecordThreadSleepUs);
4994            }
4995        }
4996        // enable changes in effect chain
4997        unlockEffectChains(effectChains);
4998        effectChains.clear();
4999    }
5000
5001    if (!mStandby) {
5002        mInput->stream->common.standby(&mInput->stream->common);
5003    }
5004    mActiveTrack.clear();
5005
5006    mStartStopCond.broadcast();
5007
5008    releaseWakeLock();
5009
5010    ALOGV("RecordThread %p exiting", this);
5011    return false;
5012}
5013
5014
5015sp<AudioFlinger::RecordThread::RecordTrack>  AudioFlinger::RecordThread::createRecordTrack_l(
5016        const sp<AudioFlinger::Client>& client,
5017        uint32_t sampleRate,
5018        audio_format_t format,
5019        int channelMask,
5020        int frameCount,
5021        int sessionId,
5022        status_t *status)
5023{
5024    sp<RecordTrack> track;
5025    status_t lStatus;
5026
5027    lStatus = initCheck();
5028    if (lStatus != NO_ERROR) {
5029        ALOGE("Audio driver not initialized.");
5030        goto Exit;
5031    }
5032
5033    { // scope for mLock
5034        Mutex::Autolock _l(mLock);
5035
5036        track = new RecordTrack(this, client, sampleRate,
5037                      format, channelMask, frameCount, sessionId);
5038
5039        if (track->getCblk() == 0) {
5040            lStatus = NO_MEMORY;
5041            goto Exit;
5042        }
5043
5044        mTrack = track.get();
5045        // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
5046        bool suspend = audio_is_bluetooth_sco_device(
5047                (audio_devices_t)(mDevice & AUDIO_DEVICE_IN_ALL)) && mAudioFlinger->btNrecIsOff();
5048        setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
5049        setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
5050    }
5051    lStatus = NO_ERROR;
5052
5053Exit:
5054    if (status) {
5055        *status = lStatus;
5056    }
5057    return track;
5058}
5059
5060status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack, pid_t tid)
5061{
5062    ALOGV("RecordThread::start tid=%d", tid);
5063    sp<ThreadBase> strongMe = this;
5064    status_t status = NO_ERROR;
5065    {
5066        AutoMutex lock(mLock);
5067        if (mActiveTrack != 0) {
5068            if (recordTrack != mActiveTrack.get()) {
5069                status = -EBUSY;
5070            } else if (mActiveTrack->mState == TrackBase::PAUSING) {
5071                mActiveTrack->mState = TrackBase::ACTIVE;
5072            }
5073            return status;
5074        }
5075
5076        recordTrack->mState = TrackBase::IDLE;
5077        mActiveTrack = recordTrack;
5078        mLock.unlock();
5079        status_t status = AudioSystem::startInput(mId);
5080        mLock.lock();
5081        if (status != NO_ERROR) {
5082            mActiveTrack.clear();
5083            return status;
5084        }
5085        mRsmpInIndex = mFrameCount;
5086        mBytesRead = 0;
5087        if (mResampler != NULL) {
5088            mResampler->reset();
5089        }
5090        mActiveTrack->mState = TrackBase::RESUMING;
5091        // signal thread to start
5092        ALOGV("Signal record thread");
5093        mWaitWorkCV.signal();
5094        // do not wait for mStartStopCond if exiting
5095        if (exitPending()) {
5096            mActiveTrack.clear();
5097            status = INVALID_OPERATION;
5098            goto startError;
5099        }
5100        mStartStopCond.wait(mLock);
5101        if (mActiveTrack == 0) {
5102            ALOGV("Record failed to start");
5103            status = BAD_VALUE;
5104            goto startError;
5105        }
5106        ALOGV("Record started OK");
5107        return status;
5108    }
5109startError:
5110    AudioSystem::stopInput(mId);
5111    return status;
5112}
5113
5114void AudioFlinger::RecordThread::stop(RecordThread::RecordTrack* recordTrack) {
5115    ALOGV("RecordThread::stop");
5116    sp<ThreadBase> strongMe = this;
5117    {
5118        AutoMutex lock(mLock);
5119        if (mActiveTrack != 0 && recordTrack == mActiveTrack.get()) {
5120            mActiveTrack->mState = TrackBase::PAUSING;
5121            // do not wait for mStartStopCond if exiting
5122            if (exitPending()) {
5123                return;
5124            }
5125            mStartStopCond.wait(mLock);
5126            // if we have been restarted, recordTrack == mActiveTrack.get() here
5127            if (mActiveTrack == 0 || recordTrack != mActiveTrack.get()) {
5128                mLock.unlock();
5129                AudioSystem::stopInput(mId);
5130                mLock.lock();
5131                ALOGV("Record stopped OK");
5132            }
5133        }
5134    }
5135}
5136
5137status_t AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
5138{
5139    const size_t SIZE = 256;
5140    char buffer[SIZE];
5141    String8 result;
5142
5143    snprintf(buffer, SIZE, "\nInput thread %p internals\n", this);
5144    result.append(buffer);
5145
5146    if (mActiveTrack != 0) {
5147        result.append("Active Track:\n");
5148        result.append("   Clien Fmt Chn mask   Session Buf  S SRate  Serv     User\n");
5149        mActiveTrack->dump(buffer, SIZE);
5150        result.append(buffer);
5151
5152        snprintf(buffer, SIZE, "In index: %d\n", mRsmpInIndex);
5153        result.append(buffer);
5154        snprintf(buffer, SIZE, "In size: %d\n", mInputBytes);
5155        result.append(buffer);
5156        snprintf(buffer, SIZE, "Resampling: %d\n", (mResampler != NULL));
5157        result.append(buffer);
5158        snprintf(buffer, SIZE, "Out channel count: %d\n", mReqChannelCount);
5159        result.append(buffer);
5160        snprintf(buffer, SIZE, "Out sample rate: %d\n", mReqSampleRate);
5161        result.append(buffer);
5162
5163
5164    } else {
5165        result.append("No record client\n");
5166    }
5167    write(fd, result.string(), result.size());
5168
5169    dumpBase(fd, args);
5170    dumpEffectChains(fd, args);
5171
5172    return NO_ERROR;
5173}
5174
5175// AudioBufferProvider interface
5176status_t AudioFlinger::RecordThread::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
5177{
5178    size_t framesReq = buffer->frameCount;
5179    size_t framesReady = mFrameCount - mRsmpInIndex;
5180    int channelCount;
5181
5182    if (framesReady == 0) {
5183        mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
5184        if (mBytesRead < 0) {
5185            ALOGE("RecordThread::getNextBuffer() Error reading audio input");
5186            if (mActiveTrack->mState == TrackBase::ACTIVE) {
5187                // Force input into standby so that it tries to
5188                // recover at next read attempt
5189                mInput->stream->common.standby(&mInput->stream->common);
5190                usleep(kRecordThreadSleepUs);
5191            }
5192            buffer->raw = NULL;
5193            buffer->frameCount = 0;
5194            return NOT_ENOUGH_DATA;
5195        }
5196        mRsmpInIndex = 0;
5197        framesReady = mFrameCount;
5198    }
5199
5200    if (framesReq > framesReady) {
5201        framesReq = framesReady;
5202    }
5203
5204    if (mChannelCount == 1 && mReqChannelCount == 2) {
5205        channelCount = 1;
5206    } else {
5207        channelCount = 2;
5208    }
5209    buffer->raw = mRsmpInBuffer + mRsmpInIndex * channelCount;
5210    buffer->frameCount = framesReq;
5211    return NO_ERROR;
5212}
5213
5214// AudioBufferProvider interface
5215void AudioFlinger::RecordThread::releaseBuffer(AudioBufferProvider::Buffer* buffer)
5216{
5217    mRsmpInIndex += buffer->frameCount;
5218    buffer->frameCount = 0;
5219}
5220
5221bool AudioFlinger::RecordThread::checkForNewParameters_l()
5222{
5223    bool reconfig = false;
5224
5225    while (!mNewParameters.isEmpty()) {
5226        status_t status = NO_ERROR;
5227        String8 keyValuePair = mNewParameters[0];
5228        AudioParameter param = AudioParameter(keyValuePair);
5229        int value;
5230        audio_format_t reqFormat = mFormat;
5231        int reqSamplingRate = mReqSampleRate;
5232        int reqChannelCount = mReqChannelCount;
5233
5234        if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
5235            reqSamplingRate = value;
5236            reconfig = true;
5237        }
5238        if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
5239            reqFormat = (audio_format_t) value;
5240            reconfig = true;
5241        }
5242        if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
5243            reqChannelCount = popcount(value);
5244            reconfig = true;
5245        }
5246        if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
5247            // do not accept frame count changes if tracks are open as the track buffer
5248            // size depends on frame count and correct behavior would not be guaranteed
5249            // if frame count is changed after track creation
5250            if (mActiveTrack != 0) {
5251                status = INVALID_OPERATION;
5252            } else {
5253                reconfig = true;
5254            }
5255        }
5256        if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
5257            // forward device change to effects that have requested to be
5258            // aware of attached audio device.
5259            for (size_t i = 0; i < mEffectChains.size(); i++) {
5260                mEffectChains[i]->setDevice_l(value);
5261            }
5262            // store input device and output device but do not forward output device to audio HAL.
5263            // Note that status is ignored by the caller for output device
5264            // (see AudioFlinger::setParameters()
5265            if (value & AUDIO_DEVICE_OUT_ALL) {
5266                mDevice &= (uint32_t)~(value & AUDIO_DEVICE_OUT_ALL);
5267                status = BAD_VALUE;
5268            } else {
5269                mDevice &= (uint32_t)~(value & AUDIO_DEVICE_IN_ALL);
5270                // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
5271                if (mTrack != NULL) {
5272                    bool suspend = audio_is_bluetooth_sco_device(
5273                            (audio_devices_t)value) && mAudioFlinger->btNrecIsOff();
5274                    setEffectSuspended_l(FX_IID_AEC, suspend, mTrack->sessionId());
5275                    setEffectSuspended_l(FX_IID_NS, suspend, mTrack->sessionId());
5276                }
5277            }
5278            mDevice |= (uint32_t)value;
5279        }
5280        if (status == NO_ERROR) {
5281            status = mInput->stream->common.set_parameters(&mInput->stream->common, keyValuePair.string());
5282            if (status == INVALID_OPERATION) {
5283                mInput->stream->common.standby(&mInput->stream->common);
5284                status = mInput->stream->common.set_parameters(&mInput->stream->common,
5285                        keyValuePair.string());
5286            }
5287            if (reconfig) {
5288                if (status == BAD_VALUE &&
5289                    reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
5290                    reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
5291                    ((int)mInput->stream->common.get_sample_rate(&mInput->stream->common) <= (2 * reqSamplingRate)) &&
5292                    popcount(mInput->stream->common.get_channels(&mInput->stream->common)) <= FCC_2 &&
5293                    (reqChannelCount <= FCC_2)) {
5294                    status = NO_ERROR;
5295                }
5296                if (status == NO_ERROR) {
5297                    readInputParameters();
5298                    sendConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
5299                }
5300            }
5301        }
5302
5303        mNewParameters.removeAt(0);
5304
5305        mParamStatus = status;
5306        mParamCond.signal();
5307        // wait for condition with time out in case the thread calling ThreadBase::setParameters()
5308        // already timed out waiting for the status and will never signal the condition.
5309        mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
5310    }
5311    return reconfig;
5312}
5313
5314String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
5315{
5316    char *s;
5317    String8 out_s8 = String8();
5318
5319    Mutex::Autolock _l(mLock);
5320    if (initCheck() != NO_ERROR) {
5321        return out_s8;
5322    }
5323
5324    s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
5325    out_s8 = String8(s);
5326    free(s);
5327    return out_s8;
5328}
5329
5330void AudioFlinger::RecordThread::audioConfigChanged_l(int event, int param) {
5331    AudioSystem::OutputDescriptor desc;
5332    void *param2 = NULL;
5333
5334    switch (event) {
5335    case AudioSystem::INPUT_OPENED:
5336    case AudioSystem::INPUT_CONFIG_CHANGED:
5337        desc.channels = mChannelMask;
5338        desc.samplingRate = mSampleRate;
5339        desc.format = mFormat;
5340        desc.frameCount = mFrameCount;
5341        desc.latency = 0;
5342        param2 = &desc;
5343        break;
5344
5345    case AudioSystem::INPUT_CLOSED:
5346    default:
5347        break;
5348    }
5349    mAudioFlinger->audioConfigChanged_l(event, mId, param2);
5350}
5351
5352void AudioFlinger::RecordThread::readInputParameters()
5353{
5354    delete mRsmpInBuffer;
5355    // mRsmpInBuffer is always assigned a new[] below
5356    delete mRsmpOutBuffer;
5357    mRsmpOutBuffer = NULL;
5358    delete mResampler;
5359    mResampler = NULL;
5360
5361    mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
5362    mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
5363    mChannelCount = (uint16_t)popcount(mChannelMask);
5364    mFormat = mInput->stream->common.get_format(&mInput->stream->common);
5365    mFrameSize = audio_stream_frame_size(&mInput->stream->common);
5366    mInputBytes = mInput->stream->common.get_buffer_size(&mInput->stream->common);
5367    mFrameCount = mInputBytes / mFrameSize;
5368    mRsmpInBuffer = new int16_t[mFrameCount * mChannelCount];
5369
5370    if (mSampleRate != mReqSampleRate && mChannelCount <= FCC_2 && mReqChannelCount <= FCC_2)
5371    {
5372        int channelCount;
5373        // optimization: if mono to mono, use the resampler in stereo to stereo mode to avoid
5374        // stereo to mono post process as the resampler always outputs stereo.
5375        if (mChannelCount == 1 && mReqChannelCount == 2) {
5376            channelCount = 1;
5377        } else {
5378            channelCount = 2;
5379        }
5380        mResampler = AudioResampler::create(16, channelCount, mReqSampleRate);
5381        mResampler->setSampleRate(mSampleRate);
5382        mResampler->setVolume(AudioMixer::UNITY_GAIN, AudioMixer::UNITY_GAIN);
5383        mRsmpOutBuffer = new int32_t[mFrameCount * 2];
5384
5385        // optmization: if mono to mono, alter input frame count as if we were inputing stereo samples
5386        if (mChannelCount == 1 && mReqChannelCount == 1) {
5387            mFrameCount >>= 1;
5388        }
5389
5390    }
5391    mRsmpInIndex = mFrameCount;
5392}
5393
5394unsigned int AudioFlinger::RecordThread::getInputFramesLost()
5395{
5396    Mutex::Autolock _l(mLock);
5397    if (initCheck() != NO_ERROR) {
5398        return 0;
5399    }
5400
5401    return mInput->stream->get_input_frames_lost(mInput->stream);
5402}
5403
5404uint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId)
5405{
5406    Mutex::Autolock _l(mLock);
5407    uint32_t result = 0;
5408    if (getEffectChain_l(sessionId) != 0) {
5409        result = EFFECT_SESSION;
5410    }
5411
5412    if (mTrack != NULL && sessionId == mTrack->sessionId()) {
5413        result |= TRACK_SESSION;
5414    }
5415
5416    return result;
5417}
5418
5419AudioFlinger::RecordThread::RecordTrack* AudioFlinger::RecordThread::track()
5420{
5421    Mutex::Autolock _l(mLock);
5422    return mTrack;
5423}
5424
5425AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::getInput() const
5426{
5427    Mutex::Autolock _l(mLock);
5428    return mInput;
5429}
5430
5431AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
5432{
5433    Mutex::Autolock _l(mLock);
5434    AudioStreamIn *input = mInput;
5435    mInput = NULL;
5436    return input;
5437}
5438
5439// this method must always be called either with ThreadBase mLock held or inside the thread loop
5440audio_stream_t* AudioFlinger::RecordThread::stream()
5441{
5442    if (mInput == NULL) {
5443        return NULL;
5444    }
5445    return &mInput->stream->common;
5446}
5447
5448
5449// ----------------------------------------------------------------------------
5450
5451audio_io_handle_t AudioFlinger::openOutput(uint32_t *pDevices,
5452                                uint32_t *pSamplingRate,
5453                                audio_format_t *pFormat,
5454                                uint32_t *pChannels,
5455                                uint32_t *pLatencyMs,
5456                                audio_policy_output_flags_t flags)
5457{
5458    status_t status;
5459    PlaybackThread *thread = NULL;
5460    uint32_t samplingRate = pSamplingRate ? *pSamplingRate : 0;
5461    audio_format_t format = pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT;
5462    uint32_t channels = pChannels ? *pChannels : 0;
5463    uint32_t latency = pLatencyMs ? *pLatencyMs : 0;
5464    audio_stream_out_t *outStream;
5465    audio_hw_device_t *outHwDev;
5466
5467    ALOGV("openOutput(), Device %x, SamplingRate %d, Format %d, Channels %x, flags %x",
5468            pDevices ? *pDevices : 0,
5469            samplingRate,
5470            format,
5471            channels,
5472            flags);
5473
5474    if (pDevices == NULL || *pDevices == 0) {
5475        return 0;
5476    }
5477
5478    Mutex::Autolock _l(mLock);
5479
5480    outHwDev = findSuitableHwDev_l(*pDevices);
5481    if (outHwDev == NULL)
5482        return 0;
5483
5484    mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
5485    status = outHwDev->open_output_stream(outHwDev, *pDevices, &format,
5486                                          &channels, &samplingRate, &outStream);
5487    mHardwareStatus = AUDIO_HW_IDLE;
5488    ALOGV("openOutput() openOutputStream returned output %p, SamplingRate %d, Format %d, Channels %x, status %d",
5489            outStream,
5490            samplingRate,
5491            format,
5492            channels,
5493            status);
5494
5495    if (outStream != NULL) {
5496        AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream);
5497        audio_io_handle_t id = nextUniqueId();
5498
5499        if ((flags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT) ||
5500            (format != AUDIO_FORMAT_PCM_16_BIT) ||
5501            (channels != AUDIO_CHANNEL_OUT_STEREO)) {
5502            thread = new DirectOutputThread(this, output, id, *pDevices);
5503            ALOGV("openOutput() created direct output: ID %d thread %p", id, thread);
5504        } else {
5505            thread = new MixerThread(this, output, id, *pDevices);
5506            ALOGV("openOutput() created mixer output: ID %d thread %p", id, thread);
5507        }
5508        mPlaybackThreads.add(id, thread);
5509
5510        if (pSamplingRate != NULL) *pSamplingRate = samplingRate;
5511        if (pFormat != NULL) *pFormat = format;
5512        if (pChannels != NULL) *pChannels = channels;
5513        if (pLatencyMs != NULL) *pLatencyMs = thread->latency();
5514
5515        // notify client processes of the new output creation
5516        thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
5517        return id;
5518    }
5519
5520    return 0;
5521}
5522
5523audio_io_handle_t AudioFlinger::openDuplicateOutput(audio_io_handle_t output1,
5524        audio_io_handle_t output2)
5525{
5526    Mutex::Autolock _l(mLock);
5527    MixerThread *thread1 = checkMixerThread_l(output1);
5528    MixerThread *thread2 = checkMixerThread_l(output2);
5529
5530    if (thread1 == NULL || thread2 == NULL) {
5531        ALOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1, output2);
5532        return 0;
5533    }
5534
5535    audio_io_handle_t id = nextUniqueId();
5536    DuplicatingThread *thread = new DuplicatingThread(this, thread1, id);
5537    thread->addOutputTrack(thread2);
5538    mPlaybackThreads.add(id, thread);
5539    // notify client processes of the new output creation
5540    thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
5541    return id;
5542}
5543
5544status_t AudioFlinger::closeOutput(audio_io_handle_t output)
5545{
5546    // keep strong reference on the playback thread so that
5547    // it is not destroyed while exit() is executed
5548    sp<PlaybackThread> thread;
5549    {
5550        Mutex::Autolock _l(mLock);
5551        thread = checkPlaybackThread_l(output);
5552        if (thread == NULL) {
5553            return BAD_VALUE;
5554        }
5555
5556        ALOGV("closeOutput() %d", output);
5557
5558        if (thread->type() == ThreadBase::MIXER) {
5559            for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5560                if (mPlaybackThreads.valueAt(i)->type() == ThreadBase::DUPLICATING) {
5561                    DuplicatingThread *dupThread = (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
5562                    dupThread->removeOutputTrack((MixerThread *)thread.get());
5563                }
5564            }
5565        }
5566        audioConfigChanged_l(AudioSystem::OUTPUT_CLOSED, output, NULL);
5567        mPlaybackThreads.removeItem(output);
5568    }
5569    thread->exit();
5570    // The thread entity (active unit of execution) is no longer running here,
5571    // but the ThreadBase container still exists.
5572
5573    if (thread->type() != ThreadBase::DUPLICATING) {
5574        AudioStreamOut *out = thread->clearOutput();
5575        ALOG_ASSERT(out != NULL, "out shouldn't be NULL");
5576        // from now on thread->mOutput is NULL
5577        out->hwDev->close_output_stream(out->hwDev, out->stream);
5578        delete out;
5579    }
5580    return NO_ERROR;
5581}
5582
5583status_t AudioFlinger::suspendOutput(audio_io_handle_t output)
5584{
5585    Mutex::Autolock _l(mLock);
5586    PlaybackThread *thread = checkPlaybackThread_l(output);
5587
5588    if (thread == NULL) {
5589        return BAD_VALUE;
5590    }
5591
5592    ALOGV("suspendOutput() %d", output);
5593    thread->suspend();
5594
5595    return NO_ERROR;
5596}
5597
5598status_t AudioFlinger::restoreOutput(audio_io_handle_t output)
5599{
5600    Mutex::Autolock _l(mLock);
5601    PlaybackThread *thread = checkPlaybackThread_l(output);
5602
5603    if (thread == NULL) {
5604        return BAD_VALUE;
5605    }
5606
5607    ALOGV("restoreOutput() %d", output);
5608
5609    thread->restore();
5610
5611    return NO_ERROR;
5612}
5613
5614audio_io_handle_t AudioFlinger::openInput(uint32_t *pDevices,
5615                                uint32_t *pSamplingRate,
5616                                audio_format_t *pFormat,
5617                                uint32_t *pChannels,
5618                                audio_in_acoustics_t acoustics)
5619{
5620    status_t status;
5621    RecordThread *thread = NULL;
5622    uint32_t samplingRate = pSamplingRate ? *pSamplingRate : 0;
5623    audio_format_t format = pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT;
5624    uint32_t channels = pChannels ? *pChannels : 0;
5625    uint32_t reqSamplingRate = samplingRate;
5626    audio_format_t reqFormat = format;
5627    uint32_t reqChannels = channels;
5628    audio_stream_in_t *inStream;
5629    audio_hw_device_t *inHwDev;
5630
5631    if (pDevices == NULL || *pDevices == 0) {
5632        return 0;
5633    }
5634
5635    Mutex::Autolock _l(mLock);
5636
5637    inHwDev = findSuitableHwDev_l(*pDevices);
5638    if (inHwDev == NULL)
5639        return 0;
5640
5641    status = inHwDev->open_input_stream(inHwDev, *pDevices, &format,
5642                                        &channels, &samplingRate,
5643                                        acoustics,
5644                                        &inStream);
5645    ALOGV("openInput() openInputStream returned input %p, SamplingRate %d, Format %d, Channels %x, acoustics %x, status %d",
5646            inStream,
5647            samplingRate,
5648            format,
5649            channels,
5650            acoustics,
5651            status);
5652
5653    // If the input could not be opened with the requested parameters and we can handle the conversion internally,
5654    // try to open again with the proposed parameters. The AudioFlinger can resample the input and do mono to stereo
5655    // or stereo to mono conversions on 16 bit PCM inputs.
5656    if (inStream == NULL && status == BAD_VALUE &&
5657        reqFormat == format && format == AUDIO_FORMAT_PCM_16_BIT &&
5658        (samplingRate <= 2 * reqSamplingRate) &&
5659        (popcount(channels) <= FCC_2) && (popcount(reqChannels) <= FCC_2)) {
5660        ALOGV("openInput() reopening with proposed sampling rate and channels");
5661        status = inHwDev->open_input_stream(inHwDev, *pDevices, &format,
5662                                            &channels, &samplingRate,
5663                                            acoustics,
5664                                            &inStream);
5665    }
5666
5667    if (inStream != NULL) {
5668        AudioStreamIn *input = new AudioStreamIn(inHwDev, inStream);
5669
5670        audio_io_handle_t id = nextUniqueId();
5671        // Start record thread
5672        // RecorThread require both input and output device indication to forward to audio
5673        // pre processing modules
5674        uint32_t device = (*pDevices) | primaryOutputDevice_l();
5675        thread = new RecordThread(this,
5676                                  input,
5677                                  reqSamplingRate,
5678                                  reqChannels,
5679                                  id,
5680                                  device);
5681        mRecordThreads.add(id, thread);
5682        ALOGV("openInput() created record thread: ID %d thread %p", id, thread);
5683        if (pSamplingRate != NULL) *pSamplingRate = reqSamplingRate;
5684        if (pFormat != NULL) *pFormat = format;
5685        if (pChannels != NULL) *pChannels = reqChannels;
5686
5687        input->stream->common.standby(&input->stream->common);
5688
5689        // notify client processes of the new input creation
5690        thread->audioConfigChanged_l(AudioSystem::INPUT_OPENED);
5691        return id;
5692    }
5693
5694    return 0;
5695}
5696
5697status_t AudioFlinger::closeInput(audio_io_handle_t input)
5698{
5699    // keep strong reference on the record thread so that
5700    // it is not destroyed while exit() is executed
5701    sp<RecordThread> thread;
5702    {
5703        Mutex::Autolock _l(mLock);
5704        thread = checkRecordThread_l(input);
5705        if (thread == NULL) {
5706            return BAD_VALUE;
5707        }
5708
5709        ALOGV("closeInput() %d", input);
5710        audioConfigChanged_l(AudioSystem::INPUT_CLOSED, input, NULL);
5711        mRecordThreads.removeItem(input);
5712    }
5713    thread->exit();
5714    // The thread entity (active unit of execution) is no longer running here,
5715    // but the ThreadBase container still exists.
5716
5717    AudioStreamIn *in = thread->clearInput();
5718    ALOG_ASSERT(in != NULL, "in shouldn't be NULL");
5719    // from now on thread->mInput is NULL
5720    in->hwDev->close_input_stream(in->hwDev, in->stream);
5721    delete in;
5722
5723    return NO_ERROR;
5724}
5725
5726status_t AudioFlinger::setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output)
5727{
5728    Mutex::Autolock _l(mLock);
5729    MixerThread *dstThread = checkMixerThread_l(output);
5730    if (dstThread == NULL) {
5731        ALOGW("setStreamOutput() bad output id %d", output);
5732        return BAD_VALUE;
5733    }
5734
5735    ALOGV("setStreamOutput() stream %d to output %d", stream, output);
5736    audioConfigChanged_l(AudioSystem::STREAM_CONFIG_CHANGED, output, &stream);
5737
5738    dstThread->setStreamValid(stream, true);
5739
5740    for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5741        PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
5742        if (thread != dstThread && thread->type() != ThreadBase::DIRECT) {
5743            MixerThread *srcThread = (MixerThread *)thread;
5744            srcThread->setStreamValid(stream, false);
5745            srcThread->invalidateTracks(stream);
5746        }
5747    }
5748
5749    return NO_ERROR;
5750}
5751
5752
5753int AudioFlinger::newAudioSessionId()
5754{
5755    return nextUniqueId();
5756}
5757
5758void AudioFlinger::acquireAudioSessionId(int audioSession)
5759{
5760    Mutex::Autolock _l(mLock);
5761    pid_t caller = IPCThreadState::self()->getCallingPid();
5762    ALOGV("acquiring %d from %d", audioSession, caller);
5763    size_t num = mAudioSessionRefs.size();
5764    for (size_t i = 0; i< num; i++) {
5765        AudioSessionRef *ref = mAudioSessionRefs.editItemAt(i);
5766        if (ref->mSessionid == audioSession && ref->mPid == caller) {
5767            ref->mCnt++;
5768            ALOGV(" incremented refcount to %d", ref->mCnt);
5769            return;
5770        }
5771    }
5772    mAudioSessionRefs.push(new AudioSessionRef(audioSession, caller));
5773    ALOGV(" added new entry for %d", audioSession);
5774}
5775
5776void AudioFlinger::releaseAudioSessionId(int audioSession)
5777{
5778    Mutex::Autolock _l(mLock);
5779    pid_t caller = IPCThreadState::self()->getCallingPid();
5780    ALOGV("releasing %d from %d", audioSession, caller);
5781    size_t num = mAudioSessionRefs.size();
5782    for (size_t i = 0; i< num; i++) {
5783        AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
5784        if (ref->mSessionid == audioSession && ref->mPid == caller) {
5785            ref->mCnt--;
5786            ALOGV(" decremented refcount to %d", ref->mCnt);
5787            if (ref->mCnt == 0) {
5788                mAudioSessionRefs.removeAt(i);
5789                delete ref;
5790                purgeStaleEffects_l();
5791            }
5792            return;
5793        }
5794    }
5795    ALOGW("session id %d not found for pid %d", audioSession, caller);
5796}
5797
5798void AudioFlinger::purgeStaleEffects_l() {
5799
5800    ALOGV("purging stale effects");
5801
5802    Vector< sp<EffectChain> > chains;
5803
5804    for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5805        sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
5806        for (size_t j = 0; j < t->mEffectChains.size(); j++) {
5807            sp<EffectChain> ec = t->mEffectChains[j];
5808            if (ec->sessionId() > AUDIO_SESSION_OUTPUT_MIX) {
5809                chains.push(ec);
5810            }
5811        }
5812    }
5813    for (size_t i = 0; i < mRecordThreads.size(); i++) {
5814        sp<RecordThread> t = mRecordThreads.valueAt(i);
5815        for (size_t j = 0; j < t->mEffectChains.size(); j++) {
5816            sp<EffectChain> ec = t->mEffectChains[j];
5817            chains.push(ec);
5818        }
5819    }
5820
5821    for (size_t i = 0; i < chains.size(); i++) {
5822        sp<EffectChain> ec = chains[i];
5823        int sessionid = ec->sessionId();
5824        sp<ThreadBase> t = ec->mThread.promote();
5825        if (t == 0) {
5826            continue;
5827        }
5828        size_t numsessionrefs = mAudioSessionRefs.size();
5829        bool found = false;
5830        for (size_t k = 0; k < numsessionrefs; k++) {
5831            AudioSessionRef *ref = mAudioSessionRefs.itemAt(k);
5832            if (ref->mSessionid == sessionid) {
5833                ALOGV(" session %d still exists for %d with %d refs",
5834                    sessionid, ref->mPid, ref->mCnt);
5835                found = true;
5836                break;
5837            }
5838        }
5839        if (!found) {
5840            // remove all effects from the chain
5841            while (ec->mEffects.size()) {
5842                sp<EffectModule> effect = ec->mEffects[0];
5843                effect->unPin();
5844                Mutex::Autolock _l (t->mLock);
5845                t->removeEffect_l(effect);
5846                for (size_t j = 0; j < effect->mHandles.size(); j++) {
5847                    sp<EffectHandle> handle = effect->mHandles[j].promote();
5848                    if (handle != 0) {
5849                        handle->mEffect.clear();
5850                        if (handle->mHasControl && handle->mEnabled) {
5851                            t->checkSuspendOnEffectEnabled_l(effect, false, effect->sessionId());
5852                        }
5853                    }
5854                }
5855                AudioSystem::unregisterEffect(effect->id());
5856            }
5857        }
5858    }
5859    return;
5860}
5861
5862// checkPlaybackThread_l() must be called with AudioFlinger::mLock held
5863AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(audio_io_handle_t output) const
5864{
5865    return mPlaybackThreads.valueFor(output).get();
5866}
5867
5868// checkMixerThread_l() must be called with AudioFlinger::mLock held
5869AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const
5870{
5871    PlaybackThread *thread = checkPlaybackThread_l(output);
5872    return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL;
5873}
5874
5875// checkRecordThread_l() must be called with AudioFlinger::mLock held
5876AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(audio_io_handle_t input) const
5877{
5878    return mRecordThreads.valueFor(input).get();
5879}
5880
5881uint32_t AudioFlinger::nextUniqueId()
5882{
5883    return android_atomic_inc(&mNextUniqueId);
5884}
5885
5886AudioFlinger::PlaybackThread *AudioFlinger::primaryPlaybackThread_l() const
5887{
5888    for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5889        PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
5890        AudioStreamOut *output = thread->getOutput();
5891        if (output != NULL && output->hwDev == mPrimaryHardwareDev) {
5892            return thread;
5893        }
5894    }
5895    return NULL;
5896}
5897
5898uint32_t AudioFlinger::primaryOutputDevice_l() const
5899{
5900    PlaybackThread *thread = primaryPlaybackThread_l();
5901
5902    if (thread == NULL) {
5903        return 0;
5904    }
5905
5906    return thread->device();
5907}
5908
5909
5910// ----------------------------------------------------------------------------
5911//  Effect management
5912// ----------------------------------------------------------------------------
5913
5914
5915status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects) const
5916{
5917    Mutex::Autolock _l(mLock);
5918    return EffectQueryNumberEffects(numEffects);
5919}
5920
5921status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor) const
5922{
5923    Mutex::Autolock _l(mLock);
5924    return EffectQueryEffect(index, descriptor);
5925}
5926
5927status_t AudioFlinger::getEffectDescriptor(const effect_uuid_t *pUuid,
5928        effect_descriptor_t *descriptor) const
5929{
5930    Mutex::Autolock _l(mLock);
5931    return EffectGetDescriptor(pUuid, descriptor);
5932}
5933
5934
5935sp<IEffect> AudioFlinger::createEffect(pid_t pid,
5936        effect_descriptor_t *pDesc,
5937        const sp<IEffectClient>& effectClient,
5938        int32_t priority,
5939        audio_io_handle_t io,
5940        int sessionId,
5941        status_t *status,
5942        int *id,
5943        int *enabled)
5944{
5945    status_t lStatus = NO_ERROR;
5946    sp<EffectHandle> handle;
5947    effect_descriptor_t desc;
5948
5949    ALOGV("createEffect pid %d, effectClient %p, priority %d, sessionId %d, io %d",
5950            pid, effectClient.get(), priority, sessionId, io);
5951
5952    if (pDesc == NULL) {
5953        lStatus = BAD_VALUE;
5954        goto Exit;
5955    }
5956
5957    // check audio settings permission for global effects
5958    if (sessionId == AUDIO_SESSION_OUTPUT_MIX && !settingsAllowed()) {
5959        lStatus = PERMISSION_DENIED;
5960        goto Exit;
5961    }
5962
5963    // Session AUDIO_SESSION_OUTPUT_STAGE is reserved for output stage effects
5964    // that can only be created by audio policy manager (running in same process)
5965    if (sessionId == AUDIO_SESSION_OUTPUT_STAGE && getpid_cached != pid) {
5966        lStatus = PERMISSION_DENIED;
5967        goto Exit;
5968    }
5969
5970    if (io == 0) {
5971        if (sessionId == AUDIO_SESSION_OUTPUT_STAGE) {
5972            // output must be specified by AudioPolicyManager when using session
5973            // AUDIO_SESSION_OUTPUT_STAGE
5974            lStatus = BAD_VALUE;
5975            goto Exit;
5976        } else if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
5977            // if the output returned by getOutputForEffect() is removed before we lock the
5978            // mutex below, the call to checkPlaybackThread_l(io) below will detect it
5979            // and we will exit safely
5980            io = AudioSystem::getOutputForEffect(&desc);
5981        }
5982    }
5983
5984    {
5985        Mutex::Autolock _l(mLock);
5986
5987
5988        if (!EffectIsNullUuid(&pDesc->uuid)) {
5989            // if uuid is specified, request effect descriptor
5990            lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
5991            if (lStatus < 0) {
5992                ALOGW("createEffect() error %d from EffectGetDescriptor", lStatus);
5993                goto Exit;
5994            }
5995        } else {
5996            // if uuid is not specified, look for an available implementation
5997            // of the required type in effect factory
5998            if (EffectIsNullUuid(&pDesc->type)) {
5999                ALOGW("createEffect() no effect type");
6000                lStatus = BAD_VALUE;
6001                goto Exit;
6002            }
6003            uint32_t numEffects = 0;
6004            effect_descriptor_t d;
6005            d.flags = 0; // prevent compiler warning
6006            bool found = false;
6007
6008            lStatus = EffectQueryNumberEffects(&numEffects);
6009            if (lStatus < 0) {
6010                ALOGW("createEffect() error %d from EffectQueryNumberEffects", lStatus);
6011                goto Exit;
6012            }
6013            for (uint32_t i = 0; i < numEffects; i++) {
6014                lStatus = EffectQueryEffect(i, &desc);
6015                if (lStatus < 0) {
6016                    ALOGW("createEffect() error %d from EffectQueryEffect", lStatus);
6017                    continue;
6018                }
6019                if (memcmp(&desc.type, &pDesc->type, sizeof(effect_uuid_t)) == 0) {
6020                    // If matching type found save effect descriptor. If the session is
6021                    // 0 and the effect is not auxiliary, continue enumeration in case
6022                    // an auxiliary version of this effect type is available
6023                    found = true;
6024                    memcpy(&d, &desc, sizeof(effect_descriptor_t));
6025                    if (sessionId != AUDIO_SESSION_OUTPUT_MIX ||
6026                            (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6027                        break;
6028                    }
6029                }
6030            }
6031            if (!found) {
6032                lStatus = BAD_VALUE;
6033                ALOGW("createEffect() effect not found");
6034                goto Exit;
6035            }
6036            // For same effect type, chose auxiliary version over insert version if
6037            // connect to output mix (Compliance to OpenSL ES)
6038            if (sessionId == AUDIO_SESSION_OUTPUT_MIX &&
6039                    (d.flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_AUXILIARY) {
6040                memcpy(&desc, &d, sizeof(effect_descriptor_t));
6041            }
6042        }
6043
6044        // Do not allow auxiliary effects on a session different from 0 (output mix)
6045        if (sessionId != AUDIO_SESSION_OUTPUT_MIX &&
6046             (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6047            lStatus = INVALID_OPERATION;
6048            goto Exit;
6049        }
6050
6051        // check recording permission for visualizer
6052        if ((memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) &&
6053            !recordingAllowed()) {
6054            lStatus = PERMISSION_DENIED;
6055            goto Exit;
6056        }
6057
6058        // return effect descriptor
6059        memcpy(pDesc, &desc, sizeof(effect_descriptor_t));
6060
6061        // If output is not specified try to find a matching audio session ID in one of the
6062        // output threads.
6063        // If output is 0 here, sessionId is neither SESSION_OUTPUT_STAGE nor SESSION_OUTPUT_MIX
6064        // because of code checking output when entering the function.
6065        // Note: io is never 0 when creating an effect on an input
6066        if (io == 0) {
6067            // look for the thread where the specified audio session is present
6068            for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
6069                if (mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
6070                    io = mPlaybackThreads.keyAt(i);
6071                    break;
6072                }
6073            }
6074            if (io == 0) {
6075                for (size_t i = 0; i < mRecordThreads.size(); i++) {
6076                    if (mRecordThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
6077                        io = mRecordThreads.keyAt(i);
6078                        break;
6079                    }
6080                }
6081            }
6082            // If no output thread contains the requested session ID, default to
6083            // first output. The effect chain will be moved to the correct output
6084            // thread when a track with the same session ID is created
6085            if (io == 0 && mPlaybackThreads.size()) {
6086                io = mPlaybackThreads.keyAt(0);
6087            }
6088            ALOGV("createEffect() got io %d for effect %s", io, desc.name);
6089        }
6090        ThreadBase *thread = checkRecordThread_l(io);
6091        if (thread == NULL) {
6092            thread = checkPlaybackThread_l(io);
6093            if (thread == NULL) {
6094                ALOGE("createEffect() unknown output thread");
6095                lStatus = BAD_VALUE;
6096                goto Exit;
6097            }
6098        }
6099
6100        sp<Client> client = registerPid_l(pid);
6101
6102        // create effect on selected output thread
6103        handle = thread->createEffect_l(client, effectClient, priority, sessionId,
6104                &desc, enabled, &lStatus);
6105        if (handle != 0 && id != NULL) {
6106            *id = handle->id();
6107        }
6108    }
6109
6110Exit:
6111    if (status != NULL) {
6112        *status = lStatus;
6113    }
6114    return handle;
6115}
6116
6117status_t AudioFlinger::moveEffects(int sessionId, audio_io_handle_t srcOutput,
6118        audio_io_handle_t dstOutput)
6119{
6120    ALOGV("moveEffects() session %d, srcOutput %d, dstOutput %d",
6121            sessionId, srcOutput, dstOutput);
6122    Mutex::Autolock _l(mLock);
6123    if (srcOutput == dstOutput) {
6124        ALOGW("moveEffects() same dst and src outputs %d", dstOutput);
6125        return NO_ERROR;
6126    }
6127    PlaybackThread *srcThread = checkPlaybackThread_l(srcOutput);
6128    if (srcThread == NULL) {
6129        ALOGW("moveEffects() bad srcOutput %d", srcOutput);
6130        return BAD_VALUE;
6131    }
6132    PlaybackThread *dstThread = checkPlaybackThread_l(dstOutput);
6133    if (dstThread == NULL) {
6134        ALOGW("moveEffects() bad dstOutput %d", dstOutput);
6135        return BAD_VALUE;
6136    }
6137
6138    Mutex::Autolock _dl(dstThread->mLock);
6139    Mutex::Autolock _sl(srcThread->mLock);
6140    moveEffectChain_l(sessionId, srcThread, dstThread, false);
6141
6142    return NO_ERROR;
6143}
6144
6145// moveEffectChain_l must be called with both srcThread and dstThread mLocks held
6146status_t AudioFlinger::moveEffectChain_l(int sessionId,
6147                                   AudioFlinger::PlaybackThread *srcThread,
6148                                   AudioFlinger::PlaybackThread *dstThread,
6149                                   bool reRegister)
6150{
6151    ALOGV("moveEffectChain_l() session %d from thread %p to thread %p",
6152            sessionId, srcThread, dstThread);
6153
6154    sp<EffectChain> chain = srcThread->getEffectChain_l(sessionId);
6155    if (chain == 0) {
6156        ALOGW("moveEffectChain_l() effect chain for session %d not on source thread %p",
6157                sessionId, srcThread);
6158        return INVALID_OPERATION;
6159    }
6160
6161    // remove chain first. This is useful only if reconfiguring effect chain on same output thread,
6162    // so that a new chain is created with correct parameters when first effect is added. This is
6163    // otherwise unnecessary as removeEffect_l() will remove the chain when last effect is
6164    // removed.
6165    srcThread->removeEffectChain_l(chain);
6166
6167    // transfer all effects one by one so that new effect chain is created on new thread with
6168    // correct buffer sizes and audio parameters and effect engines reconfigured accordingly
6169    audio_io_handle_t dstOutput = dstThread->id();
6170    sp<EffectChain> dstChain;
6171    uint32_t strategy = 0; // prevent compiler warning
6172    sp<EffectModule> effect = chain->getEffectFromId_l(0);
6173    while (effect != 0) {
6174        srcThread->removeEffect_l(effect);
6175        dstThread->addEffect_l(effect);
6176        // removeEffect_l() has stopped the effect if it was active so it must be restarted
6177        if (effect->state() == EffectModule::ACTIVE ||
6178                effect->state() == EffectModule::STOPPING) {
6179            effect->start();
6180        }
6181        // if the move request is not received from audio policy manager, the effect must be
6182        // re-registered with the new strategy and output
6183        if (dstChain == 0) {
6184            dstChain = effect->chain().promote();
6185            if (dstChain == 0) {
6186                ALOGW("moveEffectChain_l() cannot get chain from effect %p", effect.get());
6187                srcThread->addEffect_l(effect);
6188                return NO_INIT;
6189            }
6190            strategy = dstChain->strategy();
6191        }
6192        if (reRegister) {
6193            AudioSystem::unregisterEffect(effect->id());
6194            AudioSystem::registerEffect(&effect->desc(),
6195                                        dstOutput,
6196                                        strategy,
6197                                        sessionId,
6198                                        effect->id());
6199        }
6200        effect = chain->getEffectFromId_l(0);
6201    }
6202
6203    return NO_ERROR;
6204}
6205
6206
6207// PlaybackThread::createEffect_l() must be called with AudioFlinger::mLock held
6208sp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
6209        const sp<AudioFlinger::Client>& client,
6210        const sp<IEffectClient>& effectClient,
6211        int32_t priority,
6212        int sessionId,
6213        effect_descriptor_t *desc,
6214        int *enabled,
6215        status_t *status
6216        )
6217{
6218    sp<EffectModule> effect;
6219    sp<EffectHandle> handle;
6220    status_t lStatus;
6221    sp<EffectChain> chain;
6222    bool chainCreated = false;
6223    bool effectCreated = false;
6224    bool effectRegistered = false;
6225
6226    lStatus = initCheck();
6227    if (lStatus != NO_ERROR) {
6228        ALOGW("createEffect_l() Audio driver not initialized.");
6229        goto Exit;
6230    }
6231
6232    // Do not allow effects with session ID 0 on direct output or duplicating threads
6233    // TODO: add rule for hw accelerated effects on direct outputs with non PCM format
6234    if (sessionId == AUDIO_SESSION_OUTPUT_MIX && mType != MIXER) {
6235        ALOGW("createEffect_l() Cannot add auxiliary effect %s to session %d",
6236                desc->name, sessionId);
6237        lStatus = BAD_VALUE;
6238        goto Exit;
6239    }
6240    // Only Pre processor effects are allowed on input threads and only on input threads
6241    if ((mType == RECORD) != ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
6242        ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
6243                desc->name, desc->flags, mType);
6244        lStatus = BAD_VALUE;
6245        goto Exit;
6246    }
6247
6248    ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
6249
6250    { // scope for mLock
6251        Mutex::Autolock _l(mLock);
6252
6253        // check for existing effect chain with the requested audio session
6254        chain = getEffectChain_l(sessionId);
6255        if (chain == 0) {
6256            // create a new chain for this session
6257            ALOGV("createEffect_l() new effect chain for session %d", sessionId);
6258            chain = new EffectChain(this, sessionId);
6259            addEffectChain_l(chain);
6260            chain->setStrategy(getStrategyForSession_l(sessionId));
6261            chainCreated = true;
6262        } else {
6263            effect = chain->getEffectFromDesc_l(desc);
6264        }
6265
6266        ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
6267
6268        if (effect == 0) {
6269            int id = mAudioFlinger->nextUniqueId();
6270            // Check CPU and memory usage
6271            lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
6272            if (lStatus != NO_ERROR) {
6273                goto Exit;
6274            }
6275            effectRegistered = true;
6276            // create a new effect module if none present in the chain
6277            effect = new EffectModule(this, chain, desc, id, sessionId);
6278            lStatus = effect->status();
6279            if (lStatus != NO_ERROR) {
6280                goto Exit;
6281            }
6282            lStatus = chain->addEffect_l(effect);
6283            if (lStatus != NO_ERROR) {
6284                goto Exit;
6285            }
6286            effectCreated = true;
6287
6288            effect->setDevice(mDevice);
6289            effect->setMode(mAudioFlinger->getMode());
6290        }
6291        // create effect handle and connect it to effect module
6292        handle = new EffectHandle(effect, client, effectClient, priority);
6293        lStatus = effect->addHandle(handle);
6294        if (enabled != NULL) {
6295            *enabled = (int)effect->isEnabled();
6296        }
6297    }
6298
6299Exit:
6300    if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
6301        Mutex::Autolock _l(mLock);
6302        if (effectCreated) {
6303            chain->removeEffect_l(effect);
6304        }
6305        if (effectRegistered) {
6306            AudioSystem::unregisterEffect(effect->id());
6307        }
6308        if (chainCreated) {
6309            removeEffectChain_l(chain);
6310        }
6311        handle.clear();
6312    }
6313
6314    if (status != NULL) {
6315        *status = lStatus;
6316    }
6317    return handle;
6318}
6319
6320sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
6321{
6322    sp<EffectChain> chain = getEffectChain_l(sessionId);
6323    return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
6324}
6325
6326// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
6327// PlaybackThread::mLock held
6328status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
6329{
6330    // check for existing effect chain with the requested audio session
6331    int sessionId = effect->sessionId();
6332    sp<EffectChain> chain = getEffectChain_l(sessionId);
6333    bool chainCreated = false;
6334
6335    if (chain == 0) {
6336        // create a new chain for this session
6337        ALOGV("addEffect_l() new effect chain for session %d", sessionId);
6338        chain = new EffectChain(this, sessionId);
6339        addEffectChain_l(chain);
6340        chain->setStrategy(getStrategyForSession_l(sessionId));
6341        chainCreated = true;
6342    }
6343    ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
6344
6345    if (chain->getEffectFromId_l(effect->id()) != 0) {
6346        ALOGW("addEffect_l() %p effect %s already present in chain %p",
6347                this, effect->desc().name, chain.get());
6348        return BAD_VALUE;
6349    }
6350
6351    status_t status = chain->addEffect_l(effect);
6352    if (status != NO_ERROR) {
6353        if (chainCreated) {
6354            removeEffectChain_l(chain);
6355        }
6356        return status;
6357    }
6358
6359    effect->setDevice(mDevice);
6360    effect->setMode(mAudioFlinger->getMode());
6361    return NO_ERROR;
6362}
6363
6364void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
6365
6366    ALOGV("removeEffect_l() %p effect %p", this, effect.get());
6367    effect_descriptor_t desc = effect->desc();
6368    if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6369        detachAuxEffect_l(effect->id());
6370    }
6371
6372    sp<EffectChain> chain = effect->chain().promote();
6373    if (chain != 0) {
6374        // remove effect chain if removing last effect
6375        if (chain->removeEffect_l(effect) == 0) {
6376            removeEffectChain_l(chain);
6377        }
6378    } else {
6379        ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
6380    }
6381}
6382
6383void AudioFlinger::ThreadBase::lockEffectChains_l(
6384        Vector< sp<AudioFlinger::EffectChain> >& effectChains)
6385{
6386    effectChains = mEffectChains;
6387    for (size_t i = 0; i < mEffectChains.size(); i++) {
6388        mEffectChains[i]->lock();
6389    }
6390}
6391
6392void AudioFlinger::ThreadBase::unlockEffectChains(
6393        const Vector< sp<AudioFlinger::EffectChain> >& effectChains)
6394{
6395    for (size_t i = 0; i < effectChains.size(); i++) {
6396        effectChains[i]->unlock();
6397    }
6398}
6399
6400sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
6401{
6402    Mutex::Autolock _l(mLock);
6403    return getEffectChain_l(sessionId);
6404}
6405
6406sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId)
6407{
6408    size_t size = mEffectChains.size();
6409    for (size_t i = 0; i < size; i++) {
6410        if (mEffectChains[i]->sessionId() == sessionId) {
6411            return mEffectChains[i];
6412        }
6413    }
6414    return 0;
6415}
6416
6417void AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
6418{
6419    Mutex::Autolock _l(mLock);
6420    size_t size = mEffectChains.size();
6421    for (size_t i = 0; i < size; i++) {
6422        mEffectChains[i]->setMode_l(mode);
6423    }
6424}
6425
6426void AudioFlinger::ThreadBase::disconnectEffect(const sp<EffectModule>& effect,
6427                                                    const wp<EffectHandle>& handle,
6428                                                    bool unpinIfLast) {
6429
6430    Mutex::Autolock _l(mLock);
6431    ALOGV("disconnectEffect() %p effect %p", this, effect.get());
6432    // delete the effect module if removing last handle on it
6433    if (effect->removeHandle(handle) == 0) {
6434        if (!effect->isPinned() || unpinIfLast) {
6435            removeEffect_l(effect);
6436            AudioSystem::unregisterEffect(effect->id());
6437        }
6438    }
6439}
6440
6441status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
6442{
6443    int session = chain->sessionId();
6444    int16_t *buffer = mMixBuffer;
6445    bool ownsBuffer = false;
6446
6447    ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
6448    if (session > 0) {
6449        // Only one effect chain can be present in direct output thread and it uses
6450        // the mix buffer as input
6451        if (mType != DIRECT) {
6452            size_t numSamples = mFrameCount * mChannelCount;
6453            buffer = new int16_t[numSamples];
6454            memset(buffer, 0, numSamples * sizeof(int16_t));
6455            ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
6456            ownsBuffer = true;
6457        }
6458
6459        // Attach all tracks with same session ID to this chain.
6460        for (size_t i = 0; i < mTracks.size(); ++i) {
6461            sp<Track> track = mTracks[i];
6462            if (session == track->sessionId()) {
6463                ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(), buffer);
6464                track->setMainBuffer(buffer);
6465                chain->incTrackCnt();
6466            }
6467        }
6468
6469        // indicate all active tracks in the chain
6470        for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
6471            sp<Track> track = mActiveTracks[i].promote();
6472            if (track == 0) continue;
6473            if (session == track->sessionId()) {
6474                ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
6475                chain->incActiveTrackCnt();
6476            }
6477        }
6478    }
6479
6480    chain->setInBuffer(buffer, ownsBuffer);
6481    chain->setOutBuffer(mMixBuffer);
6482    // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
6483    // chains list in order to be processed last as it contains output stage effects
6484    // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
6485    // session AUDIO_SESSION_OUTPUT_STAGE to be processed
6486    // after track specific effects and before output stage
6487    // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
6488    // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
6489    // Effect chain for other sessions are inserted at beginning of effect
6490    // chains list to be processed before output mix effects. Relative order between other
6491    // sessions is not important
6492    size_t size = mEffectChains.size();
6493    size_t i = 0;
6494    for (i = 0; i < size; i++) {
6495        if (mEffectChains[i]->sessionId() < session) break;
6496    }
6497    mEffectChains.insertAt(chain, i);
6498    checkSuspendOnAddEffectChain_l(chain);
6499
6500    return NO_ERROR;
6501}
6502
6503size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
6504{
6505    int session = chain->sessionId();
6506
6507    ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
6508
6509    for (size_t i = 0; i < mEffectChains.size(); i++) {
6510        if (chain == mEffectChains[i]) {
6511            mEffectChains.removeAt(i);
6512            // detach all active tracks from the chain
6513            for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
6514                sp<Track> track = mActiveTracks[i].promote();
6515                if (track == 0) continue;
6516                if (session == track->sessionId()) {
6517                    ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
6518                            chain.get(), session);
6519                    chain->decActiveTrackCnt();
6520                }
6521            }
6522
6523            // detach all tracks with same session ID from this chain
6524            for (size_t i = 0; i < mTracks.size(); ++i) {
6525                sp<Track> track = mTracks[i];
6526                if (session == track->sessionId()) {
6527                    track->setMainBuffer(mMixBuffer);
6528                    chain->decTrackCnt();
6529                }
6530            }
6531            break;
6532        }
6533    }
6534    return mEffectChains.size();
6535}
6536
6537status_t AudioFlinger::PlaybackThread::attachAuxEffect(
6538        const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
6539{
6540    Mutex::Autolock _l(mLock);
6541    return attachAuxEffect_l(track, EffectId);
6542}
6543
6544status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
6545        const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
6546{
6547    status_t status = NO_ERROR;
6548
6549    if (EffectId == 0) {
6550        track->setAuxBuffer(0, NULL);
6551    } else {
6552        // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
6553        sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
6554        if (effect != 0) {
6555            if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6556                track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
6557            } else {
6558                status = INVALID_OPERATION;
6559            }
6560        } else {
6561            status = BAD_VALUE;
6562        }
6563    }
6564    return status;
6565}
6566
6567void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
6568{
6569    for (size_t i = 0; i < mTracks.size(); ++i) {
6570        sp<Track> track = mTracks[i];
6571        if (track->auxEffectId() == effectId) {
6572            attachAuxEffect_l(track, 0);
6573        }
6574    }
6575}
6576
6577status_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
6578{
6579    // only one chain per input thread
6580    if (mEffectChains.size() != 0) {
6581        return INVALID_OPERATION;
6582    }
6583    ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
6584
6585    chain->setInBuffer(NULL);
6586    chain->setOutBuffer(NULL);
6587
6588    checkSuspendOnAddEffectChain_l(chain);
6589
6590    mEffectChains.add(chain);
6591
6592    return NO_ERROR;
6593}
6594
6595size_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
6596{
6597    ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
6598    ALOGW_IF(mEffectChains.size() != 1,
6599            "removeEffectChain_l() %p invalid chain size %d on thread %p",
6600            chain.get(), mEffectChains.size(), this);
6601    if (mEffectChains.size() == 1) {
6602        mEffectChains.removeAt(0);
6603    }
6604    return 0;
6605}
6606
6607// ----------------------------------------------------------------------------
6608//  EffectModule implementation
6609// ----------------------------------------------------------------------------
6610
6611#undef LOG_TAG
6612#define LOG_TAG "AudioFlinger::EffectModule"
6613
6614AudioFlinger::EffectModule::EffectModule(ThreadBase *thread,
6615                                        const wp<AudioFlinger::EffectChain>& chain,
6616                                        effect_descriptor_t *desc,
6617                                        int id,
6618                                        int sessionId)
6619    : mThread(thread), mChain(chain), mId(id), mSessionId(sessionId), mEffectInterface(NULL),
6620      mStatus(NO_INIT), mState(IDLE), mSuspended(false)
6621{
6622    ALOGV("Constructor %p", this);
6623    int lStatus;
6624    if (thread == NULL) {
6625        return;
6626    }
6627
6628    memcpy(&mDescriptor, desc, sizeof(effect_descriptor_t));
6629
6630    // create effect engine from effect factory
6631    mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
6632
6633    if (mStatus != NO_ERROR) {
6634        return;
6635    }
6636    lStatus = init();
6637    if (lStatus < 0) {
6638        mStatus = lStatus;
6639        goto Error;
6640    }
6641
6642    if (mSessionId > AUDIO_SESSION_OUTPUT_MIX) {
6643        mPinned = true;
6644    }
6645    ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
6646    return;
6647Error:
6648    EffectRelease(mEffectInterface);
6649    mEffectInterface = NULL;
6650    ALOGV("Constructor Error %d", mStatus);
6651}
6652
6653AudioFlinger::EffectModule::~EffectModule()
6654{
6655    ALOGV("Destructor %p", this);
6656    if (mEffectInterface != NULL) {
6657        if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
6658                (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
6659            sp<ThreadBase> thread = mThread.promote();
6660            if (thread != 0) {
6661                audio_stream_t *stream = thread->stream();
6662                if (stream != NULL) {
6663                    stream->remove_audio_effect(stream, mEffectInterface);
6664                }
6665            }
6666        }
6667        // release effect engine
6668        EffectRelease(mEffectInterface);
6669    }
6670}
6671
6672status_t AudioFlinger::EffectModule::addHandle(const sp<EffectHandle>& handle)
6673{
6674    status_t status;
6675
6676    Mutex::Autolock _l(mLock);
6677    int priority = handle->priority();
6678    size_t size = mHandles.size();
6679    sp<EffectHandle> h;
6680    size_t i;
6681    for (i = 0; i < size; i++) {
6682        h = mHandles[i].promote();
6683        if (h == 0) continue;
6684        if (h->priority() <= priority) break;
6685    }
6686    // if inserted in first place, move effect control from previous owner to this handle
6687    if (i == 0) {
6688        bool enabled = false;
6689        if (h != 0) {
6690            enabled = h->enabled();
6691            h->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
6692        }
6693        handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
6694        status = NO_ERROR;
6695    } else {
6696        status = ALREADY_EXISTS;
6697    }
6698    ALOGV("addHandle() %p added handle %p in position %d", this, handle.get(), i);
6699    mHandles.insertAt(handle, i);
6700    return status;
6701}
6702
6703size_t AudioFlinger::EffectModule::removeHandle(const wp<EffectHandle>& handle)
6704{
6705    Mutex::Autolock _l(mLock);
6706    size_t size = mHandles.size();
6707    size_t i;
6708    for (i = 0; i < size; i++) {
6709        if (mHandles[i] == handle) break;
6710    }
6711    if (i == size) {
6712        return size;
6713    }
6714    ALOGV("removeHandle() %p removed handle %p in position %d", this, handle.unsafe_get(), i);
6715
6716    bool enabled = false;
6717    EffectHandle *hdl = handle.unsafe_get();
6718    if (hdl != NULL) {
6719        ALOGV("removeHandle() unsafe_get OK");
6720        enabled = hdl->enabled();
6721    }
6722    mHandles.removeAt(i);
6723    size = mHandles.size();
6724    // if removed from first place, move effect control from this handle to next in line
6725    if (i == 0 && size != 0) {
6726        sp<EffectHandle> h = mHandles[0].promote();
6727        if (h != 0) {
6728            h->setControl(true /*hasControl*/, true /*signal*/ , enabled /*enabled*/);
6729        }
6730    }
6731
6732    // Prevent calls to process() and other functions on effect interface from now on.
6733    // The effect engine will be released by the destructor when the last strong reference on
6734    // this object is released which can happen after next process is called.
6735    if (size == 0 && !mPinned) {
6736        mState = DESTROYED;
6737    }
6738
6739    return size;
6740}
6741
6742sp<AudioFlinger::EffectHandle> AudioFlinger::EffectModule::controlHandle()
6743{
6744    Mutex::Autolock _l(mLock);
6745    return mHandles.size() != 0 ? mHandles[0].promote() : 0;
6746}
6747
6748void AudioFlinger::EffectModule::disconnect(const wp<EffectHandle>& handle, bool unpinIfLast)
6749{
6750    ALOGV("disconnect() %p handle %p", this, handle.unsafe_get());
6751    // keep a strong reference on this EffectModule to avoid calling the
6752    // destructor before we exit
6753    sp<EffectModule> keep(this);
6754    {
6755        sp<ThreadBase> thread = mThread.promote();
6756        if (thread != 0) {
6757            thread->disconnectEffect(keep, handle, unpinIfLast);
6758        }
6759    }
6760}
6761
6762void AudioFlinger::EffectModule::updateState() {
6763    Mutex::Autolock _l(mLock);
6764
6765    switch (mState) {
6766    case RESTART:
6767        reset_l();
6768        // FALL THROUGH
6769
6770    case STARTING:
6771        // clear auxiliary effect input buffer for next accumulation
6772        if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6773            memset(mConfig.inputCfg.buffer.raw,
6774                   0,
6775                   mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
6776        }
6777        start_l();
6778        mState = ACTIVE;
6779        break;
6780    case STOPPING:
6781        stop_l();
6782        mDisableWaitCnt = mMaxDisableWaitCnt;
6783        mState = STOPPED;
6784        break;
6785    case STOPPED:
6786        // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
6787        // turn off sequence.
6788        if (--mDisableWaitCnt == 0) {
6789            reset_l();
6790            mState = IDLE;
6791        }
6792        break;
6793    default: //IDLE , ACTIVE, DESTROYED
6794        break;
6795    }
6796}
6797
6798void AudioFlinger::EffectModule::process()
6799{
6800    Mutex::Autolock _l(mLock);
6801
6802    if (mState == DESTROYED || mEffectInterface == NULL ||
6803            mConfig.inputCfg.buffer.raw == NULL ||
6804            mConfig.outputCfg.buffer.raw == NULL) {
6805        return;
6806    }
6807
6808    if (isProcessEnabled()) {
6809        // do 32 bit to 16 bit conversion for auxiliary effect input buffer
6810        if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6811            ditherAndClamp(mConfig.inputCfg.buffer.s32,
6812                                        mConfig.inputCfg.buffer.s32,
6813                                        mConfig.inputCfg.buffer.frameCount/2);
6814        }
6815
6816        // do the actual processing in the effect engine
6817        int ret = (*mEffectInterface)->process(mEffectInterface,
6818                                               &mConfig.inputCfg.buffer,
6819                                               &mConfig.outputCfg.buffer);
6820
6821        // force transition to IDLE state when engine is ready
6822        if (mState == STOPPED && ret == -ENODATA) {
6823            mDisableWaitCnt = 1;
6824        }
6825
6826        // clear auxiliary effect input buffer for next accumulation
6827        if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6828            memset(mConfig.inputCfg.buffer.raw, 0,
6829                   mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
6830        }
6831    } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
6832                mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
6833        // If an insert effect is idle and input buffer is different from output buffer,
6834        // accumulate input onto output
6835        sp<EffectChain> chain = mChain.promote();
6836        if (chain != 0 && chain->activeTrackCnt() != 0) {
6837            size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2;  //always stereo here
6838            int16_t *in = mConfig.inputCfg.buffer.s16;
6839            int16_t *out = mConfig.outputCfg.buffer.s16;
6840            for (size_t i = 0; i < frameCnt; i++) {
6841                out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
6842            }
6843        }
6844    }
6845}
6846
6847void AudioFlinger::EffectModule::reset_l()
6848{
6849    if (mEffectInterface == NULL) {
6850        return;
6851    }
6852    (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
6853}
6854
6855status_t AudioFlinger::EffectModule::configure()
6856{
6857    uint32_t channels;
6858    if (mEffectInterface == NULL) {
6859        return NO_INIT;
6860    }
6861
6862    sp<ThreadBase> thread = mThread.promote();
6863    if (thread == 0) {
6864        return DEAD_OBJECT;
6865    }
6866
6867    // TODO: handle configuration of effects replacing track process
6868    if (thread->channelCount() == 1) {
6869        channels = AUDIO_CHANNEL_OUT_MONO;
6870    } else {
6871        channels = AUDIO_CHANNEL_OUT_STEREO;
6872    }
6873
6874    if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6875        mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
6876    } else {
6877        mConfig.inputCfg.channels = channels;
6878    }
6879    mConfig.outputCfg.channels = channels;
6880    mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
6881    mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
6882    mConfig.inputCfg.samplingRate = thread->sampleRate();
6883    mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
6884    mConfig.inputCfg.bufferProvider.cookie = NULL;
6885    mConfig.inputCfg.bufferProvider.getBuffer = NULL;
6886    mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
6887    mConfig.outputCfg.bufferProvider.cookie = NULL;
6888    mConfig.outputCfg.bufferProvider.getBuffer = NULL;
6889    mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
6890    mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
6891    // Insert effect:
6892    // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
6893    // always overwrites output buffer: input buffer == output buffer
6894    // - in other sessions:
6895    //      last effect in the chain accumulates in output buffer: input buffer != output buffer
6896    //      other effect: overwrites output buffer: input buffer == output buffer
6897    // Auxiliary effect:
6898    //      accumulates in output buffer: input buffer != output buffer
6899    // Therefore: accumulate <=> input buffer != output buffer
6900    if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
6901        mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
6902    } else {
6903        mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
6904    }
6905    mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
6906    mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
6907    mConfig.inputCfg.buffer.frameCount = thread->frameCount();
6908    mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
6909
6910    ALOGV("configure() %p thread %p buffer %p framecount %d",
6911            this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
6912
6913    status_t cmdStatus;
6914    uint32_t size = sizeof(int);
6915    status_t status = (*mEffectInterface)->command(mEffectInterface,
6916                                                   EFFECT_CMD_SET_CONFIG,
6917                                                   sizeof(effect_config_t),
6918                                                   &mConfig,
6919                                                   &size,
6920                                                   &cmdStatus);
6921    if (status == 0) {
6922        status = cmdStatus;
6923    }
6924
6925    mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
6926            (1000 * mConfig.outputCfg.buffer.frameCount);
6927
6928    return status;
6929}
6930
6931status_t AudioFlinger::EffectModule::init()
6932{
6933    Mutex::Autolock _l(mLock);
6934    if (mEffectInterface == NULL) {
6935        return NO_INIT;
6936    }
6937    status_t cmdStatus;
6938    uint32_t size = sizeof(status_t);
6939    status_t status = (*mEffectInterface)->command(mEffectInterface,
6940                                                   EFFECT_CMD_INIT,
6941                                                   0,
6942                                                   NULL,
6943                                                   &size,
6944                                                   &cmdStatus);
6945    if (status == 0) {
6946        status = cmdStatus;
6947    }
6948    return status;
6949}
6950
6951status_t AudioFlinger::EffectModule::start()
6952{
6953    Mutex::Autolock _l(mLock);
6954    return start_l();
6955}
6956
6957status_t AudioFlinger::EffectModule::start_l()
6958{
6959    if (mEffectInterface == NULL) {
6960        return NO_INIT;
6961    }
6962    status_t cmdStatus;
6963    uint32_t size = sizeof(status_t);
6964    status_t status = (*mEffectInterface)->command(mEffectInterface,
6965                                                   EFFECT_CMD_ENABLE,
6966                                                   0,
6967                                                   NULL,
6968                                                   &size,
6969                                                   &cmdStatus);
6970    if (status == 0) {
6971        status = cmdStatus;
6972    }
6973    if (status == 0 &&
6974            ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
6975             (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
6976        sp<ThreadBase> thread = mThread.promote();
6977        if (thread != 0) {
6978            audio_stream_t *stream = thread->stream();
6979            if (stream != NULL) {
6980                stream->add_audio_effect(stream, mEffectInterface);
6981            }
6982        }
6983    }
6984    return status;
6985}
6986
6987status_t AudioFlinger::EffectModule::stop()
6988{
6989    Mutex::Autolock _l(mLock);
6990    return stop_l();
6991}
6992
6993status_t AudioFlinger::EffectModule::stop_l()
6994{
6995    if (mEffectInterface == NULL) {
6996        return NO_INIT;
6997    }
6998    status_t cmdStatus;
6999    uint32_t size = sizeof(status_t);
7000    status_t status = (*mEffectInterface)->command(mEffectInterface,
7001                                                   EFFECT_CMD_DISABLE,
7002                                                   0,
7003                                                   NULL,
7004                                                   &size,
7005                                                   &cmdStatus);
7006    if (status == 0) {
7007        status = cmdStatus;
7008    }
7009    if (status == 0 &&
7010            ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
7011             (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
7012        sp<ThreadBase> thread = mThread.promote();
7013        if (thread != 0) {
7014            audio_stream_t *stream = thread->stream();
7015            if (stream != NULL) {
7016                stream->remove_audio_effect(stream, mEffectInterface);
7017            }
7018        }
7019    }
7020    return status;
7021}
7022
7023status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
7024                                             uint32_t cmdSize,
7025                                             void *pCmdData,
7026                                             uint32_t *replySize,
7027                                             void *pReplyData)
7028{
7029    Mutex::Autolock _l(mLock);
7030//    ALOGV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
7031
7032    if (mState == DESTROYED || mEffectInterface == NULL) {
7033        return NO_INIT;
7034    }
7035    status_t status = (*mEffectInterface)->command(mEffectInterface,
7036                                                   cmdCode,
7037                                                   cmdSize,
7038                                                   pCmdData,
7039                                                   replySize,
7040                                                   pReplyData);
7041    if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
7042        uint32_t size = (replySize == NULL) ? 0 : *replySize;
7043        for (size_t i = 1; i < mHandles.size(); i++) {
7044            sp<EffectHandle> h = mHandles[i].promote();
7045            if (h != 0) {
7046                h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
7047            }
7048        }
7049    }
7050    return status;
7051}
7052
7053status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
7054{
7055
7056    Mutex::Autolock _l(mLock);
7057    ALOGV("setEnabled %p enabled %d", this, enabled);
7058
7059    if (enabled != isEnabled()) {
7060        status_t status = AudioSystem::setEffectEnabled(mId, enabled);
7061        if (enabled && status != NO_ERROR) {
7062            return status;
7063        }
7064
7065        switch (mState) {
7066        // going from disabled to enabled
7067        case IDLE:
7068            mState = STARTING;
7069            break;
7070        case STOPPED:
7071            mState = RESTART;
7072            break;
7073        case STOPPING:
7074            mState = ACTIVE;
7075            break;
7076
7077        // going from enabled to disabled
7078        case RESTART:
7079            mState = STOPPED;
7080            break;
7081        case STARTING:
7082            mState = IDLE;
7083            break;
7084        case ACTIVE:
7085            mState = STOPPING;
7086            break;
7087        case DESTROYED:
7088            return NO_ERROR; // simply ignore as we are being destroyed
7089        }
7090        for (size_t i = 1; i < mHandles.size(); i++) {
7091            sp<EffectHandle> h = mHandles[i].promote();
7092            if (h != 0) {
7093                h->setEnabled(enabled);
7094            }
7095        }
7096    }
7097    return NO_ERROR;
7098}
7099
7100bool AudioFlinger::EffectModule::isEnabled() const
7101{
7102    switch (mState) {
7103    case RESTART:
7104    case STARTING:
7105    case ACTIVE:
7106        return true;
7107    case IDLE:
7108    case STOPPING:
7109    case STOPPED:
7110    case DESTROYED:
7111    default:
7112        return false;
7113    }
7114}
7115
7116bool AudioFlinger::EffectModule::isProcessEnabled() const
7117{
7118    switch (mState) {
7119    case RESTART:
7120    case ACTIVE:
7121    case STOPPING:
7122    case STOPPED:
7123        return true;
7124    case IDLE:
7125    case STARTING:
7126    case DESTROYED:
7127    default:
7128        return false;
7129    }
7130}
7131
7132status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
7133{
7134    Mutex::Autolock _l(mLock);
7135    status_t status = NO_ERROR;
7136
7137    // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
7138    // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
7139    if (isProcessEnabled() &&
7140            ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
7141            (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
7142        status_t cmdStatus;
7143        uint32_t volume[2];
7144        uint32_t *pVolume = NULL;
7145        uint32_t size = sizeof(volume);
7146        volume[0] = *left;
7147        volume[1] = *right;
7148        if (controller) {
7149            pVolume = volume;
7150        }
7151        status = (*mEffectInterface)->command(mEffectInterface,
7152                                              EFFECT_CMD_SET_VOLUME,
7153                                              size,
7154                                              volume,
7155                                              &size,
7156                                              pVolume);
7157        if (controller && status == NO_ERROR && size == sizeof(volume)) {
7158            *left = volume[0];
7159            *right = volume[1];
7160        }
7161    }
7162    return status;
7163}
7164
7165status_t AudioFlinger::EffectModule::setDevice(uint32_t device)
7166{
7167    Mutex::Autolock _l(mLock);
7168    status_t status = NO_ERROR;
7169    if (device && (mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
7170        // audio pre processing modules on RecordThread can receive both output and
7171        // input device indication in the same call
7172        uint32_t dev = device & AUDIO_DEVICE_OUT_ALL;
7173        if (dev) {
7174            status_t cmdStatus;
7175            uint32_t size = sizeof(status_t);
7176
7177            status = (*mEffectInterface)->command(mEffectInterface,
7178                                                  EFFECT_CMD_SET_DEVICE,
7179                                                  sizeof(uint32_t),
7180                                                  &dev,
7181                                                  &size,
7182                                                  &cmdStatus);
7183            if (status == NO_ERROR) {
7184                status = cmdStatus;
7185            }
7186        }
7187        dev = device & AUDIO_DEVICE_IN_ALL;
7188        if (dev) {
7189            status_t cmdStatus;
7190            uint32_t size = sizeof(status_t);
7191
7192            status_t status2 = (*mEffectInterface)->command(mEffectInterface,
7193                                                  EFFECT_CMD_SET_INPUT_DEVICE,
7194                                                  sizeof(uint32_t),
7195                                                  &dev,
7196                                                  &size,
7197                                                  &cmdStatus);
7198            if (status2 == NO_ERROR) {
7199                status2 = cmdStatus;
7200            }
7201            if (status == NO_ERROR) {
7202                status = status2;
7203            }
7204        }
7205    }
7206    return status;
7207}
7208
7209status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
7210{
7211    Mutex::Autolock _l(mLock);
7212    status_t status = NO_ERROR;
7213    if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
7214        status_t cmdStatus;
7215        uint32_t size = sizeof(status_t);
7216        status = (*mEffectInterface)->command(mEffectInterface,
7217                                              EFFECT_CMD_SET_AUDIO_MODE,
7218                                              sizeof(audio_mode_t),
7219                                              &mode,
7220                                              &size,
7221                                              &cmdStatus);
7222        if (status == NO_ERROR) {
7223            status = cmdStatus;
7224        }
7225    }
7226    return status;
7227}
7228
7229void AudioFlinger::EffectModule::setSuspended(bool suspended)
7230{
7231    Mutex::Autolock _l(mLock);
7232    mSuspended = suspended;
7233}
7234
7235bool AudioFlinger::EffectModule::suspended() const
7236{
7237    Mutex::Autolock _l(mLock);
7238    return mSuspended;
7239}
7240
7241status_t AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
7242{
7243    const size_t SIZE = 256;
7244    char buffer[SIZE];
7245    String8 result;
7246
7247    snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
7248    result.append(buffer);
7249
7250    bool locked = tryLock(mLock);
7251    // failed to lock - AudioFlinger is probably deadlocked
7252    if (!locked) {
7253        result.append("\t\tCould not lock Fx mutex:\n");
7254    }
7255
7256    result.append("\t\tSession Status State Engine:\n");
7257    snprintf(buffer, SIZE, "\t\t%05d   %03d    %03d   0x%08x\n",
7258            mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
7259    result.append(buffer);
7260
7261    result.append("\t\tDescriptor:\n");
7262    snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
7263            mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
7264            mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],mDescriptor.uuid.node[2],
7265            mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
7266    result.append(buffer);
7267    snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
7268                mDescriptor.type.timeLow, mDescriptor.type.timeMid, mDescriptor.type.timeHiAndVersion,
7269                mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],mDescriptor.type.node[2],
7270                mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
7271    result.append(buffer);
7272    snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X\n",
7273            mDescriptor.apiVersion,
7274            mDescriptor.flags);
7275    result.append(buffer);
7276    snprintf(buffer, SIZE, "\t\t- name: %s\n",
7277            mDescriptor.name);
7278    result.append(buffer);
7279    snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
7280            mDescriptor.implementor);
7281    result.append(buffer);
7282
7283    result.append("\t\t- Input configuration:\n");
7284    result.append("\t\t\tBuffer     Frames  Smp rate Channels Format\n");
7285    snprintf(buffer, SIZE, "\t\t\t0x%08x %05d   %05d    %08x %d\n",
7286            (uint32_t)mConfig.inputCfg.buffer.raw,
7287            mConfig.inputCfg.buffer.frameCount,
7288            mConfig.inputCfg.samplingRate,
7289            mConfig.inputCfg.channels,
7290            mConfig.inputCfg.format);
7291    result.append(buffer);
7292
7293    result.append("\t\t- Output configuration:\n");
7294    result.append("\t\t\tBuffer     Frames  Smp rate Channels Format\n");
7295    snprintf(buffer, SIZE, "\t\t\t0x%08x %05d   %05d    %08x %d\n",
7296            (uint32_t)mConfig.outputCfg.buffer.raw,
7297            mConfig.outputCfg.buffer.frameCount,
7298            mConfig.outputCfg.samplingRate,
7299            mConfig.outputCfg.channels,
7300            mConfig.outputCfg.format);
7301    result.append(buffer);
7302
7303    snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
7304    result.append(buffer);
7305    result.append("\t\t\tPid   Priority Ctrl Locked client server\n");
7306    for (size_t i = 0; i < mHandles.size(); ++i) {
7307        sp<EffectHandle> handle = mHandles[i].promote();
7308        if (handle != 0) {
7309            handle->dump(buffer, SIZE);
7310            result.append(buffer);
7311        }
7312    }
7313
7314    result.append("\n");
7315
7316    write(fd, result.string(), result.length());
7317
7318    if (locked) {
7319        mLock.unlock();
7320    }
7321
7322    return NO_ERROR;
7323}
7324
7325// ----------------------------------------------------------------------------
7326//  EffectHandle implementation
7327// ----------------------------------------------------------------------------
7328
7329#undef LOG_TAG
7330#define LOG_TAG "AudioFlinger::EffectHandle"
7331
7332AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
7333                                        const sp<AudioFlinger::Client>& client,
7334                                        const sp<IEffectClient>& effectClient,
7335                                        int32_t priority)
7336    : BnEffect(),
7337    mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
7338    mPriority(priority), mHasControl(false), mEnabled(false)
7339{
7340    ALOGV("constructor %p", this);
7341
7342    if (client == 0) {
7343        return;
7344    }
7345    int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
7346    mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
7347    if (mCblkMemory != 0) {
7348        mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
7349
7350        if (mCblk != NULL) {
7351            new(mCblk) effect_param_cblk_t();
7352            mBuffer = (uint8_t *)mCblk + bufOffset;
7353        }
7354    } else {
7355        ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE + sizeof(effect_param_cblk_t));
7356        return;
7357    }
7358}
7359
7360AudioFlinger::EffectHandle::~EffectHandle()
7361{
7362    ALOGV("Destructor %p", this);
7363    disconnect(false);
7364    ALOGV("Destructor DONE %p", this);
7365}
7366
7367status_t AudioFlinger::EffectHandle::enable()
7368{
7369    ALOGV("enable %p", this);
7370    if (!mHasControl) return INVALID_OPERATION;
7371    if (mEffect == 0) return DEAD_OBJECT;
7372
7373    if (mEnabled) {
7374        return NO_ERROR;
7375    }
7376
7377    mEnabled = true;
7378
7379    sp<ThreadBase> thread = mEffect->thread().promote();
7380    if (thread != 0) {
7381        thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
7382    }
7383
7384    // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
7385    if (mEffect->suspended()) {
7386        return NO_ERROR;
7387    }
7388
7389    status_t status = mEffect->setEnabled(true);
7390    if (status != NO_ERROR) {
7391        if (thread != 0) {
7392            thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
7393        }
7394        mEnabled = false;
7395    }
7396    return status;
7397}
7398
7399status_t AudioFlinger::EffectHandle::disable()
7400{
7401    ALOGV("disable %p", this);
7402    if (!mHasControl) return INVALID_OPERATION;
7403    if (mEffect == 0) return DEAD_OBJECT;
7404
7405    if (!mEnabled) {
7406        return NO_ERROR;
7407    }
7408    mEnabled = false;
7409
7410    if (mEffect->suspended()) {
7411        return NO_ERROR;
7412    }
7413
7414    status_t status = mEffect->setEnabled(false);
7415
7416    sp<ThreadBase> thread = mEffect->thread().promote();
7417    if (thread != 0) {
7418        thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
7419    }
7420
7421    return status;
7422}
7423
7424void AudioFlinger::EffectHandle::disconnect()
7425{
7426    disconnect(true);
7427}
7428
7429void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
7430{
7431    ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
7432    if (mEffect == 0) {
7433        return;
7434    }
7435    mEffect->disconnect(this, unpinIfLast);
7436
7437    if (mHasControl && mEnabled) {
7438        sp<ThreadBase> thread = mEffect->thread().promote();
7439        if (thread != 0) {
7440            thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
7441        }
7442    }
7443
7444    // release sp on module => module destructor can be called now
7445    mEffect.clear();
7446    if (mClient != 0) {
7447        if (mCblk != NULL) {
7448            // unlike ~TrackBase(), mCblk is never a local new, so don't delete
7449            mCblk->~effect_param_cblk_t();   // destroy our shared-structure.
7450        }
7451        mCblkMemory.clear();    // free the shared memory before releasing the heap it belongs to
7452        // Client destructor must run with AudioFlinger mutex locked
7453        Mutex::Autolock _l(mClient->audioFlinger()->mLock);
7454        mClient.clear();
7455    }
7456}
7457
7458status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
7459                                             uint32_t cmdSize,
7460                                             void *pCmdData,
7461                                             uint32_t *replySize,
7462                                             void *pReplyData)
7463{
7464//    ALOGV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
7465//              cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
7466
7467    // only get parameter command is permitted for applications not controlling the effect
7468    if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
7469        return INVALID_OPERATION;
7470    }
7471    if (mEffect == 0) return DEAD_OBJECT;
7472    if (mClient == 0) return INVALID_OPERATION;
7473
7474    // handle commands that are not forwarded transparently to effect engine
7475    if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
7476        // No need to trylock() here as this function is executed in the binder thread serving a particular client process:
7477        // no risk to block the whole media server process or mixer threads is we are stuck here
7478        Mutex::Autolock _l(mCblk->lock);
7479        if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
7480            mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
7481            mCblk->serverIndex = 0;
7482            mCblk->clientIndex = 0;
7483            return BAD_VALUE;
7484        }
7485        status_t status = NO_ERROR;
7486        while (mCblk->serverIndex < mCblk->clientIndex) {
7487            int reply;
7488            uint32_t rsize = sizeof(int);
7489            int *p = (int *)(mBuffer + mCblk->serverIndex);
7490            int size = *p++;
7491            if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
7492                ALOGW("command(): invalid parameter block size");
7493                break;
7494            }
7495            effect_param_t *param = (effect_param_t *)p;
7496            if (param->psize == 0 || param->vsize == 0) {
7497                ALOGW("command(): null parameter or value size");
7498                mCblk->serverIndex += size;
7499                continue;
7500            }
7501            uint32_t psize = sizeof(effect_param_t) +
7502                             ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
7503                             param->vsize;
7504            status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
7505                                            psize,
7506                                            p,
7507                                            &rsize,
7508                                            &reply);
7509            // stop at first error encountered
7510            if (ret != NO_ERROR) {
7511                status = ret;
7512                *(int *)pReplyData = reply;
7513                break;
7514            } else if (reply != NO_ERROR) {
7515                *(int *)pReplyData = reply;
7516                break;
7517            }
7518            mCblk->serverIndex += size;
7519        }
7520        mCblk->serverIndex = 0;
7521        mCblk->clientIndex = 0;
7522        return status;
7523    } else if (cmdCode == EFFECT_CMD_ENABLE) {
7524        *(int *)pReplyData = NO_ERROR;
7525        return enable();
7526    } else if (cmdCode == EFFECT_CMD_DISABLE) {
7527        *(int *)pReplyData = NO_ERROR;
7528        return disable();
7529    }
7530
7531    return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
7532}
7533
7534void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
7535{
7536    ALOGV("setControl %p control %d", this, hasControl);
7537
7538    mHasControl = hasControl;
7539    mEnabled = enabled;
7540
7541    if (signal && mEffectClient != 0) {
7542        mEffectClient->controlStatusChanged(hasControl);
7543    }
7544}
7545
7546void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
7547                                                 uint32_t cmdSize,
7548                                                 void *pCmdData,
7549                                                 uint32_t replySize,
7550                                                 void *pReplyData)
7551{
7552    if (mEffectClient != 0) {
7553        mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
7554    }
7555}
7556
7557
7558
7559void AudioFlinger::EffectHandle::setEnabled(bool enabled)
7560{
7561    if (mEffectClient != 0) {
7562        mEffectClient->enableStatusChanged(enabled);
7563    }
7564}
7565
7566status_t AudioFlinger::EffectHandle::onTransact(
7567    uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
7568{
7569    return BnEffect::onTransact(code, data, reply, flags);
7570}
7571
7572
7573void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
7574{
7575    bool locked = mCblk != NULL && tryLock(mCblk->lock);
7576
7577    snprintf(buffer, size, "\t\t\t%05d %05d    %01u    %01u      %05u  %05u\n",
7578            (mClient == 0) ? getpid_cached : mClient->pid(),
7579            mPriority,
7580            mHasControl,
7581            !locked,
7582            mCblk ? mCblk->clientIndex : 0,
7583            mCblk ? mCblk->serverIndex : 0
7584            );
7585
7586    if (locked) {
7587        mCblk->lock.unlock();
7588    }
7589}
7590
7591#undef LOG_TAG
7592#define LOG_TAG "AudioFlinger::EffectChain"
7593
7594AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
7595                                        int sessionId)
7596    : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
7597      mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
7598      mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
7599{
7600    mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
7601    if (thread == NULL) {
7602        return;
7603    }
7604    mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
7605                                    thread->frameCount();
7606}
7607
7608AudioFlinger::EffectChain::~EffectChain()
7609{
7610    if (mOwnInBuffer) {
7611        delete mInBuffer;
7612    }
7613
7614}
7615
7616// getEffectFromDesc_l() must be called with ThreadBase::mLock held
7617sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(effect_descriptor_t *descriptor)
7618{
7619    size_t size = mEffects.size();
7620
7621    for (size_t i = 0; i < size; i++) {
7622        if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
7623            return mEffects[i];
7624        }
7625    }
7626    return 0;
7627}
7628
7629// getEffectFromId_l() must be called with ThreadBase::mLock held
7630sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
7631{
7632    size_t size = mEffects.size();
7633
7634    for (size_t i = 0; i < size; i++) {
7635        // by convention, return first effect if id provided is 0 (0 is never a valid id)
7636        if (id == 0 || mEffects[i]->id() == id) {
7637            return mEffects[i];
7638        }
7639    }
7640    return 0;
7641}
7642
7643// getEffectFromType_l() must be called with ThreadBase::mLock held
7644sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
7645        const effect_uuid_t *type)
7646{
7647    size_t size = mEffects.size();
7648
7649    for (size_t i = 0; i < size; i++) {
7650        if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
7651            return mEffects[i];
7652        }
7653    }
7654    return 0;
7655}
7656
7657// Must be called with EffectChain::mLock locked
7658void AudioFlinger::EffectChain::process_l()
7659{
7660    sp<ThreadBase> thread = mThread.promote();
7661    if (thread == 0) {
7662        ALOGW("process_l(): cannot promote mixer thread");
7663        return;
7664    }
7665    bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
7666            (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
7667    // always process effects unless no more tracks are on the session and the effect tail
7668    // has been rendered
7669    bool doProcess = true;
7670    if (!isGlobalSession) {
7671        bool tracksOnSession = (trackCnt() != 0);
7672
7673        if (!tracksOnSession && mTailBufferCount == 0) {
7674            doProcess = false;
7675        }
7676
7677        if (activeTrackCnt() == 0) {
7678            // if no track is active and the effect tail has not been rendered,
7679            // the input buffer must be cleared here as the mixer process will not do it
7680            if (tracksOnSession || mTailBufferCount > 0) {
7681                size_t numSamples = thread->frameCount() * thread->channelCount();
7682                memset(mInBuffer, 0, numSamples * sizeof(int16_t));
7683                if (mTailBufferCount > 0) {
7684                    mTailBufferCount--;
7685                }
7686            }
7687        }
7688    }
7689
7690    size_t size = mEffects.size();
7691    if (doProcess) {
7692        for (size_t i = 0; i < size; i++) {
7693            mEffects[i]->process();
7694        }
7695    }
7696    for (size_t i = 0; i < size; i++) {
7697        mEffects[i]->updateState();
7698    }
7699}
7700
7701// addEffect_l() must be called with PlaybackThread::mLock held
7702status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
7703{
7704    effect_descriptor_t desc = effect->desc();
7705    uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
7706
7707    Mutex::Autolock _l(mLock);
7708    effect->setChain(this);
7709    sp<ThreadBase> thread = mThread.promote();
7710    if (thread == 0) {
7711        return NO_INIT;
7712    }
7713    effect->setThread(thread);
7714
7715    if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7716        // Auxiliary effects are inserted at the beginning of mEffects vector as
7717        // they are processed first and accumulated in chain input buffer
7718        mEffects.insertAt(effect, 0);
7719
7720        // the input buffer for auxiliary effect contains mono samples in
7721        // 32 bit format. This is to avoid saturation in AudoMixer
7722        // accumulation stage. Saturation is done in EffectModule::process() before
7723        // calling the process in effect engine
7724        size_t numSamples = thread->frameCount();
7725        int32_t *buffer = new int32_t[numSamples];
7726        memset(buffer, 0, numSamples * sizeof(int32_t));
7727        effect->setInBuffer((int16_t *)buffer);
7728        // auxiliary effects output samples to chain input buffer for further processing
7729        // by insert effects
7730        effect->setOutBuffer(mInBuffer);
7731    } else {
7732        // Insert effects are inserted at the end of mEffects vector as they are processed
7733        //  after track and auxiliary effects.
7734        // Insert effect order as a function of indicated preference:
7735        //  if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
7736        //  another effect is present
7737        //  else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
7738        //  last effect claiming first position
7739        //  else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
7740        //  first effect claiming last position
7741        //  else if EFFECT_FLAG_INSERT_ANY insert after first or before last
7742        // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
7743        // already present
7744
7745        size_t size = mEffects.size();
7746        size_t idx_insert = size;
7747        ssize_t idx_insert_first = -1;
7748        ssize_t idx_insert_last = -1;
7749
7750        for (size_t i = 0; i < size; i++) {
7751            effect_descriptor_t d = mEffects[i]->desc();
7752            uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
7753            uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
7754            if (iMode == EFFECT_FLAG_TYPE_INSERT) {
7755                // check invalid effect chaining combinations
7756                if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
7757                    iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
7758                    ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s", desc.name, d.name);
7759                    return INVALID_OPERATION;
7760                }
7761                // remember position of first insert effect and by default
7762                // select this as insert position for new effect
7763                if (idx_insert == size) {
7764                    idx_insert = i;
7765                }
7766                // remember position of last insert effect claiming
7767                // first position
7768                if (iPref == EFFECT_FLAG_INSERT_FIRST) {
7769                    idx_insert_first = i;
7770                }
7771                // remember position of first insert effect claiming
7772                // last position
7773                if (iPref == EFFECT_FLAG_INSERT_LAST &&
7774                    idx_insert_last == -1) {
7775                    idx_insert_last = i;
7776                }
7777            }
7778        }
7779
7780        // modify idx_insert from first position if needed
7781        if (insertPref == EFFECT_FLAG_INSERT_LAST) {
7782            if (idx_insert_last != -1) {
7783                idx_insert = idx_insert_last;
7784            } else {
7785                idx_insert = size;
7786            }
7787        } else {
7788            if (idx_insert_first != -1) {
7789                idx_insert = idx_insert_first + 1;
7790            }
7791        }
7792
7793        // always read samples from chain input buffer
7794        effect->setInBuffer(mInBuffer);
7795
7796        // if last effect in the chain, output samples to chain
7797        // output buffer, otherwise to chain input buffer
7798        if (idx_insert == size) {
7799            if (idx_insert != 0) {
7800                mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
7801                mEffects[idx_insert-1]->configure();
7802            }
7803            effect->setOutBuffer(mOutBuffer);
7804        } else {
7805            effect->setOutBuffer(mInBuffer);
7806        }
7807        mEffects.insertAt(effect, idx_insert);
7808
7809        ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this, idx_insert);
7810    }
7811    effect->configure();
7812    return NO_ERROR;
7813}
7814
7815// removeEffect_l() must be called with PlaybackThread::mLock held
7816size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
7817{
7818    Mutex::Autolock _l(mLock);
7819    size_t size = mEffects.size();
7820    uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
7821
7822    for (size_t i = 0; i < size; i++) {
7823        if (effect == mEffects[i]) {
7824            // calling stop here will remove pre-processing effect from the audio HAL.
7825            // This is safe as we hold the EffectChain mutex which guarantees that we are not in
7826            // the middle of a read from audio HAL
7827            if (mEffects[i]->state() == EffectModule::ACTIVE ||
7828                    mEffects[i]->state() == EffectModule::STOPPING) {
7829                mEffects[i]->stop();
7830            }
7831            if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
7832                delete[] effect->inBuffer();
7833            } else {
7834                if (i == size - 1 && i != 0) {
7835                    mEffects[i - 1]->setOutBuffer(mOutBuffer);
7836                    mEffects[i - 1]->configure();
7837                }
7838            }
7839            mEffects.removeAt(i);
7840            ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(), this, i);
7841            break;
7842        }
7843    }
7844
7845    return mEffects.size();
7846}
7847
7848// setDevice_l() must be called with PlaybackThread::mLock held
7849void AudioFlinger::EffectChain::setDevice_l(uint32_t device)
7850{
7851    size_t size = mEffects.size();
7852    for (size_t i = 0; i < size; i++) {
7853        mEffects[i]->setDevice(device);
7854    }
7855}
7856
7857// setMode_l() must be called with PlaybackThread::mLock held
7858void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
7859{
7860    size_t size = mEffects.size();
7861    for (size_t i = 0; i < size; i++) {
7862        mEffects[i]->setMode(mode);
7863    }
7864}
7865
7866// setVolume_l() must be called with PlaybackThread::mLock held
7867bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
7868{
7869    uint32_t newLeft = *left;
7870    uint32_t newRight = *right;
7871    bool hasControl = false;
7872    int ctrlIdx = -1;
7873    size_t size = mEffects.size();
7874
7875    // first update volume controller
7876    for (size_t i = size; i > 0; i--) {
7877        if (mEffects[i - 1]->isProcessEnabled() &&
7878            (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
7879            ctrlIdx = i - 1;
7880            hasControl = true;
7881            break;
7882        }
7883    }
7884
7885    if (ctrlIdx == mVolumeCtrlIdx && *left == mLeftVolume && *right == mRightVolume) {
7886        if (hasControl) {
7887            *left = mNewLeftVolume;
7888            *right = mNewRightVolume;
7889        }
7890        return hasControl;
7891    }
7892
7893    mVolumeCtrlIdx = ctrlIdx;
7894    mLeftVolume = newLeft;
7895    mRightVolume = newRight;
7896
7897    // second get volume update from volume controller
7898    if (ctrlIdx >= 0) {
7899        mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
7900        mNewLeftVolume = newLeft;
7901        mNewRightVolume = newRight;
7902    }
7903    // then indicate volume to all other effects in chain.
7904    // Pass altered volume to effects before volume controller
7905    // and requested volume to effects after controller
7906    uint32_t lVol = newLeft;
7907    uint32_t rVol = newRight;
7908
7909    for (size_t i = 0; i < size; i++) {
7910        if ((int)i == ctrlIdx) continue;
7911        // this also works for ctrlIdx == -1 when there is no volume controller
7912        if ((int)i > ctrlIdx) {
7913            lVol = *left;
7914            rVol = *right;
7915        }
7916        mEffects[i]->setVolume(&lVol, &rVol, false);
7917    }
7918    *left = newLeft;
7919    *right = newRight;
7920
7921    return hasControl;
7922}
7923
7924status_t AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
7925{
7926    const size_t SIZE = 256;
7927    char buffer[SIZE];
7928    String8 result;
7929
7930    snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
7931    result.append(buffer);
7932
7933    bool locked = tryLock(mLock);
7934    // failed to lock - AudioFlinger is probably deadlocked
7935    if (!locked) {
7936        result.append("\tCould not lock mutex:\n");
7937    }
7938
7939    result.append("\tNum fx In buffer   Out buffer   Active tracks:\n");
7940    snprintf(buffer, SIZE, "\t%02d     0x%08x  0x%08x   %d\n",
7941            mEffects.size(),
7942            (uint32_t)mInBuffer,
7943            (uint32_t)mOutBuffer,
7944            mActiveTrackCnt);
7945    result.append(buffer);
7946    write(fd, result.string(), result.size());
7947
7948    for (size_t i = 0; i < mEffects.size(); ++i) {
7949        sp<EffectModule> effect = mEffects[i];
7950        if (effect != 0) {
7951            effect->dump(fd, args);
7952        }
7953    }
7954
7955    if (locked) {
7956        mLock.unlock();
7957    }
7958
7959    return NO_ERROR;
7960}
7961
7962// must be called with ThreadBase::mLock held
7963void AudioFlinger::EffectChain::setEffectSuspended_l(
7964        const effect_uuid_t *type, bool suspend)
7965{
7966    sp<SuspendedEffectDesc> desc;
7967    // use effect type UUID timelow as key as there is no real risk of identical
7968    // timeLow fields among effect type UUIDs.
7969    ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
7970    if (suspend) {
7971        if (index >= 0) {
7972            desc = mSuspendedEffects.valueAt(index);
7973        } else {
7974            desc = new SuspendedEffectDesc();
7975            memcpy(&desc->mType, type, sizeof(effect_uuid_t));
7976            mSuspendedEffects.add(type->timeLow, desc);
7977            ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
7978        }
7979        if (desc->mRefCount++ == 0) {
7980            sp<EffectModule> effect = getEffectIfEnabled(type);
7981            if (effect != 0) {
7982                desc->mEffect = effect;
7983                effect->setSuspended(true);
7984                effect->setEnabled(false);
7985            }
7986        }
7987    } else {
7988        if (index < 0) {
7989            return;
7990        }
7991        desc = mSuspendedEffects.valueAt(index);
7992        if (desc->mRefCount <= 0) {
7993            ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
7994            desc->mRefCount = 1;
7995        }
7996        if (--desc->mRefCount == 0) {
7997            ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
7998            if (desc->mEffect != 0) {
7999                sp<EffectModule> effect = desc->mEffect.promote();
8000                if (effect != 0) {
8001                    effect->setSuspended(false);
8002                    sp<EffectHandle> handle = effect->controlHandle();
8003                    if (handle != 0) {
8004                        effect->setEnabled(handle->enabled());
8005                    }
8006                }
8007                desc->mEffect.clear();
8008            }
8009            mSuspendedEffects.removeItemsAt(index);
8010        }
8011    }
8012}
8013
8014// must be called with ThreadBase::mLock held
8015void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
8016{
8017    sp<SuspendedEffectDesc> desc;
8018
8019    ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
8020    if (suspend) {
8021        if (index >= 0) {
8022            desc = mSuspendedEffects.valueAt(index);
8023        } else {
8024            desc = new SuspendedEffectDesc();
8025            mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
8026            ALOGV("setEffectSuspendedAll_l() add entry for 0");
8027        }
8028        if (desc->mRefCount++ == 0) {
8029            Vector< sp<EffectModule> > effects;
8030            getSuspendEligibleEffects(effects);
8031            for (size_t i = 0; i < effects.size(); i++) {
8032                setEffectSuspended_l(&effects[i]->desc().type, true);
8033            }
8034        }
8035    } else {
8036        if (index < 0) {
8037            return;
8038        }
8039        desc = mSuspendedEffects.valueAt(index);
8040        if (desc->mRefCount <= 0) {
8041            ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
8042            desc->mRefCount = 1;
8043        }
8044        if (--desc->mRefCount == 0) {
8045            Vector<const effect_uuid_t *> types;
8046            for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
8047                if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
8048                    continue;
8049                }
8050                types.add(&mSuspendedEffects.valueAt(i)->mType);
8051            }
8052            for (size_t i = 0; i < types.size(); i++) {
8053                setEffectSuspended_l(types[i], false);
8054            }
8055            ALOGV("setEffectSuspendedAll_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
8056            mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
8057        }
8058    }
8059}
8060
8061
8062// The volume effect is used for automated tests only
8063#ifndef OPENSL_ES_H_
8064static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
8065                                            { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
8066const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
8067#endif //OPENSL_ES_H_
8068
8069bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
8070{
8071    // auxiliary effects and visualizer are never suspended on output mix
8072    if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
8073        (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
8074         (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
8075         (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
8076        return false;
8077    }
8078    return true;
8079}
8080
8081void AudioFlinger::EffectChain::getSuspendEligibleEffects(Vector< sp<AudioFlinger::EffectModule> > &effects)
8082{
8083    effects.clear();
8084    for (size_t i = 0; i < mEffects.size(); i++) {
8085        if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
8086            effects.add(mEffects[i]);
8087        }
8088    }
8089}
8090
8091sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
8092                                                            const effect_uuid_t *type)
8093{
8094    sp<EffectModule> effect = getEffectFromType_l(type);
8095    return effect != 0 && effect->isEnabled() ? effect : 0;
8096}
8097
8098void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
8099                                                            bool enabled)
8100{
8101    ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
8102    if (enabled) {
8103        if (index < 0) {
8104            // if the effect is not suspend check if all effects are suspended
8105            index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
8106            if (index < 0) {
8107                return;
8108            }
8109            if (!isEffectEligibleForSuspend(effect->desc())) {
8110                return;
8111            }
8112            setEffectSuspended_l(&effect->desc().type, enabled);
8113            index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
8114            if (index < 0) {
8115                ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
8116                return;
8117            }
8118        }
8119        ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
8120            effect->desc().type.timeLow);
8121        sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
8122        // if effect is requested to suspended but was not yet enabled, supend it now.
8123        if (desc->mEffect == 0) {
8124            desc->mEffect = effect;
8125            effect->setEnabled(false);
8126            effect->setSuspended(true);
8127        }
8128    } else {
8129        if (index < 0) {
8130            return;
8131        }
8132        ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
8133            effect->desc().type.timeLow);
8134        sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
8135        desc->mEffect.clear();
8136        effect->setSuspended(false);
8137    }
8138}
8139
8140#undef LOG_TAG
8141#define LOG_TAG "AudioFlinger"
8142
8143// ----------------------------------------------------------------------------
8144
8145status_t AudioFlinger::onTransact(
8146        uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
8147{
8148    return BnAudioFlinger::onTransact(code, data, reply, flags);
8149}
8150
8151}; // namespace android
8152