Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright 2012, The Android Open Source Project |
| 4 | ** |
| 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
| 8 | ** |
| 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ** |
| 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
| 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #ifndef INCLUDING_FROM_AUDIOFLINGER_H |
| 19 | #error This header file should only be included from AudioFlinger.h |
| 20 | #endif |
| 21 | |
| 22 | class ThreadBase : public Thread { |
| 23 | public: |
| 24 | |
| 25 | #include "TrackBase.h" |
| 26 | |
| 27 | enum type_t { |
| 28 | MIXER, // Thread class is MixerThread |
| 29 | DIRECT, // Thread class is DirectOutputThread |
| 30 | DUPLICATING, // Thread class is DuplicatingThread |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 31 | RECORD, // Thread class is RecordThread |
| 32 | OFFLOAD // Thread class is OffloadThread |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, |
| 36 | audio_devices_t outDevice, audio_devices_t inDevice, type_t type); |
| 37 | virtual ~ThreadBase(); |
| 38 | |
Glenn Kasten | cf04c2c | 2013-08-06 07:41:16 -0700 | [diff] [blame] | 39 | virtual status_t readyToRun(); |
| 40 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 41 | void dumpBase(int fd, const Vector<String16>& args); |
| 42 | void dumpEffectChains(int fd, const Vector<String16>& args); |
| 43 | |
| 44 | void clearPowerManager(); |
| 45 | |
| 46 | // base for record and playback |
| 47 | enum { |
| 48 | CFG_EVENT_IO, |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 49 | CFG_EVENT_PRIO, |
| 50 | CFG_EVENT_SET_PARAMETER, |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 51 | CFG_EVENT_CREATE_AUDIO_PATCH, |
| 52 | CFG_EVENT_RELEASE_AUDIO_PATCH, |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 53 | }; |
| 54 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 55 | class ConfigEventData: public RefBase { |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 56 | public: |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 57 | virtual ~ConfigEventData() {} |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 58 | |
| 59 | virtual void dump(char *buffer, size_t size) = 0; |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 60 | protected: |
| 61 | ConfigEventData() {} |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 62 | }; |
| 63 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 64 | // Config event sequence by client if status needed (e.g binder thread calling setParameters()): |
| 65 | // 1. create SetParameterConfigEvent. This sets mWaitStatus in config event |
| 66 | // 2. Lock mLock |
| 67 | // 3. Call sendConfigEvent_l(): Append to mConfigEvents and mWaitWorkCV.signal |
| 68 | // 4. sendConfigEvent_l() reads status from event->mStatus; |
| 69 | // 5. sendConfigEvent_l() returns status |
| 70 | // 6. Unlock |
| 71 | // |
| 72 | // Parameter sequence by server: threadLoop calling processConfigEvents_l(): |
| 73 | // 1. Lock mLock |
| 74 | // 2. If there is an entry in mConfigEvents proceed ... |
| 75 | // 3. Read first entry in mConfigEvents |
| 76 | // 4. Remove first entry from mConfigEvents |
| 77 | // 5. Process |
| 78 | // 6. Set event->mStatus |
| 79 | // 7. event->mCond.signal |
| 80 | // 8. Unlock |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 81 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 82 | class ConfigEvent: public RefBase { |
| 83 | public: |
| 84 | virtual ~ConfigEvent() {} |
| 85 | |
| 86 | void dump(char *buffer, size_t size) { mData->dump(buffer, size); } |
| 87 | |
| 88 | const int mType; // event type e.g. CFG_EVENT_IO |
| 89 | Mutex mLock; // mutex associated with mCond |
| 90 | Condition mCond; // condition for status return |
| 91 | status_t mStatus; // status communicated to sender |
| 92 | bool mWaitStatus; // true if sender is waiting for status |
| 93 | sp<ConfigEventData> mData; // event specific parameter data |
| 94 | |
| 95 | protected: |
| 96 | ConfigEvent(int type) : mType(type), mStatus(NO_ERROR), mWaitStatus(false), mData(NULL) {} |
| 97 | }; |
| 98 | |
| 99 | class IoConfigEventData : public ConfigEventData { |
| 100 | public: |
| 101 | IoConfigEventData(int event, int param) : |
| 102 | mEvent(event), mParam(param) {} |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 103 | |
| 104 | virtual void dump(char *buffer, size_t size) { |
| 105 | snprintf(buffer, size, "IO event: event %d, param %d\n", mEvent, mParam); |
| 106 | } |
| 107 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 108 | const int mEvent; |
| 109 | const int mParam; |
| 110 | }; |
| 111 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 112 | class IoConfigEvent : public ConfigEvent { |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 113 | public: |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 114 | IoConfigEvent(int event, int param) : |
| 115 | ConfigEvent(CFG_EVENT_IO) { |
| 116 | mData = new IoConfigEventData(event, param); |
| 117 | } |
| 118 | virtual ~IoConfigEvent() {} |
| 119 | }; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 120 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 121 | class PrioConfigEventData : public ConfigEventData { |
| 122 | public: |
| 123 | PrioConfigEventData(pid_t pid, pid_t tid, int32_t prio) : |
| 124 | mPid(pid), mTid(tid), mPrio(prio) {} |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 125 | |
| 126 | virtual void dump(char *buffer, size_t size) { |
| 127 | snprintf(buffer, size, "Prio event: pid %d, tid %d, prio %d\n", mPid, mTid, mPrio); |
| 128 | } |
| 129 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 130 | const pid_t mPid; |
| 131 | const pid_t mTid; |
| 132 | const int32_t mPrio; |
| 133 | }; |
| 134 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 135 | class PrioConfigEvent : public ConfigEvent { |
| 136 | public: |
| 137 | PrioConfigEvent(pid_t pid, pid_t tid, int32_t prio) : |
| 138 | ConfigEvent(CFG_EVENT_PRIO) { |
| 139 | mData = new PrioConfigEventData(pid, tid, prio); |
| 140 | } |
| 141 | virtual ~PrioConfigEvent() {} |
| 142 | }; |
| 143 | |
| 144 | class SetParameterConfigEventData : public ConfigEventData { |
| 145 | public: |
| 146 | SetParameterConfigEventData(String8 keyValuePairs) : |
| 147 | mKeyValuePairs(keyValuePairs) {} |
| 148 | |
| 149 | virtual void dump(char *buffer, size_t size) { |
| 150 | snprintf(buffer, size, "KeyValue: %s\n", mKeyValuePairs.string()); |
| 151 | } |
| 152 | |
| 153 | const String8 mKeyValuePairs; |
| 154 | }; |
| 155 | |
| 156 | class SetParameterConfigEvent : public ConfigEvent { |
| 157 | public: |
| 158 | SetParameterConfigEvent(String8 keyValuePairs) : |
| 159 | ConfigEvent(CFG_EVENT_SET_PARAMETER) { |
| 160 | mData = new SetParameterConfigEventData(keyValuePairs); |
| 161 | mWaitStatus = true; |
| 162 | } |
| 163 | virtual ~SetParameterConfigEvent() {} |
| 164 | }; |
| 165 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 166 | class CreateAudioPatchConfigEventData : public ConfigEventData { |
| 167 | public: |
| 168 | CreateAudioPatchConfigEventData(const struct audio_patch patch, |
| 169 | audio_patch_handle_t handle) : |
| 170 | mPatch(patch), mHandle(handle) {} |
| 171 | |
| 172 | virtual void dump(char *buffer, size_t size) { |
| 173 | snprintf(buffer, size, "Patch handle: %u\n", mHandle); |
| 174 | } |
| 175 | |
| 176 | const struct audio_patch mPatch; |
| 177 | audio_patch_handle_t mHandle; |
| 178 | }; |
| 179 | |
| 180 | class CreateAudioPatchConfigEvent : public ConfigEvent { |
| 181 | public: |
| 182 | CreateAudioPatchConfigEvent(const struct audio_patch patch, |
| 183 | audio_patch_handle_t handle) : |
| 184 | ConfigEvent(CFG_EVENT_CREATE_AUDIO_PATCH) { |
| 185 | mData = new CreateAudioPatchConfigEventData(patch, handle); |
| 186 | mWaitStatus = true; |
| 187 | } |
| 188 | virtual ~CreateAudioPatchConfigEvent() {} |
| 189 | }; |
| 190 | |
| 191 | class ReleaseAudioPatchConfigEventData : public ConfigEventData { |
| 192 | public: |
| 193 | ReleaseAudioPatchConfigEventData(const audio_patch_handle_t handle) : |
| 194 | mHandle(handle) {} |
| 195 | |
| 196 | virtual void dump(char *buffer, size_t size) { |
| 197 | snprintf(buffer, size, "Patch handle: %u\n", mHandle); |
| 198 | } |
| 199 | |
| 200 | audio_patch_handle_t mHandle; |
| 201 | }; |
| 202 | |
| 203 | class ReleaseAudioPatchConfigEvent : public ConfigEvent { |
| 204 | public: |
| 205 | ReleaseAudioPatchConfigEvent(const audio_patch_handle_t handle) : |
| 206 | ConfigEvent(CFG_EVENT_RELEASE_AUDIO_PATCH) { |
| 207 | mData = new ReleaseAudioPatchConfigEventData(handle); |
| 208 | mWaitStatus = true; |
| 209 | } |
| 210 | virtual ~ReleaseAudioPatchConfigEvent() {} |
| 211 | }; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 212 | |
| 213 | class PMDeathRecipient : public IBinder::DeathRecipient { |
| 214 | public: |
| 215 | PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {} |
| 216 | virtual ~PMDeathRecipient() {} |
| 217 | |
| 218 | // IBinder::DeathRecipient |
| 219 | virtual void binderDied(const wp<IBinder>& who); |
| 220 | |
| 221 | private: |
| 222 | PMDeathRecipient(const PMDeathRecipient&); |
| 223 | PMDeathRecipient& operator = (const PMDeathRecipient&); |
| 224 | |
| 225 | wp<ThreadBase> mThread; |
| 226 | }; |
| 227 | |
| 228 | virtual status_t initCheck() const = 0; |
| 229 | |
| 230 | // static externally-visible |
| 231 | type_t type() const { return mType; } |
| 232 | audio_io_handle_t id() const { return mId;} |
| 233 | |
| 234 | // dynamic externally-visible |
| 235 | uint32_t sampleRate() const { return mSampleRate; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 236 | audio_channel_mask_t channelMask() const { return mChannelMask; } |
Andy Hung | 463be25 | 2014-07-10 16:56:07 -0700 | [diff] [blame] | 237 | audio_format_t format() const { return mHALFormat; } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 238 | uint32_t channelCount() const { return mChannelCount; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 239 | // Called by AudioFlinger::frameCount(audio_io_handle_t output) and effects, |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 240 | // and returns the [normal mix] buffer's frame count. |
| 241 | virtual size_t frameCount() const = 0; |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 242 | size_t frameSize() const { return mFrameSize; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 243 | |
| 244 | // Should be "virtual status_t requestExitAndWait()" and override same |
| 245 | // method in Thread, but Thread::requestExitAndWait() is not yet virtual. |
| 246 | void exit(); |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 247 | virtual bool checkForNewParameter_l(const String8& keyValuePair, |
| 248 | status_t& status) = 0; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 249 | virtual status_t setParameters(const String8& keyValuePairs); |
| 250 | virtual String8 getParameters(const String8& keys) = 0; |
Eric Laurent | 021cf96 | 2014-05-13 10:18:14 -0700 | [diff] [blame] | 251 | virtual void audioConfigChanged(int event, int param = 0) = 0; |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 252 | // sendConfigEvent_l() must be called with ThreadBase::mLock held |
| 253 | // Can temporarily release the lock if waiting for a reply from |
| 254 | // processConfigEvents_l(). |
| 255 | status_t sendConfigEvent_l(sp<ConfigEvent>& event); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 256 | void sendIoConfigEvent(int event, int param = 0); |
| 257 | void sendIoConfigEvent_l(int event, int param = 0); |
| 258 | void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio); |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 259 | status_t sendSetParameterConfigEvent_l(const String8& keyValuePair); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 260 | status_t sendCreateAudioPatchConfigEvent(const struct audio_patch *patch, |
| 261 | audio_patch_handle_t *handle); |
| 262 | status_t sendReleaseAudioPatchConfigEvent(audio_patch_handle_t handle); |
Eric Laurent | 021cf96 | 2014-05-13 10:18:14 -0700 | [diff] [blame] | 263 | void processConfigEvents_l(); |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 264 | virtual void cacheParameters_l() = 0; |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 265 | virtual status_t createAudioPatch_l(const struct audio_patch *patch, |
| 266 | audio_patch_handle_t *handle) = 0; |
| 267 | virtual status_t releaseAudioPatch_l(const audio_patch_handle_t handle) = 0; |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 268 | virtual void getAudioPortConfig(struct audio_port_config *config) = 0; |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 269 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 270 | |
| 271 | // see note at declaration of mStandby, mOutDevice and mInDevice |
| 272 | bool standby() const { return mStandby; } |
| 273 | audio_devices_t outDevice() const { return mOutDevice; } |
| 274 | audio_devices_t inDevice() const { return mInDevice; } |
| 275 | |
| 276 | virtual audio_stream_t* stream() const = 0; |
| 277 | |
| 278 | sp<EffectHandle> createEffect_l( |
| 279 | const sp<AudioFlinger::Client>& client, |
| 280 | const sp<IEffectClient>& effectClient, |
| 281 | int32_t priority, |
| 282 | int sessionId, |
| 283 | effect_descriptor_t *desc, |
| 284 | int *enabled, |
Glenn Kasten | 9156ef3 | 2013-08-06 15:39:08 -0700 | [diff] [blame] | 285 | status_t *status /*non-NULL*/); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 286 | |
| 287 | // return values for hasAudioSession (bit field) |
| 288 | enum effect_state { |
| 289 | EFFECT_SESSION = 0x1, // the audio session corresponds to at least one |
| 290 | // effect |
| 291 | TRACK_SESSION = 0x2 // the audio session corresponds to at least one |
| 292 | // track |
| 293 | }; |
| 294 | |
| 295 | // get effect chain corresponding to session Id. |
| 296 | sp<EffectChain> getEffectChain(int sessionId); |
| 297 | // same as getEffectChain() but must be called with ThreadBase mutex locked |
| 298 | sp<EffectChain> getEffectChain_l(int sessionId) const; |
| 299 | // add an effect chain to the chain list (mEffectChains) |
| 300 | virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0; |
| 301 | // remove an effect chain from the chain list (mEffectChains) |
| 302 | virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0; |
| 303 | // lock all effect chains Mutexes. Must be called before releasing the |
| 304 | // ThreadBase mutex before processing the mixer and effects. This guarantees the |
| 305 | // integrity of the chains during the process. |
| 306 | // Also sets the parameter 'effectChains' to current value of mEffectChains. |
| 307 | void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains); |
| 308 | // unlock effect chains after process |
| 309 | void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 310 | // get a copy of mEffectChains vector |
| 311 | Vector< sp<EffectChain> > getEffectChains_l() const { return mEffectChains; }; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 312 | // set audio mode to all effect chains |
| 313 | void setMode(audio_mode_t mode); |
| 314 | // get effect module with corresponding ID on specified audio session |
| 315 | sp<AudioFlinger::EffectModule> getEffect(int sessionId, int effectId); |
| 316 | sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId); |
| 317 | // add and effect module. Also creates the effect chain is none exists for |
| 318 | // the effects audio session |
| 319 | status_t addEffect_l(const sp< EffectModule>& effect); |
| 320 | // remove and effect module. Also removes the effect chain is this was the last |
| 321 | // effect |
| 322 | void removeEffect_l(const sp< EffectModule>& effect); |
| 323 | // detach all tracks connected to an auxiliary effect |
Glenn Kasten | 0f11b51 | 2014-01-31 16:18:54 -0800 | [diff] [blame] | 324 | virtual void detachAuxEffect_l(int effectId __unused) {} |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 325 | // returns either EFFECT_SESSION if effects on this audio session exist in one |
| 326 | // chain, or TRACK_SESSION if tracks on this audio session exist, or both |
| 327 | virtual uint32_t hasAudioSession(int sessionId) const = 0; |
| 328 | // the value returned by default implementation is not important as the |
| 329 | // strategy is only meaningful for PlaybackThread which implements this method |
Glenn Kasten | 0f11b51 | 2014-01-31 16:18:54 -0800 | [diff] [blame] | 330 | virtual uint32_t getStrategyForSession_l(int sessionId __unused) { return 0; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 331 | |
| 332 | // suspend or restore effect according to the type of effect passed. a NULL |
| 333 | // type pointer means suspend all effects in the session |
| 334 | void setEffectSuspended(const effect_uuid_t *type, |
| 335 | bool suspend, |
| 336 | int sessionId = AUDIO_SESSION_OUTPUT_MIX); |
| 337 | // check if some effects must be suspended/restored when an effect is enabled |
| 338 | // or disabled |
| 339 | void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect, |
| 340 | bool enabled, |
| 341 | int sessionId = AUDIO_SESSION_OUTPUT_MIX); |
| 342 | void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect, |
| 343 | bool enabled, |
| 344 | int sessionId = AUDIO_SESSION_OUTPUT_MIX); |
| 345 | |
| 346 | virtual status_t setSyncEvent(const sp<SyncEvent>& event) = 0; |
| 347 | virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const = 0; |
| 348 | |
Glenn Kasten | b880f5e | 2014-05-07 08:43:45 -0700 | [diff] [blame] | 349 | // Return a reference to a per-thread heap which can be used to allocate IMemory |
| 350 | // objects that will be read-only to client processes, read/write to mediaserver, |
| 351 | // and shared by all client processes of the thread. |
| 352 | // The heap is per-thread rather than common across all threads, because |
| 353 | // clients can't be trusted not to modify the offset of the IMemory they receive. |
| 354 | // If a thread does not have such a heap, this method returns 0. |
| 355 | virtual sp<MemoryDealer> readOnlyHeap() const { return 0; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 356 | |
Glenn Kasten | 6181ffd | 2014-05-13 10:41:52 -0700 | [diff] [blame] | 357 | virtual sp<IMemory> pipeMemory() const { return 0; } |
| 358 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 359 | mutable Mutex mLock; |
| 360 | |
| 361 | protected: |
| 362 | |
| 363 | // entry describing an effect being suspended in mSuspendedSessions keyed vector |
| 364 | class SuspendedSessionDesc : public RefBase { |
| 365 | public: |
| 366 | SuspendedSessionDesc() : mRefCount(0) {} |
| 367 | |
| 368 | int mRefCount; // number of active suspend requests |
| 369 | effect_uuid_t mType; // effect type UUID |
| 370 | }; |
| 371 | |
Marco Nelissen | e14a5d6 | 2013-10-03 08:51:24 -0700 | [diff] [blame] | 372 | void acquireWakeLock(int uid = -1); |
| 373 | void acquireWakeLock_l(int uid = -1); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 374 | void releaseWakeLock(); |
| 375 | void releaseWakeLock_l(); |
Marco Nelissen | 462fd2f | 2013-01-14 14:12:05 -0800 | [diff] [blame] | 376 | void updateWakeLockUids(const SortedVector<int> &uids); |
| 377 | void updateWakeLockUids_l(const SortedVector<int> &uids); |
| 378 | void getPowerManager_l(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 379 | void setEffectSuspended_l(const effect_uuid_t *type, |
| 380 | bool suspend, |
| 381 | int sessionId); |
| 382 | // updated mSuspendedSessions when an effect suspended or restored |
| 383 | void updateSuspendedSessions_l(const effect_uuid_t *type, |
| 384 | bool suspend, |
| 385 | int sessionId); |
| 386 | // check if some effects must be suspended when an effect chain is added |
| 387 | void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain); |
| 388 | |
Narayan Kamath | 014e7fa | 2013-10-14 15:03:38 +0100 | [diff] [blame] | 389 | String16 getWakeLockTag(); |
| 390 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 391 | virtual void preExit() { } |
| 392 | |
| 393 | friend class AudioFlinger; // for mEffectChains |
| 394 | |
| 395 | const type_t mType; |
| 396 | |
| 397 | // Used by parameters, config events, addTrack_l, exit |
| 398 | Condition mWaitWorkCV; |
| 399 | |
| 400 | const sp<AudioFlinger> mAudioFlinger; |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 401 | |
Glenn Kasten | deca2ae | 2014-02-07 10:25:56 -0800 | [diff] [blame] | 402 | // updated by PlaybackThread::readOutputParameters_l() or |
| 403 | // RecordThread::readInputParameters_l() |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 404 | uint32_t mSampleRate; |
| 405 | size_t mFrameCount; // output HAL, direct output, record |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 406 | audio_channel_mask_t mChannelMask; |
Glenn Kasten | f6ed423 | 2013-07-16 11:16:27 -0700 | [diff] [blame] | 407 | uint32_t mChannelCount; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 408 | size_t mFrameSize; |
Andy Hung | 463be25 | 2014-07-10 16:56:07 -0700 | [diff] [blame] | 409 | audio_format_t mFormat; // Source format for Recording and |
| 410 | // Sink format for Playback. |
| 411 | // Sink format may be different than |
| 412 | // HAL format if Fastmixer is used. |
| 413 | audio_format_t mHALFormat; |
Glenn Kasten | 70949c4 | 2013-08-06 07:40:12 -0700 | [diff] [blame] | 414 | size_t mBufferSize; // HAL buffer size for read() or write() |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 415 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 416 | Vector< sp<ConfigEvent> > mConfigEvents; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 417 | |
| 418 | // These fields are written and read by thread itself without lock or barrier, |
Glenn Kasten | 4944acb | 2013-08-19 08:39:20 -0700 | [diff] [blame] | 419 | // and read by other threads without lock or barrier via standby(), outDevice() |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 420 | // and inDevice(). |
| 421 | // Because of the absence of a lock or barrier, any other thread that reads |
| 422 | // these fields must use the information in isolation, or be prepared to deal |
| 423 | // with possibility that it might be inconsistent with other information. |
Glenn Kasten | 4944acb | 2013-08-19 08:39:20 -0700 | [diff] [blame] | 424 | bool mStandby; // Whether thread is currently in standby. |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 425 | audio_devices_t mOutDevice; // output device |
| 426 | audio_devices_t mInDevice; // input device |
| 427 | audio_source_t mAudioSource; // (see audio.h, audio_source_t) |
| 428 | |
| 429 | const audio_io_handle_t mId; |
| 430 | Vector< sp<EffectChain> > mEffectChains; |
| 431 | |
| 432 | static const int kNameLength = 16; // prctl(PR_SET_NAME) limit |
| 433 | char mName[kNameLength]; |
| 434 | sp<IPowerManager> mPowerManager; |
| 435 | sp<IBinder> mWakeLockToken; |
| 436 | const sp<PMDeathRecipient> mDeathRecipient; |
| 437 | // list of suspended effects per session and per type. The first vector is |
| 438 | // keyed by session ID, the second by type UUID timeLow field |
| 439 | KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > |
| 440 | mSuspendedSessions; |
Glenn Kasten | ab7d72f | 2013-02-27 09:05:28 -0800 | [diff] [blame] | 441 | static const size_t kLogSize = 4 * 1024; |
Glenn Kasten | 9e58b55 | 2013-01-18 15:09:48 -0800 | [diff] [blame] | 442 | sp<NBLog::Writer> mNBLogWriter; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 443 | }; |
| 444 | |
| 445 | // --- PlaybackThread --- |
| 446 | class PlaybackThread : public ThreadBase { |
| 447 | public: |
| 448 | |
| 449 | #include "PlaybackTracks.h" |
| 450 | |
| 451 | enum mixer_state { |
| 452 | MIXER_IDLE, // no active tracks |
| 453 | MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 454 | MIXER_TRACKS_READY, // at least one active track, and at least one track has data |
| 455 | MIXER_DRAIN_TRACK, // drain currently playing track |
| 456 | MIXER_DRAIN_ALL, // fully drain the hardware |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 457 | // standby mode does not have an enum value |
| 458 | // suspend by audio policy manager is orthogonal to mixer state |
| 459 | }; |
| 460 | |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 461 | // retry count before removing active track in case of underrun on offloaded thread: |
| 462 | // we need to make sure that AudioTrack client has enough time to send large buffers |
| 463 | //FIXME may be more appropriate if expressed in time units. Need to revise how underrun is handled |
| 464 | // for offloaded tracks |
| 465 | static const int8_t kMaxTrackRetriesOffload = 20; |
| 466 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 467 | PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, |
| 468 | audio_io_handle_t id, audio_devices_t device, type_t type); |
| 469 | virtual ~PlaybackThread(); |
| 470 | |
| 471 | void dump(int fd, const Vector<String16>& args); |
| 472 | |
| 473 | // Thread virtuals |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 474 | virtual bool threadLoop(); |
| 475 | |
| 476 | // RefBase |
| 477 | virtual void onFirstRef(); |
| 478 | |
| 479 | protected: |
| 480 | // Code snippets that were lifted up out of threadLoop() |
| 481 | virtual void threadLoop_mix() = 0; |
| 482 | virtual void threadLoop_sleepTime() = 0; |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 483 | virtual ssize_t threadLoop_write(); |
| 484 | virtual void threadLoop_drain(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 485 | virtual void threadLoop_standby(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 486 | virtual void threadLoop_exit(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 487 | virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove); |
| 488 | |
| 489 | // prepareTracks_l reads and writes mActiveTracks, and returns |
| 490 | // the pending set of tracks to remove via Vector 'tracksToRemove'. The caller |
| 491 | // is responsible for clearing or destroying this Vector later on, when it |
| 492 | // is safe to do so. That will drop the final ref count and destroy the tracks. |
| 493 | virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0; |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 494 | void removeTracks_l(const Vector< sp<Track> >& tracksToRemove); |
| 495 | |
| 496 | void writeCallback(); |
Eric Laurent | 3b4529e | 2013-09-05 18:09:19 -0700 | [diff] [blame] | 497 | void resetWriteBlocked(uint32_t sequence); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 498 | void drainCallback(); |
Eric Laurent | 3b4529e | 2013-09-05 18:09:19 -0700 | [diff] [blame] | 499 | void resetDraining(uint32_t sequence); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 500 | |
| 501 | static int asyncCallback(stream_callback_event_t event, void *param, void *cookie); |
| 502 | |
| 503 | virtual bool waitingAsyncCallback(); |
| 504 | virtual bool waitingAsyncCallback_l(); |
| 505 | virtual bool shouldStandby_l(); |
Haynes Mathew George | 4c6a433 | 2014-01-15 12:31:39 -0800 | [diff] [blame] | 506 | virtual void onAddNewTrack_l(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 507 | |
| 508 | // ThreadBase virtuals |
| 509 | virtual void preExit(); |
| 510 | |
| 511 | public: |
| 512 | |
| 513 | virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; } |
| 514 | |
| 515 | // return estimated latency in milliseconds, as reported by HAL |
| 516 | uint32_t latency() const; |
| 517 | // same, but lock must already be held |
| 518 | uint32_t latency_l() const; |
| 519 | |
| 520 | void setMasterVolume(float value); |
| 521 | void setMasterMute(bool muted); |
| 522 | |
| 523 | void setStreamVolume(audio_stream_type_t stream, float value); |
| 524 | void setStreamMute(audio_stream_type_t stream, bool muted); |
| 525 | |
| 526 | float streamVolume(audio_stream_type_t stream) const; |
| 527 | |
| 528 | sp<Track> createTrack_l( |
| 529 | const sp<AudioFlinger::Client>& client, |
| 530 | audio_stream_type_t streamType, |
| 531 | uint32_t sampleRate, |
| 532 | audio_format_t format, |
| 533 | audio_channel_mask_t channelMask, |
Glenn Kasten | 74935e4 | 2013-12-19 08:56:45 -0800 | [diff] [blame] | 534 | size_t *pFrameCount, |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 535 | const sp<IMemory>& sharedBuffer, |
| 536 | int sessionId, |
| 537 | IAudioFlinger::track_flags_t *flags, |
| 538 | pid_t tid, |
Marco Nelissen | 462fd2f | 2013-01-14 14:12:05 -0800 | [diff] [blame] | 539 | int uid, |
Glenn Kasten | 9156ef3 | 2013-08-06 15:39:08 -0700 | [diff] [blame] | 540 | status_t *status /*non-NULL*/); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 541 | |
| 542 | AudioStreamOut* getOutput() const; |
| 543 | AudioStreamOut* clearOutput(); |
| 544 | virtual audio_stream_t* stream() const; |
| 545 | |
| 546 | // a very large number of suspend() will eventually wraparound, but unlikely |
| 547 | void suspend() { (void) android_atomic_inc(&mSuspended); } |
| 548 | void restore() |
| 549 | { |
| 550 | // if restore() is done without suspend(), get back into |
| 551 | // range so that the next suspend() will operate correctly |
| 552 | if (android_atomic_dec(&mSuspended) <= 0) { |
| 553 | android_atomic_release_store(0, &mSuspended); |
| 554 | } |
| 555 | } |
| 556 | bool isSuspended() const |
| 557 | { return android_atomic_acquire_load(&mSuspended) > 0; } |
| 558 | |
| 559 | virtual String8 getParameters(const String8& keys); |
Eric Laurent | 021cf96 | 2014-05-13 10:18:14 -0700 | [diff] [blame] | 560 | virtual void audioConfigChanged(int event, int param = 0); |
Kévin PETIT | 377b2ec | 2014-02-03 12:35:36 +0000 | [diff] [blame] | 561 | status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames); |
Andy Hung | 010a1a1 | 2014-03-13 13:57:33 -0700 | [diff] [blame] | 562 | // FIXME rename mixBuffer() to sinkBuffer() and remove int16_t* dependency. |
| 563 | // Consider also removing and passing an explicit mMainBuffer initialization |
| 564 | // parameter to AF::PlaybackThread::Track::Track(). |
| 565 | int16_t *mixBuffer() const { |
| 566 | return reinterpret_cast<int16_t *>(mSinkBuffer); }; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 567 | |
| 568 | virtual void detachAuxEffect_l(int effectId); |
| 569 | status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track, |
| 570 | int EffectId); |
| 571 | status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track, |
| 572 | int EffectId); |
| 573 | |
| 574 | virtual status_t addEffectChain_l(const sp<EffectChain>& chain); |
| 575 | virtual size_t removeEffectChain_l(const sp<EffectChain>& chain); |
| 576 | virtual uint32_t hasAudioSession(int sessionId) const; |
| 577 | virtual uint32_t getStrategyForSession_l(int sessionId); |
| 578 | |
| 579 | |
| 580 | virtual status_t setSyncEvent(const sp<SyncEvent>& event); |
| 581 | virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const; |
Glenn Kasten | fb1fdc9 | 2013-07-10 17:03:19 -0700 | [diff] [blame] | 582 | |
| 583 | // called with AudioFlinger lock held |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 584 | void invalidateTracks(audio_stream_type_t streamType); |
| 585 | |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 586 | virtual size_t frameCount() const { return mNormalFrameCount; } |
| 587 | |
| 588 | // Return's the HAL's frame count i.e. fast mixer buffer size. |
| 589 | size_t frameCountHAL() const { return mFrameCount; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 590 | |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 591 | status_t getTimestamp_l(AudioTimestamp& timestamp); |
| 592 | |
| 593 | void addPatchTrack(const sp<PatchTrack>& track); |
| 594 | void deletePatchTrack(const sp<PatchTrack>& track); |
| 595 | |
| 596 | virtual void getAudioPortConfig(struct audio_port_config *config); |
Eric Laurent | accc147 | 2013-09-20 09:36:34 -0700 | [diff] [blame] | 597 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 598 | protected: |
Glenn Kasten | deca2ae | 2014-02-07 10:25:56 -0800 | [diff] [blame] | 599 | // updated by readOutputParameters_l() |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 600 | size_t mNormalFrameCount; // normal mixer and effects |
| 601 | |
Andy Hung | 010a1a1 | 2014-03-13 13:57:33 -0700 | [diff] [blame] | 602 | void* mSinkBuffer; // frame size aligned sink buffer |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 603 | |
Andy Hung | 98ef978 | 2014-03-04 14:46:50 -0800 | [diff] [blame] | 604 | // TODO: |
| 605 | // Rearrange the buffer info into a struct/class with |
| 606 | // clear, copy, construction, destruction methods. |
| 607 | // |
| 608 | // mSinkBuffer also has associated with it: |
| 609 | // |
| 610 | // mSinkBufferSize: Sink Buffer Size |
| 611 | // mFormat: Sink Buffer Format |
| 612 | |
Andy Hung | 69aed5f | 2014-02-25 17:24:40 -0800 | [diff] [blame] | 613 | // Mixer Buffer (mMixerBuffer*) |
| 614 | // |
| 615 | // In the case of floating point or multichannel data, which is not in the |
| 616 | // sink format, it is required to accumulate in a higher precision or greater channel count |
| 617 | // buffer before downmixing or data conversion to the sink buffer. |
| 618 | |
| 619 | // Set to "true" to enable the Mixer Buffer otherwise mixer output goes to sink buffer. |
| 620 | bool mMixerBufferEnabled; |
| 621 | |
| 622 | // Storage, 32 byte aligned (may make this alignment a requirement later). |
| 623 | // Due to constraints on mNormalFrameCount, the buffer size is a multiple of 16 frames. |
| 624 | void* mMixerBuffer; |
| 625 | |
| 626 | // Size of mMixerBuffer in bytes: mNormalFrameCount * #channels * sampsize. |
| 627 | size_t mMixerBufferSize; |
| 628 | |
| 629 | // The audio format of mMixerBuffer. Set to AUDIO_FORMAT_PCM_(FLOAT|16_BIT) only. |
| 630 | audio_format_t mMixerBufferFormat; |
| 631 | |
| 632 | // An internal flag set to true by MixerThread::prepareTracks_l() |
| 633 | // when mMixerBuffer contains valid data after mixing. |
| 634 | bool mMixerBufferValid; |
| 635 | |
Andy Hung | 98ef978 | 2014-03-04 14:46:50 -0800 | [diff] [blame] | 636 | // Effects Buffer (mEffectsBuffer*) |
| 637 | // |
| 638 | // In the case of effects data, which is not in the sink format, |
| 639 | // it is required to accumulate in a different buffer before data conversion |
| 640 | // to the sink buffer. |
| 641 | |
| 642 | // Set to "true" to enable the Effects Buffer otherwise effects output goes to sink buffer. |
| 643 | bool mEffectBufferEnabled; |
| 644 | |
| 645 | // Storage, 32 byte aligned (may make this alignment a requirement later). |
| 646 | // Due to constraints on mNormalFrameCount, the buffer size is a multiple of 16 frames. |
| 647 | void* mEffectBuffer; |
| 648 | |
| 649 | // Size of mEffectsBuffer in bytes: mNormalFrameCount * #channels * sampsize. |
| 650 | size_t mEffectBufferSize; |
| 651 | |
| 652 | // The audio format of mEffectsBuffer. Set to AUDIO_FORMAT_PCM_16_BIT only. |
| 653 | audio_format_t mEffectBufferFormat; |
| 654 | |
| 655 | // An internal flag set to true by MixerThread::prepareTracks_l() |
| 656 | // when mEffectsBuffer contains valid data after mixing. |
| 657 | // |
| 658 | // When this is set, all mixer data is routed into the effects buffer |
| 659 | // for any processing (including output processing). |
| 660 | bool mEffectBufferValid; |
| 661 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 662 | // suspend count, > 0 means suspended. While suspended, the thread continues to pull from |
| 663 | // tracks and mix, but doesn't write to HAL. A2DP and SCO HAL implementations can't handle |
| 664 | // concurrent use of both of them, so Audio Policy Service suspends one of the threads to |
| 665 | // workaround that restriction. |
| 666 | // 'volatile' means accessed via atomic operations and no lock. |
| 667 | volatile int32_t mSuspended; |
| 668 | |
| 669 | // FIXME overflows every 6+ hours at 44.1 kHz stereo 16-bit samples |
| 670 | // mFramesWritten would be better, or 64-bit even better |
| 671 | size_t mBytesWritten; |
| 672 | private: |
| 673 | // mMasterMute is in both PlaybackThread and in AudioFlinger. When a |
| 674 | // PlaybackThread needs to find out if master-muted, it checks it's local |
| 675 | // copy rather than the one in AudioFlinger. This optimization saves a lock. |
| 676 | bool mMasterMute; |
| 677 | void setMasterMute_l(bool muted) { mMasterMute = muted; } |
| 678 | protected: |
| 679 | SortedVector< wp<Track> > mActiveTracks; // FIXME check if this could be sp<> |
Marco Nelissen | 462fd2f | 2013-01-14 14:12:05 -0800 | [diff] [blame] | 680 | SortedVector<int> mWakeLockUids; |
| 681 | int mActiveTracksGeneration; |
Eric Laurent | fd47797 | 2013-10-25 18:10:40 -0700 | [diff] [blame] | 682 | wp<Track> mLatestActiveTrack; // latest track added to mActiveTracks |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 683 | |
| 684 | // Allocate a track name for a given channel mask. |
| 685 | // Returns name >= 0 if successful, -1 on failure. |
Andy Hung | e8a1ced | 2014-05-09 15:02:21 -0700 | [diff] [blame] | 686 | virtual int getTrackName_l(audio_channel_mask_t channelMask, |
| 687 | audio_format_t format, int sessionId) = 0; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 688 | virtual void deleteTrackName_l(int name) = 0; |
| 689 | |
| 690 | // Time to sleep between cycles when: |
| 691 | virtual uint32_t activeSleepTimeUs() const; // mixer state MIXER_TRACKS_ENABLED |
| 692 | virtual uint32_t idleSleepTimeUs() const = 0; // mixer state MIXER_IDLE |
| 693 | virtual uint32_t suspendSleepTimeUs() const = 0; // audio policy manager suspended us |
| 694 | // No sleep when mixer state == MIXER_TRACKS_READY; relies on audio HAL stream->write() |
| 695 | // No sleep in standby mode; waits on a condition |
| 696 | |
| 697 | // Code snippets that are temporarily lifted up out of threadLoop() until the merge |
| 698 | void checkSilentMode_l(); |
| 699 | |
| 700 | // Non-trivial for DUPLICATING only |
| 701 | virtual void saveOutputTracks() { } |
| 702 | virtual void clearOutputTracks() { } |
| 703 | |
| 704 | // Cache various calculated values, at threadLoop() entry and after a parameter change |
| 705 | virtual void cacheParameters_l(); |
| 706 | |
| 707 | virtual uint32_t correctLatency_l(uint32_t latency) const; |
| 708 | |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 709 | virtual status_t createAudioPatch_l(const struct audio_patch *patch, |
| 710 | audio_patch_handle_t *handle); |
| 711 | virtual status_t releaseAudioPatch_l(const audio_patch_handle_t handle); |
| 712 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 713 | private: |
| 714 | |
| 715 | friend class AudioFlinger; // for numerous |
| 716 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 717 | PlaybackThread& operator = (const PlaybackThread&); |
| 718 | |
| 719 | status_t addTrack_l(const sp<Track>& track); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 720 | bool destroyTrack_l(const sp<Track>& track); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 721 | void removeTrack_l(const sp<Track>& track); |
Eric Laurent | ede6c3b | 2013-09-19 14:37:46 -0700 | [diff] [blame] | 722 | void broadcast_l(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 723 | |
Glenn Kasten | deca2ae | 2014-02-07 10:25:56 -0800 | [diff] [blame] | 724 | void readOutputParameters_l(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 725 | |
| 726 | virtual void dumpInternals(int fd, const Vector<String16>& args); |
| 727 | void dumpTracks(int fd, const Vector<String16>& args); |
| 728 | |
| 729 | SortedVector< sp<Track> > mTracks; |
Eric Laurent | 223fd5c | 2014-11-11 13:43:36 -0800 | [diff] [blame] | 730 | stream_type_t mStreamTypes[AUDIO_STREAM_CNT]; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 731 | AudioStreamOut *mOutput; |
| 732 | |
| 733 | float mMasterVolume; |
| 734 | nsecs_t mLastWriteTime; |
| 735 | int mNumWrites; |
| 736 | int mNumDelayedWrites; |
| 737 | bool mInWrite; |
| 738 | |
| 739 | // FIXME rename these former local variables of threadLoop to standard "m" names |
| 740 | nsecs_t standbyTime; |
Andy Hung | 25c2dac | 2014-02-27 14:56:00 -0800 | [diff] [blame] | 741 | size_t mSinkBufferSize; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 742 | |
| 743 | // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l() |
| 744 | uint32_t activeSleepTime; |
| 745 | uint32_t idleSleepTime; |
| 746 | |
| 747 | uint32_t sleepTime; |
| 748 | |
| 749 | // mixer status returned by prepareTracks_l() |
| 750 | mixer_state mMixerStatus; // current cycle |
| 751 | // previous cycle when in prepareTracks_l() |
| 752 | mixer_state mMixerStatusIgnoringFastTracks; |
| 753 | // FIXME or a separate ready state per track |
| 754 | |
| 755 | // FIXME move these declarations into the specific sub-class that needs them |
| 756 | // MIXER only |
| 757 | uint32_t sleepTimeShift; |
| 758 | |
| 759 | // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value |
| 760 | nsecs_t standbyDelay; |
| 761 | |
| 762 | // MIXER only |
| 763 | nsecs_t maxPeriod; |
| 764 | |
| 765 | // DUPLICATING only |
| 766 | uint32_t writeFrames; |
| 767 | |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 768 | size_t mBytesRemaining; |
| 769 | size_t mCurrentWriteLength; |
| 770 | bool mUseAsyncWrite; |
Eric Laurent | 3b4529e | 2013-09-05 18:09:19 -0700 | [diff] [blame] | 771 | // mWriteAckSequence contains current write sequence on bits 31-1. The write sequence is |
| 772 | // incremented each time a write(), a flush() or a standby() occurs. |
| 773 | // Bit 0 is set when a write blocks and indicates a callback is expected. |
| 774 | // Bit 0 is reset by the async callback thread calling resetWriteBlocked(). Out of sequence |
| 775 | // callbacks are ignored. |
| 776 | uint32_t mWriteAckSequence; |
| 777 | // mDrainSequence contains current drain sequence on bits 31-1. The drain sequence is |
| 778 | // incremented each time a drain is requested or a flush() or standby() occurs. |
| 779 | // Bit 0 is set when the drain() command is called at the HAL and indicates a callback is |
| 780 | // expected. |
| 781 | // Bit 0 is reset by the async callback thread calling resetDraining(). Out of sequence |
| 782 | // callbacks are ignored. |
| 783 | uint32_t mDrainSequence; |
Eric Laurent | ede6c3b | 2013-09-19 14:37:46 -0700 | [diff] [blame] | 784 | // A condition that must be evaluated by prepareTrack_l() has changed and we must not wait |
| 785 | // for async write callback in the thread loop before evaluating it |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 786 | bool mSignalPending; |
| 787 | sp<AsyncCallbackThread> mCallbackThread; |
| 788 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 789 | private: |
| 790 | // The HAL output sink is treated as non-blocking, but current implementation is blocking |
| 791 | sp<NBAIO_Sink> mOutputSink; |
| 792 | // If a fast mixer is present, the blocking pipe sink, otherwise clear |
| 793 | sp<NBAIO_Sink> mPipeSink; |
| 794 | // The current sink for the normal mixer to write it's (sub)mix, mOutputSink or mPipeSink |
| 795 | sp<NBAIO_Sink> mNormalSink; |
Glenn Kasten | 46909e7 | 2013-02-26 09:20:22 -0800 | [diff] [blame] | 796 | #ifdef TEE_SINK |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 797 | // For dumpsys |
| 798 | sp<NBAIO_Sink> mTeeSink; |
| 799 | sp<NBAIO_Source> mTeeSource; |
Glenn Kasten | 46909e7 | 2013-02-26 09:20:22 -0800 | [diff] [blame] | 800 | #endif |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 801 | uint32_t mScreenState; // cached copy of gScreenState |
Glenn Kasten | ab7d72f | 2013-02-27 09:05:28 -0800 | [diff] [blame] | 802 | static const size_t kFastMixerLogSize = 4 * 1024; |
Glenn Kasten | 9e58b55 | 2013-01-18 15:09:48 -0800 | [diff] [blame] | 803 | sp<NBLog::Writer> mFastMixerNBLogWriter; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 804 | public: |
| 805 | virtual bool hasFastMixer() const = 0; |
Glenn Kasten | 0f11b51 | 2014-01-31 16:18:54 -0800 | [diff] [blame] | 806 | virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex __unused) const |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 807 | { FastTrackUnderruns dummy; return dummy; } |
| 808 | |
| 809 | protected: |
| 810 | // accessed by both binder threads and within threadLoop(), lock on mutex needed |
| 811 | unsigned mFastTrackAvailMask; // bit i set if fast track [i] is available |
Eric Laurent | d1f69b0 | 2014-12-15 14:33:13 -0800 | [diff] [blame^] | 812 | bool mHwSupportsPause; |
| 813 | bool mHwPaused; |
| 814 | bool mFlushPending; |
Glenn Kasten | bd096fd | 2013-08-23 13:53:56 -0700 | [diff] [blame] | 815 | private: |
| 816 | // timestamp latch: |
| 817 | // D input is written by threadLoop_write while mutex is unlocked, and read while locked |
| 818 | // Q output is written while locked, and read while locked |
| 819 | struct { |
| 820 | AudioTimestamp mTimestamp; |
| 821 | uint32_t mUnpresentedFrames; |
Glenn Kasten | 4c053ea | 2014-09-28 14:41:07 -0700 | [diff] [blame] | 822 | KeyedVector<Track *, uint32_t> mFramesReleased; |
Glenn Kasten | bd096fd | 2013-08-23 13:53:56 -0700 | [diff] [blame] | 823 | } mLatchD, mLatchQ; |
Glenn Kasten | 4c053ea | 2014-09-28 14:41:07 -0700 | [diff] [blame] | 824 | bool mLatchDValid; // true means mLatchD is valid |
| 825 | // (except for mFramesReleased which is filled in later), |
| 826 | // and clock it into latch at next opportunity |
Glenn Kasten | bd096fd | 2013-08-23 13:53:56 -0700 | [diff] [blame] | 827 | bool mLatchQValid; // true means mLatchQ is valid |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 828 | }; |
| 829 | |
| 830 | class MixerThread : public PlaybackThread { |
| 831 | public: |
| 832 | MixerThread(const sp<AudioFlinger>& audioFlinger, |
| 833 | AudioStreamOut* output, |
| 834 | audio_io_handle_t id, |
| 835 | audio_devices_t device, |
| 836 | type_t type = MIXER); |
| 837 | virtual ~MixerThread(); |
| 838 | |
| 839 | // Thread virtuals |
| 840 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 841 | virtual bool checkForNewParameter_l(const String8& keyValuePair, |
| 842 | status_t& status); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 843 | virtual void dumpInternals(int fd, const Vector<String16>& args); |
| 844 | |
| 845 | protected: |
| 846 | virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove); |
Andy Hung | e8a1ced | 2014-05-09 15:02:21 -0700 | [diff] [blame] | 847 | virtual int getTrackName_l(audio_channel_mask_t channelMask, |
| 848 | audio_format_t format, int sessionId); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 849 | virtual void deleteTrackName_l(int name); |
| 850 | virtual uint32_t idleSleepTimeUs() const; |
| 851 | virtual uint32_t suspendSleepTimeUs() const; |
| 852 | virtual void cacheParameters_l(); |
| 853 | |
| 854 | // threadLoop snippets |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 855 | virtual ssize_t threadLoop_write(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 856 | virtual void threadLoop_standby(); |
| 857 | virtual void threadLoop_mix(); |
| 858 | virtual void threadLoop_sleepTime(); |
| 859 | virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove); |
| 860 | virtual uint32_t correctLatency_l(uint32_t latency) const; |
| 861 | |
| 862 | AudioMixer* mAudioMixer; // normal mixer |
| 863 | private: |
| 864 | // one-time initialization, no locks required |
Glenn Kasten | 4d23ca3 | 2014-05-13 10:39:51 -0700 | [diff] [blame] | 865 | sp<FastMixer> mFastMixer; // non-0 if there is also a fast mixer |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 866 | sp<AudioWatchdog> mAudioWatchdog; // non-0 if there is an audio watchdog thread |
| 867 | |
| 868 | // contents are not guaranteed to be consistent, no locks required |
| 869 | FastMixerDumpState mFastMixerDumpState; |
| 870 | #ifdef STATE_QUEUE_DUMP |
| 871 | StateQueueObserverDump mStateQueueObserverDump; |
| 872 | StateQueueMutatorDump mStateQueueMutatorDump; |
| 873 | #endif |
| 874 | AudioWatchdogDump mAudioWatchdogDump; |
| 875 | |
| 876 | // accessible only within the threadLoop(), no locks required |
| 877 | // mFastMixer->sq() // for mutating and pushing state |
| 878 | int32_t mFastMixerFutex; // for cold idle |
| 879 | |
| 880 | public: |
Glenn Kasten | 4d23ca3 | 2014-05-13 10:39:51 -0700 | [diff] [blame] | 881 | virtual bool hasFastMixer() const { return mFastMixer != 0; } |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 882 | virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const { |
| 883 | ALOG_ASSERT(fastIndex < FastMixerState::kMaxFastTracks); |
| 884 | return mFastMixerDumpState.mTracks[fastIndex].mUnderruns; |
| 885 | } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 886 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 887 | }; |
| 888 | |
| 889 | class DirectOutputThread : public PlaybackThread { |
| 890 | public: |
| 891 | |
| 892 | DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, |
| 893 | audio_io_handle_t id, audio_devices_t device); |
| 894 | virtual ~DirectOutputThread(); |
| 895 | |
| 896 | // Thread virtuals |
| 897 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 898 | virtual bool checkForNewParameter_l(const String8& keyValuePair, |
| 899 | status_t& status); |
Eric Laurent | e659ef4 | 2014-09-29 13:06:46 -0700 | [diff] [blame] | 900 | virtual void flushHw_l(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 901 | |
| 902 | protected: |
Andy Hung | e8a1ced | 2014-05-09 15:02:21 -0700 | [diff] [blame] | 903 | virtual int getTrackName_l(audio_channel_mask_t channelMask, |
| 904 | audio_format_t format, int sessionId); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 905 | virtual void deleteTrackName_l(int name); |
| 906 | virtual uint32_t activeSleepTimeUs() const; |
| 907 | virtual uint32_t idleSleepTimeUs() const; |
| 908 | virtual uint32_t suspendSleepTimeUs() const; |
| 909 | virtual void cacheParameters_l(); |
| 910 | |
| 911 | // threadLoop snippets |
| 912 | virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove); |
| 913 | virtual void threadLoop_mix(); |
| 914 | virtual void threadLoop_sleepTime(); |
Eric Laurent | d1f69b0 | 2014-12-15 14:33:13 -0800 | [diff] [blame^] | 915 | virtual void threadLoop_exit(); |
| 916 | virtual bool shouldStandby_l(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 917 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 918 | // volumes last sent to audio HAL with stream->set_volume() |
| 919 | float mLeftVolFloat; |
| 920 | float mRightVolFloat; |
| 921 | |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 922 | DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, |
| 923 | audio_io_handle_t id, uint32_t device, ThreadBase::type_t type); |
| 924 | void processVolume_l(Track *track, bool lastTrack); |
| 925 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 926 | // prepareTracks_l() tells threadLoop_mix() the name of the single active track |
| 927 | sp<Track> mActiveTrack; |
| 928 | public: |
| 929 | virtual bool hasFastMixer() const { return false; } |
| 930 | }; |
| 931 | |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 932 | class OffloadThread : public DirectOutputThread { |
| 933 | public: |
| 934 | |
| 935 | OffloadThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, |
| 936 | audio_io_handle_t id, uint32_t device); |
Eric Laurent | 6a51d7e | 2013-10-17 18:59:26 -0700 | [diff] [blame] | 937 | virtual ~OffloadThread() {}; |
Eric Laurent | e659ef4 | 2014-09-29 13:06:46 -0700 | [diff] [blame] | 938 | virtual void flushHw_l(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 939 | |
| 940 | protected: |
| 941 | // threadLoop snippets |
| 942 | virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove); |
| 943 | virtual void threadLoop_exit(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 944 | |
| 945 | virtual bool waitingAsyncCallback(); |
| 946 | virtual bool waitingAsyncCallback_l(); |
Haynes Mathew George | 4c6a433 | 2014-01-15 12:31:39 -0800 | [diff] [blame] | 947 | virtual void onAddNewTrack_l(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 948 | |
| 949 | private: |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 950 | size_t mPausedWriteLength; // length in bytes of write interrupted by pause |
| 951 | size_t mPausedBytesRemaining; // bytes still waiting in mixbuffer after resume |
Eric Laurent | d7e5922 | 2013-11-15 12:02:28 -0800 | [diff] [blame] | 952 | wp<Track> mPreviousTrack; // used to detect track switch |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 953 | }; |
| 954 | |
| 955 | class AsyncCallbackThread : public Thread { |
| 956 | public: |
| 957 | |
Eric Laurent | 4de9559 | 2013-09-26 15:28:21 -0700 | [diff] [blame] | 958 | AsyncCallbackThread(const wp<PlaybackThread>& playbackThread); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 959 | |
| 960 | virtual ~AsyncCallbackThread(); |
| 961 | |
| 962 | // Thread virtuals |
| 963 | virtual bool threadLoop(); |
| 964 | |
| 965 | // RefBase |
| 966 | virtual void onFirstRef(); |
| 967 | |
| 968 | void exit(); |
Eric Laurent | 3b4529e | 2013-09-05 18:09:19 -0700 | [diff] [blame] | 969 | void setWriteBlocked(uint32_t sequence); |
| 970 | void resetWriteBlocked(); |
| 971 | void setDraining(uint32_t sequence); |
| 972 | void resetDraining(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 973 | |
| 974 | private: |
Eric Laurent | 4de9559 | 2013-09-26 15:28:21 -0700 | [diff] [blame] | 975 | const wp<PlaybackThread> mPlaybackThread; |
Eric Laurent | 3b4529e | 2013-09-05 18:09:19 -0700 | [diff] [blame] | 976 | // mWriteAckSequence corresponds to the last write sequence passed by the offload thread via |
| 977 | // setWriteBlocked(). The sequence is shifted one bit to the left and the lsb is used |
| 978 | // to indicate that the callback has been received via resetWriteBlocked() |
Eric Laurent | 4de9559 | 2013-09-26 15:28:21 -0700 | [diff] [blame] | 979 | uint32_t mWriteAckSequence; |
Eric Laurent | 3b4529e | 2013-09-05 18:09:19 -0700 | [diff] [blame] | 980 | // mDrainSequence corresponds to the last drain sequence passed by the offload thread via |
| 981 | // setDraining(). The sequence is shifted one bit to the left and the lsb is used |
| 982 | // to indicate that the callback has been received via resetDraining() |
Eric Laurent | 4de9559 | 2013-09-26 15:28:21 -0700 | [diff] [blame] | 983 | uint32_t mDrainSequence; |
| 984 | Condition mWaitWorkCV; |
| 985 | Mutex mLock; |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 986 | }; |
| 987 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 988 | class DuplicatingThread : public MixerThread { |
| 989 | public: |
| 990 | DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread, |
| 991 | audio_io_handle_t id); |
| 992 | virtual ~DuplicatingThread(); |
| 993 | |
| 994 | // Thread virtuals |
| 995 | void addOutputTrack(MixerThread* thread); |
| 996 | void removeOutputTrack(MixerThread* thread); |
| 997 | uint32_t waitTimeMs() const { return mWaitTimeMs; } |
| 998 | protected: |
| 999 | virtual uint32_t activeSleepTimeUs() const; |
| 1000 | |
| 1001 | private: |
| 1002 | bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks); |
| 1003 | protected: |
| 1004 | // threadLoop snippets |
| 1005 | virtual void threadLoop_mix(); |
| 1006 | virtual void threadLoop_sleepTime(); |
Eric Laurent | bfb1b83 | 2013-01-07 09:53:42 -0800 | [diff] [blame] | 1007 | virtual ssize_t threadLoop_write(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1008 | virtual void threadLoop_standby(); |
| 1009 | virtual void cacheParameters_l(); |
| 1010 | |
| 1011 | private: |
| 1012 | // called from threadLoop, addOutputTrack, removeOutputTrack |
| 1013 | virtual void updateWaitTime_l(); |
| 1014 | protected: |
| 1015 | virtual void saveOutputTracks(); |
| 1016 | virtual void clearOutputTracks(); |
| 1017 | private: |
| 1018 | |
| 1019 | uint32_t mWaitTimeMs; |
| 1020 | SortedVector < sp<OutputTrack> > outputTracks; |
| 1021 | SortedVector < sp<OutputTrack> > mOutputTracks; |
| 1022 | public: |
| 1023 | virtual bool hasFastMixer() const { return false; } |
| 1024 | }; |
| 1025 | |
| 1026 | |
| 1027 | // record thread |
Glenn Kasten | 6dd62fb | 2013-12-05 16:35:58 -0800 | [diff] [blame] | 1028 | class RecordThread : public ThreadBase |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1029 | { |
| 1030 | public: |
| 1031 | |
Glenn Kasten | 6dd62fb | 2013-12-05 16:35:58 -0800 | [diff] [blame] | 1032 | class RecordTrack; |
| 1033 | class ResamplerBufferProvider : public AudioBufferProvider |
| 1034 | // derives from AudioBufferProvider interface for use by resampler |
| 1035 | { |
| 1036 | public: |
| 1037 | ResamplerBufferProvider(RecordTrack* recordTrack) : mRecordTrack(recordTrack) { } |
| 1038 | virtual ~ResamplerBufferProvider() { } |
| 1039 | // AudioBufferProvider interface |
| 1040 | virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts); |
| 1041 | virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer); |
| 1042 | private: |
| 1043 | RecordTrack * const mRecordTrack; |
| 1044 | }; |
| 1045 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1046 | #include "RecordTracks.h" |
| 1047 | |
| 1048 | RecordThread(const sp<AudioFlinger>& audioFlinger, |
| 1049 | AudioStreamIn *input, |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1050 | audio_io_handle_t id, |
Eric Laurent | d3922f7 | 2013-02-01 17:57:04 -0800 | [diff] [blame] | 1051 | audio_devices_t outDevice, |
Glenn Kasten | 46909e7 | 2013-02-26 09:20:22 -0800 | [diff] [blame] | 1052 | audio_devices_t inDevice |
| 1053 | #ifdef TEE_SINK |
| 1054 | , const sp<NBAIO_Sink>& teeSink |
| 1055 | #endif |
| 1056 | ); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1057 | virtual ~RecordThread(); |
| 1058 | |
| 1059 | // no addTrack_l ? |
| 1060 | void destroyTrack_l(const sp<RecordTrack>& track); |
| 1061 | void removeTrack_l(const sp<RecordTrack>& track); |
| 1062 | |
| 1063 | void dumpInternals(int fd, const Vector<String16>& args); |
| 1064 | void dumpTracks(int fd, const Vector<String16>& args); |
| 1065 | |
| 1066 | // Thread virtuals |
| 1067 | virtual bool threadLoop(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1068 | |
| 1069 | // RefBase |
| 1070 | virtual void onFirstRef(); |
| 1071 | |
| 1072 | virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; } |
Glenn Kasten | e198c36 | 2013-08-13 09:13:36 -0700 | [diff] [blame] | 1073 | |
Glenn Kasten | b880f5e | 2014-05-07 08:43:45 -0700 | [diff] [blame] | 1074 | virtual sp<MemoryDealer> readOnlyHeap() const { return mReadOnlyHeap; } |
| 1075 | |
Glenn Kasten | 6dbb5e3 | 2014-05-13 10:38:42 -0700 | [diff] [blame] | 1076 | virtual sp<IMemory> pipeMemory() const { return mPipeMemory; } |
| 1077 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1078 | sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l( |
| 1079 | const sp<AudioFlinger::Client>& client, |
| 1080 | uint32_t sampleRate, |
| 1081 | audio_format_t format, |
| 1082 | audio_channel_mask_t channelMask, |
Glenn Kasten | 74935e4 | 2013-12-19 08:56:45 -0800 | [diff] [blame] | 1083 | size_t *pFrameCount, |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1084 | int sessionId, |
Glenn Kasten | 7df8c0b | 2014-07-03 12:23:29 -0700 | [diff] [blame] | 1085 | size_t *notificationFrames, |
Marco Nelissen | 462fd2f | 2013-01-14 14:12:05 -0800 | [diff] [blame] | 1086 | int uid, |
Glenn Kasten | ddb0ccf | 2013-07-31 16:14:50 -0700 | [diff] [blame] | 1087 | IAudioFlinger::track_flags_t *flags, |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1088 | pid_t tid, |
Glenn Kasten | 9156ef3 | 2013-08-06 15:39:08 -0700 | [diff] [blame] | 1089 | status_t *status /*non-NULL*/); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1090 | |
| 1091 | status_t start(RecordTrack* recordTrack, |
| 1092 | AudioSystem::sync_event_t event, |
| 1093 | int triggerSession); |
| 1094 | |
| 1095 | // ask the thread to stop the specified track, and |
| 1096 | // return true if the caller should then do it's part of the stopping process |
Glenn Kasten | a8356f6 | 2013-07-25 14:37:52 -0700 | [diff] [blame] | 1097 | bool stop(RecordTrack* recordTrack); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1098 | |
| 1099 | void dump(int fd, const Vector<String16>& args); |
| 1100 | AudioStreamIn* clearInput(); |
| 1101 | virtual audio_stream_t* stream() const; |
| 1102 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1103 | |
Eric Laurent | 1035194 | 2014-05-08 18:49:52 -0700 | [diff] [blame] | 1104 | virtual bool checkForNewParameter_l(const String8& keyValuePair, |
| 1105 | status_t& status); |
| 1106 | virtual void cacheParameters_l() {} |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1107 | virtual String8 getParameters(const String8& keys); |
Eric Laurent | 021cf96 | 2014-05-13 10:18:14 -0700 | [diff] [blame] | 1108 | virtual void audioConfigChanged(int event, int param = 0); |
Eric Laurent | 1c333e2 | 2014-05-20 10:48:17 -0700 | [diff] [blame] | 1109 | virtual status_t createAudioPatch_l(const struct audio_patch *patch, |
| 1110 | audio_patch_handle_t *handle); |
| 1111 | virtual status_t releaseAudioPatch_l(const audio_patch_handle_t handle); |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 1112 | |
| 1113 | void addPatchRecord(const sp<PatchRecord>& record); |
| 1114 | void deletePatchRecord(const sp<PatchRecord>& record); |
| 1115 | |
Glenn Kasten | deca2ae | 2014-02-07 10:25:56 -0800 | [diff] [blame] | 1116 | void readInputParameters_l(); |
Glenn Kasten | 5f972c0 | 2014-01-13 09:59:31 -0800 | [diff] [blame] | 1117 | virtual uint32_t getInputFramesLost(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1118 | |
| 1119 | virtual status_t addEffectChain_l(const sp<EffectChain>& chain); |
| 1120 | virtual size_t removeEffectChain_l(const sp<EffectChain>& chain); |
| 1121 | virtual uint32_t hasAudioSession(int sessionId) const; |
| 1122 | |
| 1123 | // Return the set of unique session IDs across all tracks. |
| 1124 | // The keys are the session IDs, and the associated values are meaningless. |
| 1125 | // FIXME replace by Set [and implement Bag/Multiset for other uses]. |
| 1126 | KeyedVector<int, bool> sessionIds() const; |
| 1127 | |
| 1128 | virtual status_t setSyncEvent(const sp<SyncEvent>& event); |
| 1129 | virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const; |
| 1130 | |
| 1131 | static void syncStartEventCallback(const wp<SyncEvent>& event); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1132 | |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 1133 | virtual size_t frameCount() const { return mFrameCount; } |
Glenn Kasten | 6dbb5e3 | 2014-05-13 10:38:42 -0700 | [diff] [blame] | 1134 | bool hasFastCapture() const { return mFastCapture != 0; } |
Eric Laurent | 83b8808 | 2014-06-20 18:31:16 -0700 | [diff] [blame] | 1135 | virtual void getAudioPortConfig(struct audio_port_config *config); |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 1136 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1137 | private: |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1138 | // Enter standby if not already in standby, and set mStandby flag |
Glenn Kasten | 93e471f | 2013-08-19 08:40:07 -0700 | [diff] [blame] | 1139 | void standbyIfNotAlreadyInStandby(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1140 | |
| 1141 | // Call the HAL standby method unconditionally, and don't change mStandby flag |
Glenn Kasten | e198c36 | 2013-08-13 09:13:36 -0700 | [diff] [blame] | 1142 | void inputStandBy(); |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1143 | |
| 1144 | AudioStreamIn *mInput; |
| 1145 | SortedVector < sp<RecordTrack> > mTracks; |
Glenn Kasten | 2b80640 | 2013-11-20 16:37:38 -0800 | [diff] [blame] | 1146 | // mActiveTracks has dual roles: it indicates the current active track(s), and |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1147 | // is used together with mStartStopCond to indicate start()/stop() progress |
Glenn Kasten | 2b80640 | 2013-11-20 16:37:38 -0800 | [diff] [blame] | 1148 | SortedVector< sp<RecordTrack> > mActiveTracks; |
| 1149 | // generation counter for mActiveTracks |
| 1150 | int mActiveTracksGen; |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1151 | Condition mStartStopCond; |
Glenn Kasten | 9b58f63 | 2013-07-16 11:37:48 -0700 | [diff] [blame] | 1152 | |
Glenn Kasten | 8594843 | 2013-08-19 12:09:05 -0700 | [diff] [blame] | 1153 | // resampler converts input at HAL Hz to output at AudioRecord client Hz |
| 1154 | int16_t *mRsmpInBuffer; // see new[] for details on the size |
| 1155 | size_t mRsmpInFrames; // size of resampler input in frames |
| 1156 | size_t mRsmpInFramesP2;// size rounded up to a power-of-2 |
Glenn Kasten | 6dd62fb | 2013-12-05 16:35:58 -0800 | [diff] [blame] | 1157 | |
| 1158 | // rolling index that is never cleared |
Glenn Kasten | 8594843 | 2013-08-19 12:09:05 -0700 | [diff] [blame] | 1159 | int32_t mRsmpInRear; // last filled frame + 1 |
Glenn Kasten | 8594843 | 2013-08-19 12:09:05 -0700 | [diff] [blame] | 1160 | |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1161 | // For dumpsys |
| 1162 | const sp<NBAIO_Sink> mTeeSink; |
Glenn Kasten | b880f5e | 2014-05-07 08:43:45 -0700 | [diff] [blame] | 1163 | |
| 1164 | const sp<MemoryDealer> mReadOnlyHeap; |
Glenn Kasten | 6dbb5e3 | 2014-05-13 10:38:42 -0700 | [diff] [blame] | 1165 | |
| 1166 | // one-time initialization, no locks required |
| 1167 | sp<FastCapture> mFastCapture; // non-0 if there is also a fast capture |
| 1168 | // FIXME audio watchdog thread |
| 1169 | |
| 1170 | // contents are not guaranteed to be consistent, no locks required |
| 1171 | FastCaptureDumpState mFastCaptureDumpState; |
| 1172 | #ifdef STATE_QUEUE_DUMP |
| 1173 | // FIXME StateQueue observer and mutator dump fields |
| 1174 | #endif |
| 1175 | // FIXME audio watchdog dump |
| 1176 | |
| 1177 | // accessible only within the threadLoop(), no locks required |
| 1178 | // mFastCapture->sq() // for mutating and pushing state |
| 1179 | int32_t mFastCaptureFutex; // for cold idle |
| 1180 | |
| 1181 | // The HAL input source is treated as non-blocking, |
| 1182 | // but current implementation is blocking |
| 1183 | sp<NBAIO_Source> mInputSource; |
| 1184 | // The source for the normal capture thread to read from: mInputSource or mPipeSource |
| 1185 | sp<NBAIO_Source> mNormalSource; |
| 1186 | // If a fast capture is present, the non-blocking pipe sink written to by fast capture, |
| 1187 | // otherwise clear |
| 1188 | sp<NBAIO_Sink> mPipeSink; |
| 1189 | // If a fast capture is present, the non-blocking pipe source read by normal thread, |
| 1190 | // otherwise clear |
| 1191 | sp<NBAIO_Source> mPipeSource; |
| 1192 | // Depth of pipe from fast capture to normal thread and fast clients, always power of 2 |
| 1193 | size_t mPipeFramesP2; |
| 1194 | // If a fast capture is present, the Pipe as IMemory, otherwise clear |
| 1195 | sp<IMemory> mPipeMemory; |
| 1196 | |
| 1197 | static const size_t kFastCaptureLogSize = 4 * 1024; |
| 1198 | sp<NBLog::Writer> mFastCaptureNBLogWriter; |
| 1199 | |
| 1200 | bool mFastTrackAvail; // true if fast track available |
Eric Laurent | 81784c3 | 2012-11-19 14:55:58 -0800 | [diff] [blame] | 1201 | }; |