Threads.h revision d8365c54d049aade9e02ccae722f311f846cad9a
181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent/*
281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Copyright 2012, The Android Open Source Project
481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Licensed under the Apache License, Version 2.0 (the "License");
681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** you may not use this file except in compliance with the License.
781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** You may obtain a copy of the License at
881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**     http://www.apache.org/licenses/LICENSE-2.0
1081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent**
1181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** Unless required by applicable law or agreed to in writing, software
1281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** distributed under the License is distributed on an "AS IS" BASIS,
1381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** See the License for the specific language governing permissions and
1581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent** limitations under the License.
1681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent*/
1781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifndef INCLUDING_FROM_AUDIOFLINGER_H
1981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    #error This header file should only be included from AudioFlinger.h
2081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
2181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass ThreadBase : public Thread {
2381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
2481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "TrackBase.h"
2681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    enum type_t {
2881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        MIXER,              // Thread class is MixerThread
2981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        DIRECT,             // Thread class is DirectOutputThread
3081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        DUPLICATING,        // Thread class is DuplicatingThread
31bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        RECORD,             // Thread class is RecordThread
326acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent        OFFLOAD,            // Thread class is OffloadThread
336acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent        MMAP                // control thread for MMAP stream
341bfe09a0b1755a79abd32b41c0dd433b88fc260cGlenn Kasten        // If you add any values here, also update ThreadBase::threadTypeToString()
3581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
3681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3797b7b75b6a31330e213bdb96ccc60916218ad903Glenn Kasten    static const char *threadTypeToString(type_t type);
3897b7b75b6a31330e213bdb96ccc60916218ad903Glenn Kasten
3981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
4072e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                audio_devices_t outDevice, audio_devices_t inDevice, type_t type,
4172e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                bool systemReady);
4281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~ThreadBase();
4381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
44cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten    virtual status_t    readyToRun();
45cf04c2cb8e031acc03c1c91cb1ccab15098c89b6Glenn Kasten
4681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void dumpBase(int fd, const Vector<String16>& args);
4781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void dumpEffectChains(int fd, const Vector<String16>& args);
4881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void clearPowerManager();
5081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // base for record and playback
5281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    enum {
5381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        CFG_EVENT_IO,
541035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        CFG_EVENT_PRIO,
551035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        CFG_EVENT_SET_PARAMETER,
561c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        CFG_EVENT_CREATE_AUDIO_PATCH,
571c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        CFG_EVENT_RELEASE_AUDIO_PATCH,
5881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
5981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
601035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class ConfigEventData: public RefBase {
611035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    public:
621035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        virtual ~ConfigEventData() {}
631035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
641035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        virtual  void dump(char *buffer, size_t size) = 0;
651035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    protected:
661035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        ConfigEventData() {}
671035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    };
681035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
691035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // Config event sequence by client if status needed (e.g binder thread calling setParameters()):
701035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //  1. create SetParameterConfigEvent. This sets mWaitStatus in config event
711035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //  2. Lock mLock
721035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //  3. Call sendConfigEvent_l(): Append to mConfigEvents and mWaitWorkCV.signal
731035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //  4. sendConfigEvent_l() reads status from event->mStatus;
741035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //  5. sendConfigEvent_l() returns status
751035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //  6. Unlock
761035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    //
771035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // Parameter sequence by server: threadLoop calling processConfigEvents_l():
781035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 1. Lock mLock
791035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 2. If there is an entry in mConfigEvents proceed ...
801035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 3. Read first entry in mConfigEvents
811035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 4. Remove first entry from mConfigEvents
821035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 5. Process
831035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 6. Set event->mStatus
841035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 7. event->mCond.signal
851035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    // 8. Unlock
861035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
871035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class ConfigEvent: public RefBase {
8881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    public:
8981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        virtual ~ConfigEvent() {}
9081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
911035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        void dump(char *buffer, size_t size) { mData->dump(buffer, size); }
9281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
931035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        const int mType; // event type e.g. CFG_EVENT_IO
941035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        Mutex mLock;     // mutex associated with mCond
951035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        Condition mCond; // condition for status return
961035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        status_t mStatus; // status communicated to sender
971035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        bool mWaitStatus; // true if sender is waiting for status
9872e3f39146fce4686bd96f11057c051bea376dfbEric Laurent        bool mRequiresSystemReady; // true if must wait for system ready to enter event queue
991035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        sp<ConfigEventData> mData;     // event specific parameter data
10081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1011035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    protected:
102e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit ConfigEvent(int type, bool requiresSystemReady = false) :
10372e3f39146fce4686bd96f11057c051bea376dfbEric Laurent            mType(type), mStatus(NO_ERROR), mWaitStatus(false),
10472e3f39146fce4686bd96f11057c051bea376dfbEric Laurent            mRequiresSystemReady(requiresSystemReady), mData(NULL) {}
10581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
10681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1071035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class IoConfigEventData : public ConfigEventData {
10881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    public:
1097c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent        IoConfigEventData(audio_io_config_event event, pid_t pid) :
1107c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent            mEvent(event), mPid(pid) {}
11181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
11281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        virtual  void dump(char *buffer, size_t size) {
11373e26b661af50be2c0a4ff6c9ac85f7347a8b235Eric Laurent            snprintf(buffer, size, "IO event: event %d\n", mEvent);
11481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
11581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
11673e26b661af50be2c0a4ff6c9ac85f7347a8b235Eric Laurent        const audio_io_config_event mEvent;
1177c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent        const pid_t                 mPid;
11881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
11981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1201035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class IoConfigEvent : public ConfigEvent {
12181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    public:
1227c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent        IoConfigEvent(audio_io_config_event event, pid_t pid) :
1231035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            ConfigEvent(CFG_EVENT_IO) {
1247c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent            mData = new IoConfigEventData(event, pid);
1251035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
1261035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        virtual ~IoConfigEvent() {}
1271035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    };
12881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1291035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class PrioConfigEventData : public ConfigEventData {
1301035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    public:
13183f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov        PrioConfigEventData(pid_t pid, pid_t tid, int32_t prio, bool forApp) :
13283f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov            mPid(pid), mTid(tid), mPrio(prio), mForApp(forApp) {}
13381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
13481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        virtual  void dump(char *buffer, size_t size) {
13583f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov            snprintf(buffer, size, "Prio event: pid %d, tid %d, prio %d, for app? %d\n",
13683f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov                    mPid, mTid, mPrio, mForApp);
13781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        }
13881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
13981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const pid_t mPid;
14081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const pid_t mTid;
14181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        const int32_t mPrio;
14283f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov        const bool mForApp;
14381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
14481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1451035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class PrioConfigEvent : public ConfigEvent {
1461035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    public:
14783f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov        PrioConfigEvent(pid_t pid, pid_t tid, int32_t prio, bool forApp) :
14872e3f39146fce4686bd96f11057c051bea376dfbEric Laurent            ConfigEvent(CFG_EVENT_PRIO, true) {
14983f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov            mData = new PrioConfigEventData(pid, tid, prio, forApp);
1501035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
1511035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        virtual ~PrioConfigEvent() {}
1521035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    };
1531035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
1541035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class SetParameterConfigEventData : public ConfigEventData {
1551035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    public:
156e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit SetParameterConfigEventData(String8 keyValuePairs) :
1571035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mKeyValuePairs(keyValuePairs) {}
1581035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
1591035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        virtual  void dump(char *buffer, size_t size) {
1601035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            snprintf(buffer, size, "KeyValue: %s\n", mKeyValuePairs.string());
1611035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
1621035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
1631035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        const String8 mKeyValuePairs;
1641035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    };
1651035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
1661035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    class SetParameterConfigEvent : public ConfigEvent {
1671035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    public:
168e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit SetParameterConfigEvent(String8 keyValuePairs) :
1691035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            ConfigEvent(CFG_EVENT_SET_PARAMETER) {
1701035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mData = new SetParameterConfigEventData(keyValuePairs);
1711035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent            mWaitStatus = true;
1721035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        }
1731035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent        virtual ~SetParameterConfigEvent() {}
1741035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    };
1751035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent
1761c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    class CreateAudioPatchConfigEventData : public ConfigEventData {
1771c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    public:
1781c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        CreateAudioPatchConfigEventData(const struct audio_patch patch,
1791c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                        audio_patch_handle_t handle) :
1801c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mPatch(patch), mHandle(handle) {}
1811c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
1821c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        virtual  void dump(char *buffer, size_t size) {
1831c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            snprintf(buffer, size, "Patch handle: %u\n", mHandle);
1841c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
1851c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
1861c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        const struct audio_patch mPatch;
1871c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_patch_handle_t mHandle;
1881c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    };
1891c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
1901c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    class CreateAudioPatchConfigEvent : public ConfigEvent {
1911c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    public:
1921c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        CreateAudioPatchConfigEvent(const struct audio_patch patch,
1931c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                    audio_patch_handle_t handle) :
1941c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            ConfigEvent(CFG_EVENT_CREATE_AUDIO_PATCH) {
1951c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mData = new CreateAudioPatchConfigEventData(patch, handle);
1961c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mWaitStatus = true;
1971c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
1981c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        virtual ~CreateAudioPatchConfigEvent() {}
1991c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    };
2001c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
2011c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    class ReleaseAudioPatchConfigEventData : public ConfigEventData {
2021c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    public:
203e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit ReleaseAudioPatchConfigEventData(const audio_patch_handle_t handle) :
2041c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mHandle(handle) {}
2051c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
2061c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        virtual  void dump(char *buffer, size_t size) {
2071c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            snprintf(buffer, size, "Patch handle: %u\n", mHandle);
2081c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
2091c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
2101c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        audio_patch_handle_t mHandle;
2111c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    };
2121c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
2131c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    class ReleaseAudioPatchConfigEvent : public ConfigEvent {
2141c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    public:
215e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit ReleaseAudioPatchConfigEvent(const audio_patch_handle_t handle) :
2161c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            ConfigEvent(CFG_EVENT_RELEASE_AUDIO_PATCH) {
2171c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mData = new ReleaseAudioPatchConfigEventData(handle);
2181c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent            mWaitStatus = true;
2191c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        }
2201c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent        virtual ~ReleaseAudioPatchConfigEvent() {}
2211c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    };
22281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    class PMDeathRecipient : public IBinder::DeathRecipient {
22481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    public:
225e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit    PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
22681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        virtual     ~PMDeathRecipient() {}
22781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
22881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // IBinder::DeathRecipient
22981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        virtual     void        binderDied(const wp<IBinder>& who);
23081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    private:
232bf49308851509d38dbf3f57d9682a819d9f983c9Mikhail Naganov        DISALLOW_COPY_AND_ASSIGN(PMDeathRecipient);
23381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        wp<ThreadBase> mThread;
23581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
23681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     status_t    initCheck() const = 0;
23881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
23981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // static externally-visible
24081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                type_t      type() const { return mType; }
241f6870aefc5e31d4220f3778c4e79ff34a61f48adEric Laurent                bool isDuplicating() const { return (mType == DUPLICATING); }
242f6870aefc5e31d4220f3778c4e79ff34a61f48adEric Laurent
24381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_io_handle_t id() const { return mId;}
24481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
24581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // dynamic externally-visible
24681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t    sampleRate() const { return mSampleRate; }
24781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_channel_mask_t channelMask() const { return mChannelMask; }
248463be250de73907965faa6a216c00312bf81e049Andy Hung                audio_format_t format() const { return mHALFormat; }
24983b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                uint32_t channelCount() const { return mChannelCount; }
25081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Called by AudioFlinger::frameCount(audio_io_handle_t output) and effects,
2519b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten                // and returns the [normal mix] buffer's frame count.
2529b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten    virtual     size_t      frameCount() const = 0;
2534a8308b11b92e608cdaf29f73f7919e75706f9a2Glenn Kasten
2544a8308b11b92e608cdaf29f73f7919e75706f9a2Glenn Kasten                // Return's the HAL's frame count i.e. fast mixer buffer size.
2554a8308b11b92e608cdaf29f73f7919e75706f9a2Glenn Kasten                size_t      frameCountHAL() const { return mFrameCount; }
2564a8308b11b92e608cdaf29f73f7919e75706f9a2Glenn Kasten
257bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                size_t      frameSize() const { return mFrameSize; }
25881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
25981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Should be "virtual status_t requestExitAndWait()" and override same
26081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
26181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        exit();
2621035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    virtual     bool        checkForNewParameter_l(const String8& keyValuePair,
2631035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                    status_t& status) = 0;
26481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     status_t    setParameters(const String8& keyValuePairs);
26581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     String8     getParameters(const String8& keys) = 0;
2667c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent    virtual     void        ioConfigChanged(audio_io_config_event event, pid_t pid = 0) = 0;
2671035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                // sendConfigEvent_l() must be called with ThreadBase::mLock held
2681035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                // Can temporarily release the lock if waiting for a reply from
2691035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                // processConfigEvents_l().
2701035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                status_t    sendConfigEvent_l(sp<ConfigEvent>& event);
2717c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent                void        sendIoConfigEvent(audio_io_config_event event, pid_t pid = 0);
2727c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent                void        sendIoConfigEvent_l(audio_io_config_event event, pid_t pid = 0);
27383f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov                void        sendPrioConfigEvent(pid_t pid, pid_t tid, int32_t prio, bool forApp);
27483f042776b131b149f803fff6ab184ae2c4d98cdMikhail Naganov                void        sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio, bool forApp);
2751035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                status_t    sendSetParameterConfigEvent_l(const String8& keyValuePair);
2761c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                status_t    sendCreateAudioPatchConfigEvent(const struct audio_patch *patch,
2771c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                                            audio_patch_handle_t *handle);
2781c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                status_t    sendReleaseAudioPatchConfigEvent(audio_patch_handle_t handle);
279021cf9634ab09c0753a40b7c9ef4ba603be5c3daEric Laurent                void        processConfigEvents_l();
2801035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    virtual     void        cacheParameters_l() = 0;
2811c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    virtual     status_t    createAudioPatch_l(const struct audio_patch *patch,
2821c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                               audio_patch_handle_t *handle) = 0;
2831c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    virtual     status_t    releaseAudioPatch_l(const audio_patch_handle_t handle) = 0;
28483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual     void        getAudioPortConfig(struct audio_port_config *config) = 0;
2851c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
28681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
28781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // see note at declaration of mStandby, mOutDevice and mInDevice
28881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                bool        standby() const { return mStandby; }
28981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_devices_t outDevice() const { return mOutDevice; }
29081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_devices_t inDevice() const { return mInDevice; }
291293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung                audio_devices_t getDevice() const { return isOutput() ? mOutDevice : mInDevice; }
292293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung
293293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung    virtual     bool        isOutput() const = 0;
29481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
2951dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov    virtual     sp<StreamHalInterface> stream() const = 0;
29681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
29781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<EffectHandle> createEffect_l(
29881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    const sp<AudioFlinger::Client>& client,
29981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    const sp<IEffectClient>& effectClient,
30081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    int32_t priority,
301d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                    audio_session_t sessionId,
30281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    effect_descriptor_t *desc,
30381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    int *enabled,
3040d5a2ed0a05a2bf337c68edb54f24c60e18032c1Eric Laurent                                    status_t *status /*non-NULL*/,
3050d5a2ed0a05a2bf337c68edb54f24c60e18032c1Eric Laurent                                    bool pinned);
30681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
30781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // return values for hasAudioSession (bit field)
30881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                enum effect_state {
30981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    EFFECT_SESSION = 0x1,   // the audio session corresponds to at least one
31081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                            // effect
3114c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                    TRACK_SESSION = 0x2,    // the audio session corresponds to at least one
31281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                            // track
3134c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                    FAST_SESSION = 0x4      // the audio session corresponds to at least one
3144c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                                            // fast track
31581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                };
31681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
31781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // get effect chain corresponding to session Id.
318d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                sp<EffectChain> getEffectChain(audio_session_t sessionId);
31981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // same as getEffectChain() but must be called with ThreadBase mutex locked
320d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                sp<EffectChain> getEffectChain_l(audio_session_t sessionId) const;
32181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // add an effect chain to the chain list (mEffectChains)
32281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
32381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // remove an effect chain from the chain list (mEffectChains)
32481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
32581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // lock all effect chains Mutexes. Must be called before releasing the
32681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // ThreadBase mutex before processing the mixer and effects. This guarantees the
32781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // integrity of the chains during the process.
32881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Also sets the parameter 'effectChains' to current value of mEffectChains.
32981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
33081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // unlock effect chains after process
33181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
332bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                // get a copy of mEffectChains vector
333bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                Vector< sp<EffectChain> > getEffectChains_l() const { return mEffectChains; };
33481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // set audio mode to all effect chains
33581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void setMode(audio_mode_t mode);
33681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // get effect module with corresponding ID on specified audio session
337d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                sp<AudioFlinger::EffectModule> getEffect(audio_session_t sessionId, int effectId);
338d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                sp<AudioFlinger::EffectModule> getEffect_l(audio_session_t sessionId, int effectId);
33981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // add and effect module. Also creates the effect chain is none exists for
34081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // the effects audio session
34181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                status_t addEffect_l(const sp< EffectModule>& effect);
34281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // remove and effect module. Also removes the effect chain is this was the last
34381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // effect
3440d5a2ed0a05a2bf337c68edb54f24c60e18032c1Eric Laurent                void removeEffect_l(const sp< EffectModule>& effect, bool release = false);
3450d5a2ed0a05a2bf337c68edb54f24c60e18032c1Eric Laurent                // disconnect an effect handle from module and destroy module if last handle
3460d5a2ed0a05a2bf337c68edb54f24c60e18032c1Eric Laurent                void disconnectEffectHandle(EffectHandle *handle, bool unpinIfLast);
34781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // detach all tracks connected to an auxiliary effect
3480f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten    virtual     void detachAuxEffect_l(int effectId __unused) {}
3494c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                // returns a combination of:
3504c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                // - EFFECT_SESSION if effects on this audio session exist in one chain
3514c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                // - TRACK_SESSION if tracks on this audio session exist
3524c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                // - FAST_SESSION if fast tracks on this audio session exist
3534c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent    virtual     uint32_t hasAudioSession_l(audio_session_t sessionId) const = 0;
3544c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                uint32_t hasAudioSession(audio_session_t sessionId) const {
3554c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                    Mutex::Autolock _l(mLock);
3564c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                    return hasAudioSession_l(sessionId);
3574c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                }
3584c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent
35981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // the value returned by default implementation is not important as the
36081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // strategy is only meaningful for PlaybackThread which implements this method
361d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                virtual uint32_t getStrategyForSession_l(audio_session_t sessionId __unused)
362d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                        { return 0; }
36381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
36481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // check if some effects must be suspended/restored when an effect is enabled
36581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // or disabled
36681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
36781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                 bool enabled,
368d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                                 audio_session_t sessionId =
369d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                                        AUDIO_SESSION_OUTPUT_MIX);
37081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
37181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                   bool enabled,
372d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                                   audio_session_t sessionId =
373d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                                        AUDIO_SESSION_OUTPUT_MIX);
37481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
37581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                virtual status_t    setSyncEvent(const sp<SyncEvent>& event) = 0;
37681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                virtual bool        isValidSyncEvent(const sp<SyncEvent>& event) const = 0;
37781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
378b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                // Return a reference to a per-thread heap which can be used to allocate IMemory
379b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                // objects that will be read-only to client processes, read/write to mediaserver,
380b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                // and shared by all client processes of the thread.
381b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                // The heap is per-thread rather than common across all threads, because
382b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                // clients can't be trusted not to modify the offset of the IMemory they receive.
383b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                // If a thread does not have such a heap, this method returns 0.
384b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten                virtual sp<MemoryDealer>    readOnlyHeap() const { return 0; }
38581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
3866181ffd90a436f333c43a7f812391eee2c35005aGlenn Kasten                virtual sp<IMemory> pipeMemory() const { return 0; }
3876181ffd90a436f333c43a7f812391eee2c35005aGlenn Kasten
38872e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                        void systemReady();
38972e3f39146fce4686bd96f11057c051bea376dfbEric Laurent
3904c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                // checkEffectCompatibility_l() must be called with ThreadBase::mLock held
3914c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                virtual status_t    checkEffectCompatibility_l(const effect_descriptor_t *desc,
3924c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                                                               audio_session_t sessionId) = 0;
3934c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent
3946acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                        void        broadcast_l();
3956acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
39681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mutable     Mutex                   mLock;
39781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
39881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
39981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
40081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // entry describing an effect being suspended in mSuspendedSessions keyed vector
40181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                class SuspendedSessionDesc : public RefBase {
40281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                public:
40381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    SuspendedSessionDesc() : mRefCount(0) {}
40481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
40581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    int mRefCount;          // number of active suspend requests
40681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    effect_uuid_t mType;    // effect type UUID
40781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                };
40881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
409dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                void        acquireWakeLock();
410dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                virtual void acquireWakeLock_l();
41181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        releaseWakeLock();
41281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        releaseWakeLock_l();
413d01b0f18491c355d808a57cb272404480e69618fAndy Hung                void        updateWakeLockUids_l(const SortedVector<uid_t> &uids);
414462fd2fa9eef642b0574aa7409de0bde3fec8d43Marco Nelissen                void        getPowerManager_l();
415d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent                // suspend or restore effects of the specified type (or all if type is NULL)
416d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent                // on a given session. The number of suspend requests is counted and restore
417d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent                // occurs when all suspend requests are cancelled.
41881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void setEffectSuspended_l(const effect_uuid_t *type,
41981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                          bool suspend,
420d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                          audio_session_t sessionId);
421d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent                // updated mSuspendedSessions when an effect is suspended or restored
42281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        updateSuspendedSessions_l(const effect_uuid_t *type,
42381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                      bool suspend,
424d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                                      audio_session_t sessionId);
42581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // check if some effects must be suspended when an effect chain is added
42681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
42781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
428014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath                String16 getWakeLockTag();
429014e7fa2e90827d911c37bb0ce4d2e10e14d0bb3Narayan Kamath
43081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        preExit() { }
4312ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung    virtual     void        setMasterMono_l(bool mono __unused) { }
4322ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung    virtual     bool        requireMonoBlend() { return false; }
43381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
43481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class AudioFlinger;      // for mEffectChains
43581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
43681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                const type_t            mType;
43781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
43881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Used by parameters, config events, addTrack_l, exit
43981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                Condition               mWaitWorkCV;
44081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
44181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                const sp<AudioFlinger>  mAudioFlinger;
4429b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten
443deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten                // updated by PlaybackThread::readOutputParameters_l() or
444deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten                // RecordThread::readInputParameters_l()
44581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t                mSampleRate;
44681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                size_t                  mFrameCount;       // output HAL, direct output, record
44781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_channel_mask_t    mChannelMask;
448f6ed423af92a56ef54bba23eba883b1f21448b54Glenn Kasten                uint32_t                mChannelCount;
44981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                size_t                  mFrameSize;
45097b7b75b6a31330e213bdb96ccc60916218ad903Glenn Kasten                // not HAL frame size, this is for output sink (to pipe to fast mixer)
451463be250de73907965faa6a216c00312bf81e049Andy Hung                audio_format_t          mFormat;           // Source format for Recording and
452463be250de73907965faa6a216c00312bf81e049Andy Hung                                                           // Sink format for Playback.
453463be250de73907965faa6a216c00312bf81e049Andy Hung                                                           // Sink format may be different than
454463be250de73907965faa6a216c00312bf81e049Andy Hung                                                           // HAL format if Fastmixer is used.
455463be250de73907965faa6a216c00312bf81e049Andy Hung                audio_format_t          mHALFormat;
45670949c47fbae3f836d15f040551d7631be3ed7c2Glenn Kasten                size_t                  mBufferSize;       // HAL buffer size for read() or write()
45781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
4581035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                Vector< sp<ConfigEvent> >     mConfigEvents;
45972e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                Vector< sp<ConfigEvent> >     mPendingConfigEvents; // events awaiting system ready
46081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
46181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // These fields are written and read by thread itself without lock or barrier,
4624944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                // and read by other threads without lock or barrier via standby(), outDevice()
46381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // and inDevice().
46481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // Because of the absence of a lock or barrier, any other thread that reads
46581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // these fields must use the information in isolation, or be prepared to deal
46681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // with possibility that it might be inconsistent with other information.
4674944acb7355b3aa25748fd25945a363a69d65444Glenn Kasten                bool                    mStandby;     // Whether thread is currently in standby.
46881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_devices_t         mOutDevice;   // output device
46981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_devices_t         mInDevice;    // input device
4707c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent                audio_devices_t         mPrevOutDevice;   // previous output device
471e8726fea8a53bf3474aa3c6deaf2f6c1f565e694Eric Laurent                audio_devices_t         mPrevInDevice;    // previous input device
472296fb13dd9b5e90d6a05cce897c3b1e7914a478aEric Laurent                struct audio_patch      mPatch;
473f59497bd3c190e087202043de5450ef06e92b27dGlenn Kasten                audio_source_t          mAudioSource;
47481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
47581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                const audio_io_handle_t mId;
47681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                Vector< sp<EffectChain> > mEffectChains;
47781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
478d7dca050c630bddbd73a6623271b34b4290460eeGlenn Kasten                static const int        kThreadNameLength = 16; // prctl(PR_SET_NAME) limit
479d7dca050c630bddbd73a6623271b34b4290460eeGlenn Kasten                char                    mThreadName[kThreadNameLength]; // guaranteed NUL-terminated
48081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<IPowerManager>       mPowerManager;
48181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<IBinder>             mWakeLockToken;
48281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                const sp<PMDeathRecipient> mDeathRecipient;
483d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                // list of suspended effects per session and per type. The first (outer) vector is
484d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                // keyed by session ID, the second (inner) by type UUID timeLow field
485d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent                // Updated by updateSuspendedSessions_l() only.
486d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                KeyedVector< audio_session_t, KeyedVector< int, sp<SuspendedSessionDesc> > >
48781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        mSuspendedSessions;
488ab7d72f0804fbb7e91ad9d2a16f826d97e20e5d0Glenn Kasten                static const size_t     kLogSize = 4 * 1024;
4899e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten                sp<NBLog::Writer>       mNBLogWriter;
49072e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                bool                    mSystemReady;
491818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung                ExtendedTimestamp       mTimestamp;
4926acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                // A condition that must be evaluated by the thread loop has changed and
4936acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                // we must not wait for async write callback in the thread loop before evaluating it
4946acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                bool                    mSignalPending;
495dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
496dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // ActiveTracks is a sorted vector of track type T representing the
497dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // active tracks of threadLoop() to be considered by the locked prepare portion.
498dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // ActiveTracks should be accessed with the ThreadBase lock held.
499dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                //
500dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // During processing and I/O, the threadLoop does not hold the lock;
501dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // hence it does not directly use ActiveTracks.  Care should be taken
502dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // to hold local strong references or defer removal of tracks
503dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // if the threadLoop may still be accessing those tracks due to mix, etc.
504dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                //
505dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                // This class updates power information appropriately.
506dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                //
507dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
508dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                template <typename T>
509dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                class ActiveTracks {
510dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                public:
511dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    ActiveTracks()
512dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        : mActiveTracksGeneration(0)
513dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        , mLastActiveTracksGeneration(0)
514dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    { }
515dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
516dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    ~ActiveTracks() {
517dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        ALOGW_IF(!mActiveTracks.isEmpty(),
518dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                                "ActiveTracks should be empty in destructor");
519dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
520dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // returns the last track added (even though it may have been
521dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // subsequently removed from ActiveTracks).
522dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    //
523dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // Used for DirectOutputThread to ensure a flush is called when transitioning
524dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // to a new track (even though it may be on the same session).
525dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // Used for OffloadThread to ensure that volume and mixer state is
526dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // taken from the latest track added.
527dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    //
528dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // The latest track is saved with a weak pointer to prevent keeping an
529dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // otherwise useless track alive. Thus the function will return nullptr
530dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // if the latest track has subsequently been removed and destroyed.
531dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    sp<T> getLatest() {
532dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return mLatestActiveTrack.promote();
533dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
534dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
535dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // SortedVector methods
536dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    ssize_t         add(const sp<T> &track);
537dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    ssize_t         remove(const sp<T> &track);
538dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    size_t          size() const {
539dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return mActiveTracks.size();
540dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
541dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    ssize_t         indexOf(const sp<T>& item) {
542dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return mActiveTracks.indexOf(item);
543dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
544dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    sp<T>           operator[](size_t index) const {
545dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return mActiveTracks[index];
546dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
547dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    typename SortedVector<sp<T>>::iterator begin() {
548dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return mActiveTracks.begin();
549dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
550dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    typename SortedVector<sp<T>>::iterator end() {
551dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return mActiveTracks.end();
552dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
553dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
554dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // Due to Binder recursion optimization, clear() and updatePowerState()
555dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // cannot be called from a Binder thread because they may call back into
556dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // the original calling process (system server) for BatteryNotifier
557dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // (which requires a Java environment that may not be present).
558dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // Hence, call clear() and updatePowerState() only from the
559dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // ThreadBase thread.
560dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    void            clear();
561dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    // periodically called in the threadLoop() to update power state uids.
562dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    void            updatePowerState(sp<ThreadBase> thread, bool force = false);
563dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
564dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                private:
565d01b0f18491c355d808a57cb272404480e69618fAndy Hung                    SortedVector<uid_t> getWakeLockUids() {
566d01b0f18491c355d808a57cb272404480e69618fAndy Hung                        SortedVector<uid_t> wakeLockUids;
567dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        for (const sp<T> &track : mActiveTracks) {
568dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                            wakeLockUids.add(track->uid());
569dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        }
570dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        return wakeLockUids; // moved by underlying SharedBuffer
571dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    }
572dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
573dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    std::map<uid_t, std::pair<ssize_t /* previous */, ssize_t /* current */>>
574dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                                        mBatteryCounter;
575dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    SortedVector<sp<T>> mActiveTracks;
576dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    int                 mActiveTracksGeneration;
577dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    int                 mLastActiveTracksGeneration;
578dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                    wp<T>               mLatestActiveTrack; // latest track added to ActiveTracks
579dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                };
580293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung
581293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung                SimpleLog mLocalLog;
58281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
58381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
5846acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentclass VolumeInterface {
5856acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent public:
5866acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
5876acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual ~VolumeInterface() {}
5886acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
5896acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual void        setMasterVolume(float value) = 0;
5906acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual void        setMasterMute(bool muted) = 0;
5916acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual void        setStreamVolume(audio_stream_type_t stream, float value) = 0;
5926acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual void        setStreamMute(audio_stream_type_t stream, bool muted) = 0;
5936acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual float       streamVolume(audio_stream_type_t stream) const = 0;
5946acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
5956acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent};
5966acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
59781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// --- PlaybackThread ---
5986acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentclass PlaybackThread : public ThreadBase, public StreamOutHalInterfaceCallback,
5996acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    public VolumeInterface {
60081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
60181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
60281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "PlaybackTracks.h"
60381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
60481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    enum mixer_state {
60581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        MIXER_IDLE,             // no active tracks
60681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        MIXER_TRACKS_ENABLED,   // at least one active track, but no track has any data ready
607bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        MIXER_TRACKS_READY,      // at least one active track, and at least one track has data
608bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        MIXER_DRAIN_TRACK,      // drain currently playing track
609bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent        MIXER_DRAIN_ALL,        // fully drain the hardware
61081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // standby mode does not have an enum value
61181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent        // suspend by audio policy manager is orthogonal to mixer state
61281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    };
61381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
614e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    // retry count before removing active track in case of underrun on offloaded thread:
615e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    // we need to make sure that AudioTrack client has enough time to send large buffers
616e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    //FIXME may be more appropriate if expressed in time units. Need to revise how underrun is
617e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    // handled for offloaded tracks
618e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    static const int8_t kMaxTrackRetriesOffload = 20;
619e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    static const int8_t kMaxTrackStartupRetriesOffload = 100;
620e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent    static const int8_t kMaxTrackStopRetriesOffload = 2;
621ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent    // 14 tracks max per client allows for 2 misbehaving application leaving 4 available tracks.
622ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent    static const uint32_t kMaxTracksPerUid = 14;
623e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent
6241bb9082596c9cac2995dc9b4465a7c6d5666d099rago    // Maximum delay (in nanoseconds) for upcoming buffers in suspend mode, otherwise
6251bb9082596c9cac2995dc9b4465a7c6d5666d099rago    // if delay is greater, the estimated time for timeLoopNextNs is reset.
6261bb9082596c9cac2995dc9b4465a7c6d5666d099rago    // This allows for catch-up to be done for small delays, while resetting the estimate
6271bb9082596c9cac2995dc9b4465a7c6d5666d099rago    // for initial conditions or large delays.
6281bb9082596c9cac2995dc9b4465a7c6d5666d099rago    static const nsecs_t kMaxNextBufferDelayNs = 100000000;
6291bb9082596c9cac2995dc9b4465a7c6d5666d099rago
63081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
631e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent                   audio_io_handle_t id, audio_devices_t device, type_t type, bool systemReady);
63281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~PlaybackThread();
63381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
63481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        dump(int fd, const Vector<String16>& args);
63581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
63681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Thread virtuals
63781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     bool        threadLoop();
63881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
63981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // RefBase
64081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        onFirstRef();
64181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6424c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent    virtual     status_t    checkEffectCompatibility_l(const effect_descriptor_t *desc,
6434c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                                                       audio_session_t sessionId);
6444c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent
64581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
64681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Code snippets that were lifted up out of threadLoop()
64781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_mix() = 0;
64881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_sleepTime() = 0;
649bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     ssize_t     threadLoop_write();
650bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     void        threadLoop_drain();
65181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_standby();
652bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     void        threadLoop_exit();
65381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
65481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
65581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // prepareTracks_l reads and writes mActiveTracks, and returns
65681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // the pending set of tracks to remove via Vector 'tracksToRemove'.  The caller
65781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // is responsible for clearing or destroying this Vector later on, when it
65881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // is safe to do so. That will drop the final ref count and destroy the tracks.
65981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
660bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent                void        removeTracks_l(const Vector< sp<Track> >& tracksToRemove);
661bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
6621dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov    // StreamOutHalInterfaceCallback implementation
6631dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov    virtual     void        onWriteReady();
6641dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov    virtual     void        onDrainReady();
6651dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov    virtual     void        onError();
6661dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov
6673b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent                void        resetWriteBlocked(uint32_t sequence);
6683b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent                void        resetDraining(uint32_t sequence);
669bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
670bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     bool        waitingAsyncCallback();
671bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     bool        waitingAsyncCallback_l();
672bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     bool        shouldStandby_l();
6734c6a433d74d5ae8b9bc0557207e3ced43bf34a25Haynes Mathew George    virtual     void        onAddNewTrack_l();
6744527b9ebc6a37b861f5a3bba68bcc63dc8d69adaHaynes Mathew George                void        onAsyncError(); // error reported by AsyncCallbackThread
67581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
67681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // ThreadBase virtuals
67781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        preExit();
67881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
679646679779a8f952980a5d4219ad9c6f93efc4b92Eric Laurent    virtual     bool        keepWakeLock() const { return true; }
680dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung    virtual     void        acquireWakeLock_l() {
681dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                                ThreadBase::acquireWakeLock_l();
682dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                                mActiveTracks.updatePowerState(this, true /* force */);
683dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                            }
684646679779a8f952980a5d4219ad9c6f93efc4b92Eric Laurent
68581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
68681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
68781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     status_t    initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
68881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
68981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // return estimated latency in milliseconds, as reported by HAL
69081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t    latency() const;
69181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // same, but lock must already be held
69281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t    latency_l() const;
69381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
6946acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                // VolumeInterface
6956acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setMasterVolume(float value);
6966acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setMasterMute(bool muted);
6976acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setStreamVolume(audio_stream_type_t stream, float value);
6986acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setStreamMute(audio_stream_type_t stream, bool muted);
6996acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     float       streamVolume(audio_stream_type_t stream) const;
70081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
70181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<Track>   createTrack_l(
70281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                const sp<AudioFlinger::Client>& client,
70381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_stream_type_t streamType,
70481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                uint32_t sampleRate,
70581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_format_t format,
70681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                audio_channel_mask_t channelMask,
70774935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten                                size_t *pFrameCount,
70881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                const sp<IMemory>& sharedBuffer,
709d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                                audio_session_t sessionId,
710050677873c10d4da308ac222f8533c96cca3207eEric Laurent                                audio_output_flags_t *flags,
71181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                pid_t tid,
7121f12a8ad958344c50733b948628ffa06db9c5bc6Andy Hung                                uid_t uid,
71320b9ef0b55c9150ae11057ab997ae61be2d496efEric Laurent                                status_t *status /*non-NULL*/,
71420b9ef0b55c9150ae11057ab997ae61be2d496efEric Laurent                                audio_port_handle_t portId);
71581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
71681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioStreamOut* getOutput() const;
71781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioStreamOut* clearOutput();
7181dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov                virtual sp<StreamHalInterface> stream() const;
71981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
72081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // a very large number of suspend() will eventually wraparound, but unlikely
72181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        suspend() { (void) android_atomic_inc(&mSuspended); }
72281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        restore()
72381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                {
72481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // if restore() is done without suspend(), get back into
72581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    // range so that the next suspend() will operate correctly
72681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    if (android_atomic_dec(&mSuspended) <= 0) {
72781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                        android_atomic_release_store(0, &mSuspended);
72881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                    }
72981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                }
73081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                bool        isSuspended() const
73181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                { return android_atomic_acquire_load(&mSuspended) > 0; }
73281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
73381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     String8     getParameters(const String8& keys);
7347c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent    virtual     void        ioConfigChanged(audio_io_config_event event, pid_t pid = 0);
735377b2ec9a2885f9b6405b07ba900a9e3f4349c38Kévin PETIT                status_t    getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
736010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                // FIXME rename mixBuffer() to sinkBuffer() and remove int16_t* dependency.
737010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                // Consider also removing and passing an explicit mMainBuffer initialization
738010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                // parameter to AF::PlaybackThread::Track::Track().
739010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                int16_t     *mixBuffer() const {
740010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung                    return reinterpret_cast<int16_t *>(mSinkBuffer); };
74181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
74281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void detachAuxEffect_l(int effectId);
743e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh                status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track>& track,
74481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        int EffectId);
745e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh                status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track>& track,
74681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                        int EffectId);
74781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
74881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
74981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
7504c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                virtual uint32_t hasAudioSession_l(audio_session_t sessionId) const;
751d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                virtual uint32_t getStrategyForSession_l(audio_session_t sessionId);
75281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
75381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
75481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                virtual status_t setSyncEvent(const sp<SyncEvent>& event);
75581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                virtual bool     isValidSyncEvent(const sp<SyncEvent>& event) const;
756fb1fdc9d6603aa228362e7349451f6455c9849c2Glenn Kasten
757fb1fdc9d6603aa228362e7349451f6455c9849c2Glenn Kasten                // called with AudioFlinger lock held
75813084621072ea2e4c34e2a9d79793c621d9bf005Eric Laurent                        bool     invalidateTracks_l(audio_stream_type_t streamType);
75905317d29b27e5fda654bea21b80d4423a03f49b3Haynes Mathew George                virtual void     invalidateTracks(audio_stream_type_t streamType);
76081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
7619b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten    virtual     size_t      frameCount() const { return mNormalFrameCount; }
7629b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten
76383b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                status_t    getTimestamp_l(AudioTimestamp& timestamp);
76483b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
76583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                void        addPatchTrack(const sp<PatchTrack>& track);
76683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent                void        deletePatchTrack(const sp<PatchTrack>& track);
76783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
76883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual     void        getAudioPortConfig(struct audio_port_config *config);
769accc147666bfd37fc8b4ef745f18a8c751555ec2Eric Laurent
77010cbff139360f3f642e0e3b3ccf2d463dbed22cfAndy Hung                // Return the asynchronous signal wait time.
77110cbff139360f3f642e0e3b3ccf2d463dbed22cfAndy Hung    virtual     int64_t     computeWaitTimeNs_l() const { return INT64_MAX; }
77210cbff139360f3f642e0e3b3ccf2d463dbed22cfAndy Hung
773293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung    virtual     bool        isOutput() const override { return true; }
774293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung
77581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
776deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten    // updated by readOutputParameters_l()
7779b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten    size_t                          mNormalFrameCount;  // normal mixer and effects
7789b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten
77908fb1743f80437c38b4094070d851ea7f6d485e5Andy Hung    bool                            mThreadThrottle;     // throttle the thread processing
78040eb1a1f8871909c272e72afaf7d5af84fea2412Andy Hung    uint32_t                        mThreadThrottleTimeMs; // throttle time for MIXER threads
78140eb1a1f8871909c272e72afaf7d5af84fea2412Andy Hung    uint32_t                        mThreadThrottleEndMs;  // notify once per throttling
78208fb1743f80437c38b4094070d851ea7f6d485e5Andy Hung    uint32_t                        mHalfBufferMs;       // half the buffer size in milliseconds
78308fb1743f80437c38b4094070d851ea7f6d485e5Andy Hung
784010a1a1a552cdaad362cea8a0333b8906402dbcbAndy Hung    void*                           mSinkBuffer;         // frame size aligned sink buffer
78581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
78698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // TODO:
78798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Rearrange the buffer info into a struct/class with
78898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // clear, copy, construction, destruction methods.
78998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    //
79098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // mSinkBuffer also has associated with it:
79198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    //
79298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // mSinkBufferSize: Sink Buffer Size
79398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // mFormat: Sink Buffer Format
79498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
79569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // Mixer Buffer (mMixerBuffer*)
79669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    //
79769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // In the case of floating point or multichannel data, which is not in the
79869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // sink format, it is required to accumulate in a higher precision or greater channel count
79969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // buffer before downmixing or data conversion to the sink buffer.
80069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
80169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // Set to "true" to enable the Mixer Buffer otherwise mixer output goes to sink buffer.
80269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    bool                            mMixerBufferEnabled;
80369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
80469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // Storage, 32 byte aligned (may make this alignment a requirement later).
80569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // Due to constraints on mNormalFrameCount, the buffer size is a multiple of 16 frames.
80669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    void*                           mMixerBuffer;
80769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
80869aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // Size of mMixerBuffer in bytes: mNormalFrameCount * #channels * sampsize.
80969aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    size_t                          mMixerBufferSize;
81069aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
81169aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // The audio format of mMixerBuffer. Set to AUDIO_FORMAT_PCM_(FLOAT|16_BIT) only.
81269aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    audio_format_t                  mMixerBufferFormat;
81369aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
81469aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // An internal flag set to true by MixerThread::prepareTracks_l()
81569aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    // when mMixerBuffer contains valid data after mixing.
81669aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung    bool                            mMixerBufferValid;
81769aed5f0f4a3be3996d1e78a0473e1a72c1547daAndy Hung
81898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Effects Buffer (mEffectsBuffer*)
81998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    //
82098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // In the case of effects data, which is not in the sink format,
82198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // it is required to accumulate in a different buffer before data conversion
82298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // to the sink buffer.
82398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
82498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Set to "true" to enable the Effects Buffer otherwise effects output goes to sink buffer.
82598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    bool                            mEffectBufferEnabled;
82698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
82798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Storage, 32 byte aligned (may make this alignment a requirement later).
82898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Due to constraints on mNormalFrameCount, the buffer size is a multiple of 16 frames.
82998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    void*                           mEffectBuffer;
83098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
83198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // Size of mEffectsBuffer in bytes: mNormalFrameCount * #channels * sampsize.
83298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    size_t                          mEffectBufferSize;
83398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
83498ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // The audio format of mEffectsBuffer. Set to AUDIO_FORMAT_PCM_16_BIT only.
83598ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    audio_format_t                  mEffectBufferFormat;
83698ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
83798ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // An internal flag set to true by MixerThread::prepareTracks_l()
83898ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // when mEffectsBuffer contains valid data after mixing.
83998ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    //
84098ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // When this is set, all mixer data is routed into the effects buffer
84198ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    // for any processing (including output processing).
84298ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung    bool                            mEffectBufferValid;
84398ef978df4e928f486d244c4d7f7ad9f13111e98Andy Hung
84481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // suspend count, > 0 means suspended.  While suspended, the thread continues to pull from
84581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // tracks and mix, but doesn't write to HAL.  A2DP and SCO HAL implementations can't handle
84681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // concurrent use of both of them, so Audio Policy Service suspends one of the threads to
84781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // workaround that restriction.
84881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // 'volatile' means accessed via atomic operations and no lock.
84981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    volatile int32_t                mSuspended;
85081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
851818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung    int64_t                         mBytesWritten;
852c54b1ffc92b8ad27608a8af21033d7cab33cb3a0Andy Hung    int64_t                         mFramesWritten; // not reset on standby
853238fa3deff26d7e4d9e81bd0a88c936f16226c4eAndy Hung    int64_t                         mSuspendedFrames; // not reset on standby
85481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
85581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mMasterMute is in both PlaybackThread and in AudioFlinger.  When a
85681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // PlaybackThread needs to find out if master-muted, it checks it's local
85781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // copy rather than the one in AudioFlinger.  This optimization saves a lock.
85881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                            mMasterMute;
85981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        setMasterMute_l(bool muted) { mMasterMute = muted; }
86081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
861dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung    ActiveTracks<Track>     mActiveTracks;
86281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
86381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Allocate a track name for a given channel mask.
86481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    //   Returns name >= 0 if successful, -1 on failure.
865ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent    virtual int             getTrackName_l(audio_channel_mask_t channelMask, audio_format_t format,
866ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent                                           audio_session_t sessionId, uid_t uid) = 0;
86781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void            deleteTrackName_l(int name) = 0;
86881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
86981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Time to sleep between cycles when:
87081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual uint32_t        activeSleepTimeUs() const;      // mixer state MIXER_TRACKS_ENABLED
87181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual uint32_t        idleSleepTimeUs() const = 0;    // mixer state MIXER_IDLE
87281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual uint32_t        suspendSleepTimeUs() const = 0; // audio policy manager suspended us
87381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // No sleep when mixer state == MIXER_TRACKS_READY; relies on audio HAL stream->write()
87481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // No sleep in standby mode; waits on a condition
87581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
87681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Code snippets that are temporarily lifted up out of threadLoop() until the merge
87781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        checkSilentMode_l();
87881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
87981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Non-trivial for DUPLICATING only
88081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        saveOutputTracks() { }
88181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        clearOutputTracks() { }
88281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
88381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Cache various calculated values, at threadLoop() entry and after a parameter change
88481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        cacheParameters_l();
88581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
88681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    correctLatency_l(uint32_t latency) const;
88781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
8881c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    virtual     status_t    createAudioPatch_l(const struct audio_patch *patch,
8891c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                   audio_patch_handle_t *handle);
8901c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    virtual     status_t    releaseAudioPatch_l(const audio_patch_handle_t handle);
8911c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent
8926fc2a7c81f62b1e21487ae37e11aae6241bc3eadPhil Burk                bool        usesHwAvSync() const { return (mType == DIRECT) && (mOutput != NULL)
8936fc2a7c81f62b1e21487ae37e11aae6241bc3eadPhil Burk                                    && mHwSupportsPause
8946fc2a7c81f62b1e21487ae37e11aae6241bc3eadPhil Burk                                    && (mOutput->flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC); }
8950f7b5f2b231caf87da9b20b74d086e5a9d6f4a9dEric Laurent
896ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent                uint32_t    trackCountForUid_l(uid_t uid);
897ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent
89881784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
89981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
90081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    friend class AudioFlinger;      // for numerous
90181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
902bf49308851509d38dbf3f57d9682a819d9f983c9Mikhail Naganov    DISALLOW_COPY_AND_ASSIGN(PlaybackThread);
90381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
90481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    status_t    addTrack_l(const sp<Track>& track);
905bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    bool        destroyTrack_l(const sp<Track>& track);
90681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void        removeTrack_l(const sp<Track>& track);
90781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
908deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten    void        readOutputParameters_l();
90981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
91081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void dumpInternals(int fd, const Vector<String16>& args);
91181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void        dumpTracks(int fd, const Vector<String16>& args);
91281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
91381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    SortedVector< sp<Track> >       mTracks;
914223fd5c9738e9665e495904d37d4632414b68c1eEric Laurent    stream_type_t                   mStreamTypes[AUDIO_STREAM_CNT];
91581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    AudioStreamOut                  *mOutput;
91681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
91781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    float                           mMasterVolume;
91881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    nsecs_t                         mLastWriteTime;
91981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                             mNumWrites;
92081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    int                             mNumDelayedWrites;
92181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    bool                            mInWrite;
92281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
92381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME rename these former local variables of threadLoop to standard "m" names
924ad9cb8b88e4f8face23f01d8dc89fa769dacb50fEric Laurent    nsecs_t                         mStandbyTimeNs;
92525c2dac12114699e90deb1c579cadebce7b91a97Andy Hung    size_t                          mSinkBufferSize;
92681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
92781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
928ad9cb8b88e4f8face23f01d8dc89fa769dacb50fEric Laurent    uint32_t                        mActiveSleepTimeUs;
929ad9cb8b88e4f8face23f01d8dc89fa769dacb50fEric Laurent    uint32_t                        mIdleSleepTimeUs;
93081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
931ad9cb8b88e4f8face23f01d8dc89fa769dacb50fEric Laurent    uint32_t                        mSleepTimeUs;
93281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
93381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // mixer status returned by prepareTracks_l()
93481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mixer_state                     mMixerStatus; // current cycle
93581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                  // previous cycle when in prepareTracks_l()
93681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    mixer_state                     mMixerStatusIgnoringFastTracks;
93781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                                  // FIXME or a separate ready state per track
93881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
93981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // FIXME move these declarations into the specific sub-class that needs them
94081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // MIXER only
94181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t                        sleepTimeShift;
94281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
94381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
944ad9cb8b88e4f8face23f01d8dc89fa769dacb50fEric Laurent    nsecs_t                         mStandbyDelayNs;
94581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
94681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // MIXER only
94781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    nsecs_t                         maxPeriod;
94881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
94981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // DUPLICATING only
95081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t                        writeFrames;
95181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
952bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    size_t                          mBytesRemaining;
953bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    size_t                          mCurrentWriteLength;
954bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    bool                            mUseAsyncWrite;
9553b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // mWriteAckSequence contains current write sequence on bits 31-1. The write sequence is
9563b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // incremented each time a write(), a flush() or a standby() occurs.
9573b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // Bit 0 is set when a write blocks and indicates a callback is expected.
9583b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // Bit 0 is reset by the async callback thread calling resetWriteBlocked(). Out of sequence
9593b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // callbacks are ignored.
9603b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    uint32_t                        mWriteAckSequence;
9613b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // mDrainSequence contains current drain sequence on bits 31-1. The drain sequence is
9623b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // incremented each time a drain is requested or a flush() or standby() occurs.
9633b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // Bit 0 is set when the drain() command is called at the HAL and indicates a callback is
9643b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // expected.
9653b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // Bit 0 is reset by the async callback thread calling resetDraining(). Out of sequence
9663b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // callbacks are ignored.
9673b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    uint32_t                        mDrainSequence;
968bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    sp<AsyncCallbackThread>         mCallbackThread;
969bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
97081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
97181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // The HAL output sink is treated as non-blocking, but current implementation is blocking
97281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<NBAIO_Sink>          mOutputSink;
97381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // If a fast mixer is present, the blocking pipe sink, otherwise clear
97481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<NBAIO_Sink>          mPipeSink;
97581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // The current sink for the normal mixer to write it's (sub)mix, mOutputSink or mPipeSink
97681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<NBAIO_Sink>          mNormalSink;
97746909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
97881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // For dumpsys
97981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<NBAIO_Sink>          mTeeSink;
98081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<NBAIO_Source>        mTeeSource;
98146909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
98281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    uint32_t                mScreenState;   // cached copy of gScreenState
983eef598c5539aa2be5a106f2483b19e368e4b8c0eGlenn Kasten    static const size_t     kFastMixerLogSize = 8 * 1024;
9849e58b552f51b00b3b674102876bd6c77ef3da806Glenn Kasten    sp<NBLog::Writer>       mFastMixerNBLogWriter;
9852148bf0e79c436b8764b9edc4c8f2730cce98a32Andy Hung
9862148bf0e79c436b8764b9edc4c8f2730cce98a32Andy Hung
98781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
98881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     bool        hasFastMixer() const = 0;
9890f11b51a57bc9062c4fe8af73747319cedabc5d6Glenn Kasten    virtual     FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex __unused) const
99081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                                { FastTrackUnderruns dummy; return dummy; }
99181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
99281784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
99381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // accessed by both binder threads and within threadLoop(), lock on mutex needed
99481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                unsigned    mFastTrackAvailMask;    // bit i set if fast track [i] is available
995d1f69b0b17acbd96987ecb2f3378abd394d05903Eric Laurent                bool        mHwSupportsPause;
996d1f69b0b17acbd96987ecb2f3378abd394d05903Eric Laurent                bool        mHwPaused;
997d1f69b0b17acbd96987ecb2f3378abd394d05903Eric Laurent                bool        mFlushPending;
99881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
99981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
100081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass MixerThread : public PlaybackThread {
100181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
100281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    MixerThread(const sp<AudioFlinger>& audioFlinger,
100381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioStreamOut* output,
100481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_io_handle_t id,
100581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                audio_devices_t device,
100672e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                bool systemReady,
100781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                type_t type = MIXER);
100881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual             ~MixerThread();
100981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
101081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Thread virtuals
101181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10121035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    virtual     bool        checkForNewParameter_l(const String8& keyValuePair,
10131035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                   status_t& status);
101481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        dumpInternals(int fd, const Vector<String16>& args);
101581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
101681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
101781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
1018ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent    virtual     int         getTrackName_l(audio_channel_mask_t channelMask, audio_format_t format,
1019ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent                                           audio_session_t sessionId, uid_t uid);
102081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        deleteTrackName_l(int name);
102181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    idleSleepTimeUs() const;
102281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    suspendSleepTimeUs() const;
102381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        cacheParameters_l();
102481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1025dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung    virtual void acquireWakeLock_l() {
1026dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung        PlaybackThread::acquireWakeLock_l();
1027818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung        if (hasFastMixer()) {
1028818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung            mFastMixer->setBoottimeOffset(
1029818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung                    mTimestamp.mTimebaseOffset[ExtendedTimestamp::TIMEBASE_BOOTTIME]);
1030818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung        }
1031818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung    }
1032818e7a32ce3633980138aff2c2bfcc5158b3cfccAndy Hung
103381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // threadLoop snippets
1034bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     ssize_t     threadLoop_write();
103581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_standby();
103681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_mix();
103781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_sleepTime();
103881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
103981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    correctLatency_l(uint32_t latency) const;
104081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1041054d9d3dea1390294650ac704acb4aa0a0731217Eric Laurent    virtual     status_t    createAudioPatch_l(const struct audio_patch *patch,
1042054d9d3dea1390294650ac704acb4aa0a0731217Eric Laurent                                   audio_patch_handle_t *handle);
1043054d9d3dea1390294650ac704acb4aa0a0731217Eric Laurent    virtual     status_t    releaseAudioPatch_l(const audio_patch_handle_t handle);
1044054d9d3dea1390294650ac704acb4aa0a0731217Eric Laurent
104581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioMixer* mAudioMixer;    // normal mixer
104681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
104781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // one-time initialization, no locks required
10484d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten                sp<FastMixer>     mFastMixer;     // non-0 if there is also a fast mixer
104981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                sp<AudioWatchdog> mAudioWatchdog; // non-0 if there is an audio watchdog thread
105081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
105181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // contents are not guaranteed to be consistent, no locks required
105281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                FastMixerDumpState mFastMixerDumpState;
105381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#ifdef STATE_QUEUE_DUMP
105481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                StateQueueObserverDump mStateQueueObserverDump;
105581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                StateQueueMutatorDump  mStateQueueMutatorDump;
105681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#endif
105781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                AudioWatchdogDump mAudioWatchdogDump;
105881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
105981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                // accessible only within the threadLoop(), no locks required
106081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                //          mFastMixer->sq()    // for mutating and pushing state
106181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                int32_t     mFastMixerFutex;    // for cold idle
106281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10632ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                std::atomic_bool mMasterMono;
106481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
10654d23ca370dd0ce584f49a80ef9dfcdbb75ba2c8eGlenn Kasten    virtual     bool        hasFastMixer() const { return mFastMixer != 0; }
106681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const {
1067dc2c50bad491d2c0c8a2efc0e24491076701c63cGlenn Kasten                              ALOG_ASSERT(fastIndex < FastMixerState::sMaxFastTracks);
106881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                              return mFastMixerDumpState.mTracks[fastIndex].mUnderruns;
106981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                            }
107083b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
10712ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hungprotected:
10722ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung    virtual     void       setMasterMono_l(bool mono) {
10732ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                               mMasterMono.store(mono);
10742ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                               if (mFastMixer != nullptr) { /* hasFastMixer() */
10752ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                                   mFastMixer->setMasterMono(mMasterMono);
10762ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                               }
10772ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                           }
10782ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung                // the FastMixer performs mono blend if it exists.
107903c48d5afcb3dfc1e43df93e1f3b3b3e9292e148Glenn Kasten                // Blending with limiter is not idempotent,
108003c48d5afcb3dfc1e43df93e1f3b3b3e9292e148Glenn Kasten                // and blending without limiter is idempotent but inefficient to do twice.
10812ddee19245641e86bca436dda23a0f5089bf2ab5Andy Hung    virtual     bool       requireMonoBlend() { return mMasterMono.load() && !hasFastMixer(); }
108281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
108381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
108481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass DirectOutputThread : public PlaybackThread {
108581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
108681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
108781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1088e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent                       audio_io_handle_t id, audio_devices_t device, bool systemReady);
108981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual                 ~DirectOutputThread();
109081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
109181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Thread virtuals
109281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
10931035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    virtual     bool        checkForNewParameter_l(const String8& keyValuePair,
10941035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                                   status_t& status);
1095e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent    virtual     void        flushHw_l();
109681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
109781784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
1098ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent    virtual     int         getTrackName_l(audio_channel_mask_t channelMask, audio_format_t format,
1099ad7dd9610b6fafa81baf69607f4ac669da88182aEric Laurent                                           audio_session_t sessionId, uid_t uid);
110081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        deleteTrackName_l(int name);
110181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    activeSleepTimeUs() const;
110281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    idleSleepTimeUs() const;
110381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    suspendSleepTimeUs() const;
110481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        cacheParameters_l();
110581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
110681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // threadLoop snippets
110781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
110881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_mix();
110981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_sleepTime();
1110d1f69b0b17acbd96987ecb2f3378abd394d05903Eric Laurent    virtual     void        threadLoop_exit();
1111d1f69b0b17acbd96987ecb2f3378abd394d05903Eric Laurent    virtual     bool        shouldStandby_l();
111281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
111343b4dcc660e6da96285e4672ae371070ab845401Phil Burk    virtual     void        onAddNewTrack_l();
111443b4dcc660e6da96285e4672ae371070ab845401Phil Burk
111581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // volumes last sent to audio HAL with stream->set_volume()
111681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    float mLeftVolFloat;
111781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    float mRightVolFloat;
111810cbff139360f3f642e0e3b3ccf2d463dbed22cfAndy Hung    bool mVolumeShaperActive;
111981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1120bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
112172e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                        audio_io_handle_t id, uint32_t device, ThreadBase::type_t type,
1122e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent                        bool systemReady);
11235850c4c8eecbe0db3cee8511a4f82cb443e27d08Eric Laurent    void processVolume_l(Track *track, bool lastTrack);
1124bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
112581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // prepareTracks_l() tells threadLoop_mix() the name of the single active track
112681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    sp<Track>               mActiveTrack;
112743b4dcc660e6da96285e4672ae371070ab845401Phil Burk
112843b4dcc660e6da96285e4672ae371070ab845401Phil Burk    wp<Track>               mPreviousTrack;         // used to detect track switch
112943b4dcc660e6da96285e4672ae371070ab845401Phil Burk
113081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
113181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     bool        hasFastMixer() const { return false; }
113210cbff139360f3f642e0e3b3ccf2d463dbed22cfAndy Hung
113310cbff139360f3f642e0e3b3ccf2d463dbed22cfAndy Hung    virtual     int64_t     computeWaitTimeNs_l() const override;
113481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
113581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1136bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentclass OffloadThread : public DirectOutputThread {
1137bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentpublic:
1138bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1139bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    OffloadThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1140e93cc03da360a1a0d2ad937c745ce8c8e8be81c2Eric Laurent                        audio_io_handle_t id, uint32_t device, bool systemReady);
11416a51d7ed7062536ccc892c8850a34ed55cbc8d5cEric Laurent    virtual                 ~OffloadThread() {};
1142e659ef420dae0caae84ab78f9df8952acb9ad3a0Eric Laurent    virtual     void        flushHw_l();
1143bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1144bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentprotected:
1145bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // threadLoop snippets
1146bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
1147bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     void        threadLoop_exit();
1148bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1149bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     bool        waitingAsyncCallback();
1150bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     bool        waitingAsyncCallback_l();
115105317d29b27e5fda654bea21b80d4423a03f49b3Haynes Mathew George    virtual     void        invalidateTracks(audio_stream_type_t streamType);
1152bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1153de0613d0ad8b8fb9d19a27185ae4d307a5b7fb9dEric Laurent    virtual     bool        keepWakeLock() const { return (mKeepWakeLock || (mDrainSequence & 1)); }
1154646679779a8f952980a5d4219ad9c6f93efc4b92Eric Laurent
1155bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentprivate:
1156bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    size_t      mPausedWriteLength;     // length in bytes of write interrupted by pause
1157bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    size_t      mPausedBytesRemaining;  // bytes still waiting in mixbuffer after resume
1158646679779a8f952980a5d4219ad9c6f93efc4b92Eric Laurent    bool        mKeepWakeLock;          // keep wake lock while waiting for write callback
1159f804475807407442d5596ab7378ed07d50664063Andy Hung    uint64_t    mOffloadUnderrunPosition; // Current frame position for offloaded playback
1160f804475807407442d5596ab7378ed07d50664063Andy Hung                                          // used and valid only during underrun.  ~0 if
1161f804475807407442d5596ab7378ed07d50664063Andy Hung                                          // no underrun has occurred during playback and
1162f804475807407442d5596ab7378ed07d50664063Andy Hung                                          // is not reset on standby.
1163bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent};
1164bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1165bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentclass AsyncCallbackThread : public Thread {
1166bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentpublic:
1167bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1168e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh    explicit AsyncCallbackThread(const wp<PlaybackThread>& playbackThread);
1169bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1170bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual             ~AsyncCallbackThread();
1171bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1172bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // Thread virtuals
1173bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual bool        threadLoop();
1174bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1175bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    // RefBase
1176bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual void        onFirstRef();
1177bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1178bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent            void        exit();
11793b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            void        setWriteBlocked(uint32_t sequence);
11803b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            void        resetWriteBlocked();
11813b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            void        setDraining(uint32_t sequence);
11823b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent            void        resetDraining();
11834527b9ebc6a37b861f5a3bba68bcc63dc8d69adaHaynes Mathew George            void        setAsyncError();
1184bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
1185bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurentprivate:
11864de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent    const wp<PlaybackThread>   mPlaybackThread;
11873b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // mWriteAckSequence corresponds to the last write sequence passed by the offload thread via
11883b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // setWriteBlocked(). The sequence is shifted one bit to the left and the lsb is used
11893b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // to indicate that the callback has been received via resetWriteBlocked()
11904de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent    uint32_t                   mWriteAckSequence;
11913b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // mDrainSequence corresponds to the last drain sequence passed by the offload thread via
11923b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // setDraining(). The sequence is shifted one bit to the left and the lsb is used
11933b4529e03c5fc7a44c22f9091ad15a269bfca3a8Eric Laurent    // to indicate that the callback has been received via resetDraining()
11944de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent    uint32_t                   mDrainSequence;
11954de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent    Condition                  mWaitWorkCV;
11964de95592980dba88a35b3dc8f3fd045588387a4fEric Laurent    Mutex                      mLock;
11974527b9ebc6a37b861f5a3bba68bcc63dc8d69adaHaynes Mathew George    bool                       mAsyncError;
1198bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent};
1199bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent
120081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentclass DuplicatingThread : public MixerThread {
120181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
120281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
120372e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                      audio_io_handle_t id, bool systemReady);
120481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual                 ~DuplicatingThread();
120581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
120681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Thread virtuals
120781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        addOutputTrack(MixerThread* thread);
120881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                void        removeOutputTrack(MixerThread* thread);
120981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t    waitTimeMs() const { return mWaitTimeMs; }
121081784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
121181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     uint32_t    activeSleepTimeUs() const;
121281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
121381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
121481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                bool        outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
121581784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
121681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // threadLoop snippets
121781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_mix();
121881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_sleepTime();
1219bfb1b832079bbb9426f72f3863199a54aefd02daEric Laurent    virtual     ssize_t     threadLoop_write();
122081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        threadLoop_standby();
122181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        cacheParameters_l();
122281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
122381784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
122481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // called from threadLoop, addOutputTrack, removeOutputTrack
122581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        updateWaitTime_l();
122681784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprotected:
122781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        saveOutputTracks();
122881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     void        clearOutputTracks();
122981784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
123081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
123181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                uint32_t    mWaitTimeMs;
123281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    SortedVector < sp<OutputTrack> >  outputTracks;
123381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    SortedVector < sp<OutputTrack> >  mOutputTracks;
123481784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
123581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual     bool        hasFastMixer() const { return false; }
123681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
123781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
123881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent// record thread
12396dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kastenclass RecordThread : public ThreadBase
124081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent{
124181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentpublic:
124281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
12436dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    class RecordTrack;
124473c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung
124573c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung    /* The ResamplerBufferProvider is used to retrieve recorded input data from the
124673c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung     * RecordThread.  It maintains local state on the relative position of the read
124773c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung     * position of the RecordTrack compared with the RecordThread.
124873c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung     */
12496dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    class ResamplerBufferProvider : public AudioBufferProvider
12506dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    {
12516dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    public:
1252e964d4e421e2d1ca937227a580c0c837091a11e3Chih-Hung Hsieh        explicit ResamplerBufferProvider(RecordTrack* recordTrack) :
125373c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung            mRecordTrack(recordTrack),
125473c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung            mRsmpInUnrel(0), mRsmpInFront(0) { }
12556dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        virtual ~ResamplerBufferProvider() { }
125673c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung
125773c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        // called to set the ResamplerBufferProvider to head of the RecordThread data buffer,
125873c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        // skipping any previous data read from the hal.
125973c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        virtual void reset();
126073c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung
126173c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        /* Synchronizes RecordTrack position with the RecordThread.
126273c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         * Calculates available frames and handle overruns if the RecordThread
126373c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         * has advanced faster than the ResamplerBufferProvider has retrieved data.
126473c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         * TODO: why not do this for every getNextBuffer?
126573c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         *
126673c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         * Parameters
126773c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         * framesAvailable:  pointer to optional output size_t to store record track
126873c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         *                   frames available.
126973c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         *      hasOverrun:  pointer to optional boolean, returns true if track has overrun.
127073c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung         */
127173c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung
127273c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        virtual void sync(size_t *framesAvailable = NULL, bool *hasOverrun = NULL);
127373c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung
12746dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        // AudioBufferProvider interface
1275d79072e9dff59f767cce2cda1caab80ce5a0815bGlenn Kasten        virtual status_t    getNextBuffer(AudioBufferProvider::Buffer* buffer);
12766dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        virtual void        releaseBuffer(AudioBufferProvider::Buffer* buffer);
12776dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    private:
12786dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten        RecordTrack * const mRecordTrack;
127973c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        size_t              mRsmpInUnrel;   // unreleased frames remaining from
128073c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung                                            // most recent getNextBuffer
128173c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung                                            // for debug only
128273c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung        int32_t             mRsmpInFront;   // next available frame
128373c02e4277b399c2ec1555d32b6ad5df23bb83dcAndy Hung                                            // rolling counter that is never cleared
12846dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten    };
12856dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
128681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent#include "RecordTracks.h"
128781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
128881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            RecordThread(const sp<AudioFlinger>& audioFlinger,
128981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    AudioStreamIn *input,
129081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    audio_io_handle_t id,
1291d3922f72601d82c6fc067a98916fda0bd1291c5fEric Laurent                    audio_devices_t outDevice,
129272e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                    audio_devices_t inDevice,
129372e3f39146fce4686bd96f11057c051bea376dfbEric Laurent                    bool systemReady
129446909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#ifdef TEE_SINK
129546909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten                    , const sp<NBAIO_Sink>& teeSink
129646909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten#endif
129746909e7eb074ce1b95b8a411eb71154f53f84f77Glenn Kasten                    );
129881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            virtual     ~RecordThread();
129981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
130081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // no addTrack_l ?
130181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void        destroyTrack_l(const sp<RecordTrack>& track);
130281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void        removeTrack_l(const sp<RecordTrack>& track);
130381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
130481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void        dumpInternals(int fd, const Vector<String16>& args);
130581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    void        dumpTracks(int fd, const Vector<String16>& args);
130681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
130781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // Thread virtuals
130881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual bool        threadLoop();
1309555530ab903504ad3586bc24cd8a4f200f5c39aeEric Laurent    virtual void        preExit();
131081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
131181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    // RefBase
131281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual void        onFirstRef();
131381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
131481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t    initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
1315e198c360d5e75a9b2097844c495c10902e7e8500Glenn Kasten
1316b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten    virtual sp<MemoryDealer>    readOnlyHeap() const { return mReadOnlyHeap; }
1317b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten
13186dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten    virtual sp<IMemory> pipeMemory() const { return mPipeMemory; }
13196dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
132081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            sp<AudioFlinger::RecordThread::RecordTrack>  createRecordTrack_l(
132181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    const sp<AudioFlinger::Client>& client,
132281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    uint32_t sampleRate,
132381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    audio_format_t format,
132481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    audio_channel_mask_t channelMask,
132574935e44734c1ec235c2b6677db3e0dbefa5ddb8Glenn Kasten                    size_t *pFrameCount,
1326d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                    audio_session_t sessionId,
13277df8c0b799d8f52d6386e03313286dbd7d5cdc7cGlenn Kasten                    size_t *notificationFrames,
13281f12a8ad958344c50733b948628ffa06db9c5bc6Andy Hung                    uid_t uid,
1329050677873c10d4da308ac222f8533c96cca3207eEric Laurent                    audio_input_flags_t *flags,
133081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                    pid_t tid,
133120b9ef0b55c9150ae11057ab997ae61be2d496efEric Laurent                    status_t *status /*non-NULL*/,
133220b9ef0b55c9150ae11057ab997ae61be2d496efEric Laurent                    audio_port_handle_t portId);
133381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
133481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            status_t    start(RecordTrack* recordTrack,
133581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent                              AudioSystem::sync_event_t event,
1336d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten                              audio_session_t triggerSession);
133781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
133881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // ask the thread to stop the specified track, and
133981784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // return true if the caller should then do it's part of the stopping process
1340a8356f663014e7d4c27869629af83d8bb3441e19Glenn Kasten            bool        stop(RecordTrack* recordTrack);
134181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
134281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            void        dump(int fd, const Vector<String16>& args);
134381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            AudioStreamIn* clearInput();
13441dc98674f701dada94143b4d31b7221c58346c6cMikhail Naganov            virtual sp<StreamHalInterface> stream() const;
134581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
134681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
13471035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    virtual bool        checkForNewParameter_l(const String8& keyValuePair,
13481035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent                                               status_t& status);
13491035194cee4fbd57e35ea15c56e66cd09b63d56eEric Laurent    virtual void        cacheParameters_l() {}
135081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual String8     getParameters(const String8& keys);
13517c1ec5f038e63a5eb8b04434577c25bc23f5f410Eric Laurent    virtual void        ioConfigChanged(audio_io_config_event event, pid_t pid = 0);
13521c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    virtual status_t    createAudioPatch_l(const struct audio_patch *patch,
13531c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent                                           audio_patch_handle_t *handle);
13541c333e252cbca3337c1bedbc57a005f3b7d23fdbEric Laurent    virtual status_t    releaseAudioPatch_l(const audio_patch_handle_t handle);
135583b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
135683b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            void        addPatchRecord(const sp<PatchRecord>& record);
135783b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent            void        deletePatchRecord(const sp<PatchRecord>& record);
135883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent
1359deca2ae0a7cf8bc54ff3f30b7dc39bbc78b94c0dGlenn Kasten            void        readInputParameters_l();
13605f972c031d4061f4f037c9fda1ea4bd9b6a756cdGlenn Kasten    virtual uint32_t    getInputFramesLost();
136181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
136281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
136381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
13644c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent    virtual uint32_t hasAudioSession_l(audio_session_t sessionId) const;
136581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
136681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // Return the set of unique session IDs across all tracks.
136781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // The keys are the session IDs, and the associated values are meaningless.
136881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // FIXME replace by Set [and implement Bag/Multiset for other uses].
1369d848eb48c121c119e8ba7583efc75415fe102570Glenn Kasten            KeyedVector<audio_session_t, bool> sessionIds() const;
137081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
137181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual status_t setSyncEvent(const sp<SyncEvent>& event);
137281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    virtual bool     isValidSyncEvent(const sp<SyncEvent>& event) const;
137381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
137481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent    static void syncStartEventCallback(const wp<SyncEvent>& event);
137581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
13769b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten    virtual size_t      frameCount() const { return mFrameCount; }
13776dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            bool        hasFastCapture() const { return mFastCapture != 0; }
137883b8808faad1e91690c64d7007348be8d9ebde73Eric Laurent    virtual void        getAudioPortConfig(struct audio_port_config *config);
13799b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten
13804c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent    virtual status_t    checkEffectCompatibility_l(const effect_descriptor_t *desc,
13814c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent                                                   audio_session_t sessionId);
13824c415062ad1bb53e9af8f644d8215837262b79bbEric Laurent
1383dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung    virtual void        acquireWakeLock_l() {
1384dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                            ThreadBase::acquireWakeLock_l();
1385dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                            mActiveTracks.updatePowerState(this, true /* force */);
1386dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung                        }
1387293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung    virtual bool        isOutput() const override { return false; }
1388dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
1389d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent            void        checkBtNrec();
1390d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent
139181784c37c61b09289654b979567a42bf73cd2b12Eric Laurentprivate:
139281784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // Enter standby if not already in standby, and set mStandby flag
139393e471f620454f7de73d190521568b1e25879767Glenn Kasten            void    standbyIfNotAlreadyInStandby();
139481784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
139581784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // Call the HAL standby method unconditionally, and don't change mStandby flag
1396e198c360d5e75a9b2097844c495c10902e7e8500Glenn Kasten            void    inputStandBy();
139781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent
1398d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent            void    checkBtNrec_l();
1399d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent
140081784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            AudioStreamIn                       *mInput;
140181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            SortedVector < sp<RecordTrack> >    mTracks;
14022b806406ac1ec680b6fe3aaa84c54bdc4e43ad8dGlenn Kasten            // mActiveTracks has dual roles:  it indicates the current active track(s), and
140381784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // is used together with mStartStopCond to indicate start()/stop() progress
1404dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung            ActiveTracks<RecordTrack>           mActiveTracks;
1405dae27707fc7d8370eb200d25d1a7c6dd7ad5e201Andy Hung
140681784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            Condition                           mStartStopCond;
14079b58f63e45ef2fdfb839b9b9bb3411d81eb96128Glenn Kasten
14088594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten            // resampler converts input at HAL Hz to output at AudioRecord client Hz
14091b291841a58ce6b2b291232dfdd56134b2185c48Glenn Kasten            void                               *mRsmpInBuffer;  // size = mRsmpInFramesOA
14108594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten            size_t                              mRsmpInFrames;  // size of resampler input in frames
14118594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten            size_t                              mRsmpInFramesP2;// size rounded up to a power-of-2
14121b291841a58ce6b2b291232dfdd56134b2185c48Glenn Kasten            size_t                              mRsmpInFramesOA;// mRsmpInFramesP2 + over-allocation
14136dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten
14146dd62fb91d82dedcfa3ab38c02eb0940b4ba932aGlenn Kasten            // rolling index that is never cleared
14158594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten            int32_t                             mRsmpInRear;    // last filled frame + 1
14168594843c15b4722ced39436fe9e64f3e57e7ace4Glenn Kasten
141781784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            // For dumpsys
141881784c37c61b09289654b979567a42bf73cd2b12Eric Laurent            const sp<NBAIO_Sink>                mTeeSink;
1419b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten
1420b880f5e5fc07397ddd09a94ba18bdf4fa62aae00Glenn Kasten            const sp<MemoryDealer>              mReadOnlyHeap;
14216dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14226dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // one-time initialization, no locks required
1423b187de1ada34a9023c05d020a4592686ba761278Glenn Kasten            sp<FastCapture>                     mFastCapture;   // non-0 if there is also
1424b187de1ada34a9023c05d020a4592686ba761278Glenn Kasten                                                                // a fast capture
142572e3f39146fce4686bd96f11057c051bea376dfbEric Laurent
14266dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // FIXME audio watchdog thread
14276dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14286dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // contents are not guaranteed to be consistent, no locks required
14296dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            FastCaptureDumpState                mFastCaptureDumpState;
14306dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#ifdef STATE_QUEUE_DUMP
14316dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // FIXME StateQueue observer and mutator dump fields
14326dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten#endif
14336dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // FIXME audio watchdog dump
14346dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14356dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // accessible only within the threadLoop(), no locks required
14366dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            //          mFastCapture->sq()      // for mutating and pushing state
14376dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            int32_t     mFastCaptureFutex;      // for cold idle
14386dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14396dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // The HAL input source is treated as non-blocking,
14406dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // but current implementation is blocking
14416dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sp<NBAIO_Source>                    mInputSource;
14426dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // The source for the normal capture thread to read from: mInputSource or mPipeSource
14436dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sp<NBAIO_Source>                    mNormalSource;
14446dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // If a fast capture is present, the non-blocking pipe sink written to by fast capture,
14456dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // otherwise clear
14466dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sp<NBAIO_Sink>                      mPipeSink;
14476dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // If a fast capture is present, the non-blocking pipe source read by normal thread,
14486dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // otherwise clear
14496dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sp<NBAIO_Source>                    mPipeSource;
14506dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // Depth of pipe from fast capture to normal thread and fast clients, always power of 2
14516dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            size_t                              mPipeFramesP2;
14526dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            // If a fast capture is present, the Pipe as IMemory, otherwise clear
14536dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sp<IMemory>                         mPipeMemory;
14546dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14556dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            static const size_t                 kFastCaptureLogSize = 4 * 1024;
14566dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            sp<NBLog::Writer>                   mFastCaptureNBLogWriter;
14576dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten
14586dbb5e3336cfff1ad51d429fcb847307c06efd61Glenn Kasten            bool                                mFastTrackAvail;    // true if fast track available
1459d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent            // common state to all record threads
1460d8365c54d049aade9e02ccae722f311f846cad9aEric Laurent            std::atomic_bool                    mBtNrecSuspended;
146181784c37c61b09289654b979567a42bf73cd2b12Eric Laurent};
14626acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14636acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentclass MmapThread : public ThreadBase
14646acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent{
14656acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent public:
14666acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14676acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent#include "MmapTracks.h"
14686acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14696acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    MmapThread(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
14706acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                      AudioHwDevice *hwDev, sp<StreamHalInterface> stream,
14716acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                      audio_devices_t outDevice, audio_devices_t inDevice, bool systemReady);
14726acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     ~MmapThread();
14736acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14746acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        configure(const audio_attributes_t *attr,
14756acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      audio_stream_type_t streamType,
14766acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      audio_session_t sessionId,
14776acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      const sp<MmapStreamCallback>& callback,
14786acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      audio_port_handle_t portId);
14796acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14806acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                void        disconnect();
14816acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14826acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    // MmapStreamInterface
14836acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    status_t createMmapBuffer(int32_t minSizeFrames,
14846acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      struct audio_mmap_buffer_info *info);
14856acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    status_t getMmapPosition(struct audio_mmap_position *position);
1486cb4dae216758d9e9a28050f65097f1ce905c03e9Eric Laurent    status_t start(const AudioClient& client, audio_port_handle_t *handle);
14876acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    status_t stop(audio_port_handle_t handle);
148818b570146c971fe729c391bfbb869391084e623dEric Laurent    status_t standby();
14896acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14906acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    // RefBase
14916acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        onFirstRef();
14926acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14936acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    // Thread virtuals
14946acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     bool        threadLoop();
14956acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
14966acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        threadLoop_exit();
14976acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        threadLoop_standby();
149818b570146c971fe729c391bfbb869391084e623dEric Laurent    virtual     bool        shouldStandby_l() { return false; }
14996acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15006acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     status_t    initCheck() const { return (mHalStream == 0) ? NO_INIT : NO_ERROR; }
15016acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     size_t      frameCount() const { return mFrameCount; }
15026acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     bool        checkForNewParameter_l(const String8& keyValuePair,
15036acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                                    status_t& status);
15046acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     String8     getParameters(const String8& keys);
15056acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        ioConfigChanged(audio_io_config_event event, pid_t pid = 0);
15066acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                void        readHalParameters_l();
15076acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        cacheParameters_l() {}
15086acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     status_t    createAudioPatch_l(const struct audio_patch *patch,
15096acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                               audio_patch_handle_t *handle);
15106acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     status_t    releaseAudioPatch_l(const audio_patch_handle_t handle);
15116acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        getAudioPortConfig(struct audio_port_config *config);
15126acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15136acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     sp<StreamHalInterface> stream() const { return mHalStream; }
15146acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     status_t    addEffectChain_l(const sp<EffectChain>& chain);
15156acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     size_t      removeEffectChain_l(const sp<EffectChain>& chain);
15166acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     status_t    checkEffectCompatibility_l(const effect_descriptor_t *desc,
15176acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                                               audio_session_t sessionId);
15186acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15196acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     uint32_t    hasAudioSession_l(audio_session_t sessionId) const;
15206acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     status_t    setSyncEvent(const sp<SyncEvent>& event);
15216acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     bool        isValidSyncEvent(const sp<SyncEvent>& event) const;
15226acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15236acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        checkSilentMode_l() {}
15246acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        processVolume_l() {}
15256acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                void        checkInvalidTracks_l();
15266acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15276acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     audio_stream_type_t streamType() { return AUDIO_STREAM_DEFAULT; }
15286acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15296acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        invalidateTracks(audio_stream_type_t streamType __unused) {}
15306acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15316acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                void        dump(int fd, const Vector<String16>& args);
15326acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        dumpInternals(int fd, const Vector<String16>& args);
15336acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                void        dumpTracks(int fd, const Vector<String16>& args);
15346acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15356acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent protected:
15366acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15376acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                audio_attributes_t      mAttr;
15386acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                audio_session_t         mSessionId;
15396acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                audio_port_handle_t     mPortId;
15406acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15417f6b40d78b1976c78d1300e8a51fda36eeb50c5dPhil Burk                wp<MmapStreamCallback>  mCallback;
15426acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                sp<StreamHalInterface>  mHalStream;
15436acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                sp<DeviceHalInterface>  mHalDevice;
15446acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                AudioHwDevice* const    mAudioHwDev;
15456acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                ActiveTracks<MmapTrack> mActiveTracks;
15466acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent};
15476acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15486acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentclass MmapPlaybackThread : public MmapThread, public VolumeInterface
15496acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent{
15506acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15516acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentpublic:
15526acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    MmapPlaybackThread(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
15536acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                      AudioHwDevice *hwDev, AudioStreamOut *output,
15546acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                      audio_devices_t outDevice, audio_devices_t inDevice, bool systemReady);
15556acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     ~MmapPlaybackThread() {}
15566acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15576acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        configure(const audio_attributes_t *attr,
15586acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      audio_stream_type_t streamType,
15596acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      audio_session_t sessionId,
15606acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      const sp<MmapStreamCallback>& callback,
15616acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                                      audio_port_handle_t portId);
15626acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15636acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                AudioStreamOut* clearOutput();
15646acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15656acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                // VolumeInterface
15666acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setMasterVolume(float value);
15676acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setMasterMute(bool muted);
15686acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setStreamVolume(audio_stream_type_t stream, float value);
15696acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        setStreamMute(audio_stream_type_t stream, bool muted);
15706acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     float       streamVolume(audio_stream_type_t stream) const;
15716acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15726acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                void        setMasterMute_l(bool muted) { mMasterMute = muted; }
15736acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15746acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        invalidateTracks(audio_stream_type_t streamType);
15756acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15766acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     audio_stream_type_t streamType() { return mStreamType; }
15776acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        checkSilentMode_l();
15786acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        processVolume_l();
15796acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15806acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     void        dumpInternals(int fd, const Vector<String16>& args);
15816acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
1582293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung    virtual     bool        isOutput() const override { return true; }
15836acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15846acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentprotected:
15856acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15866acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                audio_stream_type_t         mStreamType;
15876acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                float                       mMasterVolume;
15886acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                float                       mStreamVolume;
15896acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                bool                        mMasterMute;
15906acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                bool                        mStreamMute;
15916acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                float                       mHalVolFloat;
15926acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                AudioStreamOut*             mOutput;
15936acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent};
15946acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15956acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentclass MmapCaptureThread : public MmapThread
15966acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent{
15976acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
15986acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentpublic:
15996acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    MmapCaptureThread(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
16006acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                      AudioHwDevice *hwDev, AudioStreamIn *input,
16016acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                      audio_devices_t outDevice, audio_devices_t inDevice, bool systemReady);
16026acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent    virtual     ~MmapCaptureThread() {}
16036acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
16046acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                AudioStreamIn* clearInput();
16056acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
1606293558ad1977e24e65f7ba78f47382d33fc77d64Andy Hung    virtual     bool           isOutput() const override { return false; }
16076acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
16086acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurentprotected:
16096acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent
16106acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent                AudioStreamIn*  mInput;
16116acd1d432f526ae9a055ddaece28bf93b474a776Eric Laurent};
1612