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 //--- Audio Effect Management 23 24 // Interface implemented by the EffectModule parent or owner (e.g an EffectChain) to abstract 25 // interactions between the EffectModule and the reset of the audio framework. 26 class EffectCallbackInterface : public RefBase { 27 public: 28 ~EffectCallbackInterface() override = default; 29 30 // Trivial methods usually implemented with help from ThreadBase 31 virtual audio_io_handle_t io() const = 0; 32 virtual bool isOutput() const = 0; 33 virtual bool isOffload() const = 0; 34 virtual bool isOffloadOrDirect() const = 0; 35 virtual bool isOffloadOrMmap() const = 0; 36 virtual bool isSpatializer() const = 0; 37 virtual uint32_t sampleRate() const = 0; 38 virtual audio_channel_mask_t inChannelMask(int id) const = 0; 39 virtual uint32_t inChannelCount(int id) const = 0; 40 virtual audio_channel_mask_t outChannelMask() const = 0; 41 virtual uint32_t outChannelCount() const = 0; 42 virtual audio_channel_mask_t hapticChannelMask() const = 0; 43 virtual size_t frameCount() const = 0; 44 45 // Non trivial methods usually implemented with help from ThreadBase: 46 // pay attention to mutex locking order latency()47 virtual uint32_t latency() const { return 0; } 48 virtual status_t addEffectToHal(const sp<EffectHalInterface>& effect) = 0; 49 virtual status_t removeEffectFromHal(const sp<EffectHalInterface>& effect) = 0; 50 virtual void setVolumeForOutput(float left, float right) const = 0; 51 virtual bool disconnectEffectHandle(EffectHandle *handle, bool unpinIfLast) = 0; 52 virtual void checkSuspendOnEffectEnabled(const sp<EffectBase>& effect, 53 bool enabled, 54 bool threadLocked) = 0; 55 virtual void onEffectEnable(const sp<EffectBase>& effect) = 0; 56 virtual void onEffectDisable(const sp<EffectBase>& effect) = 0; 57 58 // Methods usually implemented with help from AudioFlinger: pay attention to mutex locking order 59 virtual status_t createEffectHal(const effect_uuid_t *pEffectUuid, 60 int32_t sessionId, int32_t deviceId, sp<EffectHalInterface> *effect) = 0; 61 virtual status_t allocateHalBuffer(size_t size, sp<EffectBufferHalInterface>* buffer) = 0; 62 virtual bool updateOrphanEffectChains(const sp<EffectBase>& effect) = 0; 63 64 // Methods usually implemented with help from EffectChain: pay attention to mutex locking order 65 virtual product_strategy_t strategy() const = 0; 66 virtual int32_t activeTrackCnt() const = 0; 67 virtual void resetVolume() = 0; 68 69 virtual wp<EffectChain> chain() const = 0; 70 71 virtual bool isAudioPolicyReady() const = 0; 72 }; 73 74 // EffectBase(EffectModule) and EffectChain classes both have their own mutex to protect 75 // state changes or resource modifications. Always respect the following order 76 // if multiple mutexes must be acquired to avoid cross deadlock: 77 // AudioFlinger -> ThreadBase -> EffectChain -> EffectBase(EffectModule) 78 // AudioHandle -> ThreadBase -> EffectChain -> EffectBase(EffectModule) 79 80 // NOTE: When implementing the EffectCallbackInterface, in an EffectChain or other, it is important 81 // to pay attention to this locking order as some callback methods can be called from a state where 82 // EffectModule and/or EffectChain mutexes are held. 83 84 // In addition, methods that lock the AudioPolicyService mutex (getOutputForEffect(), 85 // startOutput(), getInputForAttr(), releaseInput()...) should never be called with AudioFlinger or 86 // Threadbase mutex locked to avoid cross deadlock with other clients calling AudioPolicyService 87 // methods that in turn call AudioFlinger thus locking the same mutexes in the reverse order. 88 89 90 // The EffectBase class contains common properties, state and behavior for and EffectModule or 91 // other derived classes managing an audio effect instance within the effect framework. 92 // It also contains the class mutex (see comment on locking order above). 93 class EffectBase : public RefBase { 94 public: 95 EffectBase(const sp<EffectCallbackInterface>& callback, 96 effect_descriptor_t *desc, 97 int id, 98 audio_session_t sessionId, 99 bool pinned); 100 101 ~EffectBase() override = default; 102 103 enum effect_state { 104 IDLE, 105 RESTART, 106 STARTING, 107 ACTIVE, 108 STOPPING, 109 STOPPED, 110 DESTROYED 111 }; 112 id()113 int id() const { return mId; } state()114 effect_state state() const { 115 return mState; 116 } sessionId()117 audio_session_t sessionId() const { 118 return mSessionId; 119 } desc()120 const effect_descriptor_t& desc() const { return mDescriptor; } isOffloadable()121 bool isOffloadable() const 122 { return (mDescriptor.flags & EFFECT_FLAG_OFFLOAD_SUPPORTED) != 0; } isImplementationSoftware()123 bool isImplementationSoftware() const 124 { return (mDescriptor.flags & EFFECT_FLAG_HW_ACC_MASK) == 0; } isProcessImplemented()125 bool isProcessImplemented() const 126 { return (mDescriptor.flags & EFFECT_FLAG_NO_PROCESS) == 0; } isVolumeControl()127 bool isVolumeControl() const 128 { return (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) 129 == EFFECT_FLAG_VOLUME_CTRL; } isVolumeMonitor()130 bool isVolumeMonitor() const 131 { return (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) 132 == EFFECT_FLAG_VOLUME_MONITOR; } 133 134 virtual status_t setEnabled(bool enabled, bool fromHandle); 135 status_t setEnabled_l(bool enabled); 136 bool isEnabled() const; 137 138 void setSuspended(bool suspended); 139 bool suspended() const; 140 command(int32_t __unused,const std::vector<uint8_t> & __unused,int32_t __unused,std::vector<uint8_t> * __unused)141 virtual status_t command(int32_t __unused, 142 const std::vector<uint8_t>& __unused, 143 int32_t __unused, 144 std::vector<uint8_t>* __unused) { return NO_ERROR; }; 145 146 // mCallback is atomic so this can be lock-free. setCallback(const sp<EffectCallbackInterface> & callback)147 void setCallback(const sp<EffectCallbackInterface>& callback) { mCallback = callback; } getCallback()148 sp<EffectCallbackInterface> getCallback() const { return mCallback.load(); } 149 150 status_t addHandle(EffectHandle *handle); 151 ssize_t disconnectHandle(EffectHandle *handle, bool unpinIfLast); 152 ssize_t removeHandle(EffectHandle *handle); 153 ssize_t removeHandle_l(EffectHandle *handle); 154 EffectHandle* controlHandle_l(); 155 bool purgeHandles(); 156 157 void checkSuspendOnEffectEnabled(bool enabled, bool threadLocked); 158 isPinned()159 bool isPinned() const { return mPinned; } unPin()160 void unPin() { mPinned = false; } 161 lock()162 void lock() ACQUIRE(mLock) { mLock.lock(); } unlock()163 void unlock() RELEASE(mLock) { mLock.unlock(); } 164 165 status_t updatePolicyState(); 166 asEffectModule()167 virtual sp<EffectModule> asEffectModule() { return nullptr; } asDeviceEffectProxy()168 virtual sp<DeviceEffectProxy> asDeviceEffectProxy() { return nullptr; } 169 170 void dump(int fd, const Vector<String16>& args); 171 172 protected: isInternal_l()173 bool isInternal_l() const { 174 for (auto handle : mHandles) { 175 if (handle->client() != nullptr) { 176 return false; 177 } 178 } 179 return true; 180 } 181 182 private: 183 friend class AudioFlinger; // for mHandles 184 bool mPinned = false; 185 186 DISALLOW_COPY_AND_ASSIGN(EffectBase); 187 188 mutable Mutex mLock; // mutex for process, commands and handles list protection 189 mediautils::atomic_sp<EffectCallbackInterface> mCallback; // parent effect chain 190 const int mId; // this instance unique ID 191 const audio_session_t mSessionId; // audio session ID 192 const effect_descriptor_t mDescriptor;// effect descriptor received from effect engine 193 effect_state mState = IDLE; // current activation state 194 // effect is suspended: temporarily disabled by framework 195 bool mSuspended = false; 196 197 Vector<EffectHandle *> mHandles; // list of client handles 198 // First handle in mHandles has highest priority and controls the effect module 199 200 // Audio policy effect state management 201 // Mutex protecting transactions with audio policy manager as mLock cannot 202 // be held to avoid cross deadlocks with audio policy mutex 203 Mutex mPolicyLock; 204 // Effect is registered in APM or not 205 bool mPolicyRegistered = false; 206 // Effect enabled state communicated to APM. Enabled state corresponds to 207 // state requested by the EffectHandle with control 208 bool mPolicyEnabled = false; 209 }; 210 211 // The EffectModule class is a wrapper object controlling the effect engine implementation 212 // in the effect library. It prevents concurrent calls to process() and command() functions 213 // from different client threads. It keeps a list of EffectHandle objects corresponding 214 // to all client applications using this effect and notifies applications of effect state, 215 // control or parameter changes. It manages the activation state machine to send appropriate 216 // reset, enable, disable commands to effect engine and provide volume 217 // ramping when effects are activated/deactivated. 218 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by 219 // the attached track(s) to accumulate their auxiliary channel. 220 class EffectModule : public EffectBase { 221 public: 222 EffectModule(const sp<EffectCallbackInterface>& callabck, 223 effect_descriptor_t *desc, 224 int id, 225 audio_session_t sessionId, 226 bool pinned, 227 audio_port_handle_t deviceId); 228 virtual ~EffectModule(); 229 230 void process(); 231 bool updateState(); 232 status_t command(int32_t cmdCode, 233 const std::vector<uint8_t>& cmdData, 234 int32_t maxReplySize, 235 std::vector<uint8_t>* reply) override; 236 237 void reset_l(); 238 status_t configure(); 239 status_t init(); 240 status()241 uint32_t status() { 242 return mStatus; 243 } 244 245 bool isProcessEnabled() const; 246 bool isOffloadedOrDirect() const; 247 bool isVolumeControlEnabled() const; 248 249 void setInBuffer(const sp<EffectBufferHalInterface>& buffer); inBuffer()250 int16_t *inBuffer() const { 251 return mInBuffer != 0 ? reinterpret_cast<int16_t*>(mInBuffer->ptr()) : NULL; 252 } 253 void setOutBuffer(const sp<EffectBufferHalInterface>& buffer); outBuffer()254 int16_t *outBuffer() const { 255 return mOutBuffer != 0 ? reinterpret_cast<int16_t*>(mOutBuffer->ptr()) : NULL; 256 } 257 258 // Updates the access mode if it is out of date. May issue a new effect configure. updateAccessMode()259 void updateAccessMode() { 260 if (requiredEffectBufferAccessMode() != mConfig.outputCfg.accessMode) { 261 configure(); 262 } 263 } 264 265 status_t setDevices(const AudioDeviceTypeAddrVector &devices); 266 status_t setInputDevice(const AudioDeviceTypeAddr &device); 267 status_t setVolume(uint32_t *left, uint32_t *right, bool controller); 268 status_t setMode(audio_mode_t mode); 269 status_t setAudioSource(audio_source_t source); 270 status_t start(); 271 status_t stop(); 272 273 status_t setOffloaded(bool offloaded, audio_io_handle_t io); 274 bool isOffloaded() const; 275 void addEffectToHal_l(); 276 void release_l(); 277 asEffectModule()278 sp<EffectModule> asEffectModule() override { return this; } 279 280 static bool isHapticGenerator(const effect_uuid_t* type); 281 bool isHapticGenerator() const; 282 283 status_t setHapticIntensity(int id, os::HapticScale intensity); 284 status_t setVibratorInfo(const media::AudioVibratorInfo& vibratorInfo); 285 286 status_t getConfigs(audio_config_base_t* inputCfg, 287 audio_config_base_t* outputCfg, 288 bool* isOutput) const; 289 290 void dump(int fd, const Vector<String16>& args); 291 292 private: 293 friend class AudioFlinger; // for mHandles 294 295 // Maximum time allocated to effect engines to complete the turn off sequence 296 static const uint32_t MAX_DISABLE_TIME_MS = 10000; 297 298 DISALLOW_COPY_AND_ASSIGN(EffectModule); 299 300 status_t start_l(); 301 status_t stop_l(); 302 status_t removeEffectFromHal_l(); 303 status_t sendSetAudioDevicesCommand(const AudioDeviceTypeAddrVector &devices, uint32_t cmdCode); requiredEffectBufferAccessMode()304 effect_buffer_access_e requiredEffectBufferAccessMode() const { 305 return mConfig.inputCfg.buffer.raw == mConfig.outputCfg.buffer.raw 306 ? EFFECT_BUFFER_ACCESS_WRITE : EFFECT_BUFFER_ACCESS_ACCUMULATE; 307 } 308 309 status_t setVolumeInternal(uint32_t *left, uint32_t *right, bool controller); 310 311 312 effect_config_t mConfig; // input and output audio configuration 313 sp<EffectHalInterface> mEffectInterface; // Effect module HAL 314 sp<EffectBufferHalInterface> mInBuffer; // Buffers for interacting with HAL 315 sp<EffectBufferHalInterface> mOutBuffer; 316 status_t mStatus; // initialization status 317 // First handle in mHandles has highest priority and controls the effect module 318 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after 319 // sending disable command. 320 uint32_t mDisableWaitCnt; // current process() calls count during disable period. 321 bool mOffloaded; // effect is currently offloaded to the audio DSP 322 // effect has been added to this HAL input stream 323 audio_io_handle_t mCurrentHalStream = AUDIO_IO_HANDLE_NONE; 324 bool mIsOutput; // direction of the AF thread 325 326 #ifdef FLOAT_EFFECT_CHAIN 327 bool mSupportsFloat; // effect supports float processing 328 sp<EffectBufferHalInterface> mInConversionBuffer; // Buffers for HAL conversion if needed. 329 sp<EffectBufferHalInterface> mOutConversionBuffer; 330 uint32_t mInChannelCountRequested; 331 uint32_t mOutChannelCountRequested; 332 #endif 333 334 class AutoLockReentrant { 335 public: AutoLockReentrant(Mutex & mutex,pid_t allowedTid)336 AutoLockReentrant(Mutex& mutex, pid_t allowedTid) 337 : mMutex(gettid() == allowedTid ? nullptr : &mutex) 338 { 339 if (mMutex != nullptr) mMutex->lock(); 340 } ~AutoLockReentrant()341 ~AutoLockReentrant() { 342 if (mMutex != nullptr) mMutex->unlock(); 343 } 344 private: 345 Mutex * const mMutex; 346 }; 347 348 static constexpr pid_t INVALID_PID = (pid_t)-1; 349 // this tid is allowed to call setVolume() without acquiring the mutex. 350 pid_t mSetVolumeReentrantTid = INVALID_PID; 351 }; 352 353 // The EffectHandle class implements the IEffect interface. It provides resources 354 // to receive parameter updates, keeps track of effect control 355 // ownership and state and has a pointer to the EffectModule object it is controlling. 356 // There is one EffectHandle object for each application controlling (or using) 357 // an effect module. 358 // The EffectHandle is obtained by calling AudioFlinger::createEffect(). 359 class EffectHandle: public android::media::BnEffect { 360 public: 361 362 EffectHandle(const sp<EffectBase>& effect, 363 const sp<AudioFlinger::Client>& client, 364 const sp<media::IEffectClient>& effectClient, 365 int32_t priority, bool notifyFramesProcessed); 366 virtual ~EffectHandle(); 367 status_t onTransact( 368 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) override; 369 virtual status_t initCheck(); 370 371 // IEffect 372 android::binder::Status enable(int32_t* _aidl_return) override; 373 android::binder::Status disable(int32_t* _aidl_return) override; 374 android::binder::Status command(int32_t cmdCode, 375 const std::vector<uint8_t>& cmdData, 376 int32_t maxResponseSize, 377 std::vector<uint8_t>* response, 378 int32_t* _aidl_return) override; 379 android::binder::Status disconnect() override; 380 android::binder::Status getCblk(media::SharedFileRegion* _aidl_return) override; 381 android::binder::Status getConfig(media::EffectConfig* _config, 382 int32_t* _aidl_return) override; 383 client()384 sp<Client> client() const { return mClient; } 385 386 private: 387 void disconnect(bool unpinIfLast); 388 389 // Give or take control of effect module 390 // - hasControl: true if control is given, false if removed 391 // - signal: true client app should be signaled of change, false otherwise 392 // - enabled: state of the effect when control is passed 393 void setControl(bool hasControl, bool signal, bool enabled); 394 void commandExecuted(uint32_t cmdCode, 395 const std::vector<uint8_t>& cmdData, 396 const std::vector<uint8_t>& replyData); 397 void setEnabled(bool enabled); enabled()398 bool enabled() const { return mEnabled; } 399 400 void framesProcessed(int32_t frames) const; 401 402 // Getters effect()403 wp<EffectBase> effect() const { return mEffect; } id()404 int id() const { 405 sp<EffectBase> effect = mEffect.promote(); 406 if (effect == 0) { 407 return 0; 408 } 409 return effect->id(); 410 } priority()411 int priority() const { return mPriority; } hasControl()412 bool hasControl() const { return mHasControl; } disconnected()413 bool disconnected() const { return mDisconnected; } 414 415 void dumpToBuffer(char* buffer, size_t size); 416 417 private: 418 friend class AudioFlinger; // for mEffect, mHasControl, mEnabled 419 DISALLOW_COPY_AND_ASSIGN(EffectHandle); 420 421 Mutex mLock; // protects IEffect method calls 422 const wp<EffectBase> mEffect; // pointer to controlled EffectModule 423 const sp<media::IEffectClient> mEffectClient; // callback interface for client notifications 424 /*const*/ sp<Client> mClient; // client for shared memory allocation, see 425 // disconnect() 426 sp<IMemory> mCblkMemory; // shared memory for control block 427 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via 428 // shared memory 429 uint8_t* mBuffer; // pointer to parameter area in shared memory 430 int mPriority; // client application priority to control the effect 431 bool mHasControl; // true if this handle is controlling the effect 432 bool mEnabled; // cached enable state: needed when the effect is 433 // restored after being suspended 434 bool mDisconnected; // Set to true by disconnect() 435 const bool mNotifyFramesProcessed; // true if the client callback event 436 // EVENT_FRAMES_PROCESSED must be generated 437 }; 438 439 // the EffectChain class represents a group of effects associated to one audio session. 440 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread). 441 // The EffectChain with session ID AUDIO_SESSION_OUTPUT_MIX contains global effects applied 442 // to the output mix. 443 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to 444 // tracks) are insert only. The EffectChain maintains an ordered list of effect module, the 445 // order corresponding in the effect process order. When attached to a track (session ID != 446 // AUDIO_SESSION_OUTPUT_MIX), 447 // it also provide it's own input buffer used by the track as accumulation buffer. 448 class EffectChain : public RefBase { 449 public: 450 EffectChain(const wp<ThreadBase>& wThread, audio_session_t sessionId); 451 virtual ~EffectChain(); 452 453 // special key used for an entry in mSuspendedEffects keyed vector 454 // corresponding to a suspend all request. 455 static const int kKeyForSuspendAll = 0; 456 457 // minimum duration during which we force calling effect process when last track on 458 // a session is stopped or removed to allow effect tail to be rendered 459 static const int kProcessTailDurationMs = 1000; 460 461 void process_l(); 462 lock()463 void lock() ACQUIRE(mLock) { 464 mLock.lock(); 465 } unlock()466 void unlock() RELEASE(mLock) { 467 mLock.unlock(); 468 } 469 470 status_t createEffect_l(sp<EffectModule>& effect, 471 effect_descriptor_t *desc, 472 int id, 473 audio_session_t sessionId, 474 bool pinned); 475 status_t addEffect_l(const sp<EffectModule>& handle); 476 status_t addEffect_ll(const sp<EffectModule>& handle); 477 size_t removeEffect_l(const sp<EffectModule>& handle, bool release = false); 478 sessionId()479 audio_session_t sessionId() const { return mSessionId; } setSessionId(audio_session_t sessionId)480 void setSessionId(audio_session_t sessionId) { mSessionId = sessionId; } 481 482 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor); 483 sp<EffectModule> getEffectFromId_l(int id); 484 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type); 485 std::vector<int> getEffectIds(); 486 // FIXME use float to improve the dynamic range 487 bool setVolume_l(uint32_t *left, uint32_t *right, bool force = false); 488 void resetVolume_l(); 489 void setDevices_l(const AudioDeviceTypeAddrVector &devices); 490 void setInputDevice_l(const AudioDeviceTypeAddr &device); 491 void setMode_l(audio_mode_t mode); 492 void setAudioSource_l(audio_source_t source); 493 setInBuffer(const sp<EffectBufferHalInterface> & buffer)494 void setInBuffer(const sp<EffectBufferHalInterface>& buffer) { 495 mInBuffer = buffer; 496 } inBuffer()497 effect_buffer_t *inBuffer() const { 498 return mInBuffer != 0 ? reinterpret_cast<effect_buffer_t*>(mInBuffer->ptr()) : NULL; 499 } setOutBuffer(const sp<EffectBufferHalInterface> & buffer)500 void setOutBuffer(const sp<EffectBufferHalInterface>& buffer) { 501 mOutBuffer = buffer; 502 } outBuffer()503 effect_buffer_t *outBuffer() const { 504 return mOutBuffer != 0 ? reinterpret_cast<effect_buffer_t*>(mOutBuffer->ptr()) : NULL; 505 } 506 incTrackCnt()507 void incTrackCnt() { android_atomic_inc(&mTrackCnt); } decTrackCnt()508 void decTrackCnt() { android_atomic_dec(&mTrackCnt); } trackCnt()509 int32_t trackCnt() const { return android_atomic_acquire_load(&mTrackCnt); } 510 incActiveTrackCnt()511 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt); 512 mTailBufferCount = mMaxTailBuffers; } decActiveTrackCnt()513 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); } activeTrackCnt()514 int32_t activeTrackCnt() const { return android_atomic_acquire_load(&mActiveTrackCnt); } 515 strategy()516 product_strategy_t strategy() const { return mStrategy; } setStrategy(product_strategy_t strategy)517 void setStrategy(product_strategy_t strategy) 518 { mStrategy = strategy; } 519 520 // suspend or restore effects of the specified type. The number of suspend requests is counted 521 // and restore occurs once all suspend requests are cancelled. 522 void setEffectSuspended_l(const effect_uuid_t *type, 523 bool suspend); 524 // suspend all eligible effects 525 void setEffectSuspendedAll_l(bool suspend); 526 // check if effects should be suspended or restored when a given effect is enable or disabled 527 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect, bool enabled); 528 529 void clearInputBuffer(); 530 531 // At least one non offloadable effect in the chain is enabled 532 bool isNonOffloadableEnabled(); 533 bool isNonOffloadableEnabled_l(); 534 535 void syncHalEffectsState(); 536 537 // flags is an ORed set of audio_output_flags_t which is updated on return. 538 void checkOutputFlagCompatibility(audio_output_flags_t *flags) const; 539 540 // flags is an ORed set of audio_input_flags_t which is updated on return. 541 void checkInputFlagCompatibility(audio_input_flags_t *flags) const; 542 543 // Is this EffectChain compatible with the RAW audio flag. 544 bool isRawCompatible() const; 545 546 // Is this EffectChain compatible with the FAST audio flag. 547 bool isFastCompatible() const; 548 549 // Is this EffectChain compatible with the bit-perfect audio flag. 550 bool isBitPerfectCompatible() const; 551 552 // isCompatibleWithThread_l() must be called with thread->mLock held 553 bool isCompatibleWithThread_l(const sp<ThreadBase>& thread) const; 554 555 bool containsHapticGeneratingEffect_l(); 556 557 void setHapticIntensity_l(int id, os::HapticScale intensity); 558 effectCallback()559 sp<EffectCallbackInterface> effectCallback() const { return mEffectCallback; } thread()560 wp<ThreadBase> thread() const { return mEffectCallback->thread(); } 561 isFirstEffect(int id)562 bool isFirstEffect(int id) const { return !mEffects.isEmpty() && id == mEffects[0]->id(); } 563 564 void dump(int fd, const Vector<String16>& args); 565 566 private: 567 568 // For transaction consistency, please consider holding the EffectChain lock before 569 // calling the EffectChain::EffectCallback methods, excepting 570 // createEffectHal and allocateHalBuffer. 571 // 572 // This prevents migration of the EffectChain to another PlaybackThread 573 // for the purposes of the EffectCallback. 574 class EffectCallback : public EffectCallbackInterface { 575 public: 576 // Note: ctors taking a weak pointer to their owner must not promote it 577 // during construction (but may keep a reference for later promotion). EffectCallback(const wp<EffectChain> & owner,const wp<ThreadBase> & thread)578 EffectCallback(const wp<EffectChain>& owner, 579 const wp<ThreadBase>& thread) 580 : mChain(owner) 581 , mThread(thread) 582 , mAudioFlinger(*gAudioFlinger) { 583 sp<ThreadBase> base = thread.promote(); 584 if (base != nullptr) { 585 mThreadType = base->type(); 586 } else { 587 mThreadType = ThreadBase::MIXER; // assure a consistent value. 588 } 589 } 590 591 status_t createEffectHal(const effect_uuid_t *pEffectUuid, 592 int32_t sessionId, int32_t deviceId, sp<EffectHalInterface> *effect) override; 593 status_t allocateHalBuffer(size_t size, sp<EffectBufferHalInterface>* buffer) override; 594 bool updateOrphanEffectChains(const sp<EffectBase>& effect) override; 595 596 audio_io_handle_t io() const override; 597 bool isOutput() const override; 598 bool isOffload() const override; 599 bool isOffloadOrDirect() const override; 600 bool isOffloadOrMmap() const override; 601 bool isSpatializer() const override; 602 603 uint32_t sampleRate() const override; 604 audio_channel_mask_t inChannelMask(int id) const override; 605 uint32_t inChannelCount(int id) const override; 606 audio_channel_mask_t outChannelMask() const override; 607 uint32_t outChannelCount() const override; 608 audio_channel_mask_t hapticChannelMask() const override; 609 size_t frameCount() const override; 610 uint32_t latency() const override; 611 612 status_t addEffectToHal(const sp<EffectHalInterface>& effect) override; 613 status_t removeEffectFromHal(const sp<EffectHalInterface>& effect) override; 614 bool disconnectEffectHandle(EffectHandle *handle, bool unpinIfLast) override; 615 void setVolumeForOutput(float left, float right) const override; 616 617 // check if effects should be suspended/restored when a given effect is enable/disabled 618 void checkSuspendOnEffectEnabled(const sp<EffectBase>& effect, 619 bool enabled, bool threadLocked) override; 620 void resetVolume() override; 621 product_strategy_t strategy() const override; 622 int32_t activeTrackCnt() const override; 623 void onEffectEnable(const sp<EffectBase>& effect) override; 624 void onEffectDisable(const sp<EffectBase>& effect) override; 625 chain()626 wp<EffectChain> chain() const override { return mChain; } 627 isAudioPolicyReady()628 bool isAudioPolicyReady() const override { 629 return mAudioFlinger.isAudioPolicyReady(); 630 } 631 thread()632 wp<ThreadBase> thread() const { return mThread.load(); } 633 setThread(const sp<ThreadBase> & thread)634 void setThread(const sp<ThreadBase>& thread) { 635 mThread = thread; 636 mThreadType = thread->type(); 637 } 638 639 private: 640 const wp<EffectChain> mChain; 641 mediautils::atomic_wp<ThreadBase> mThread; 642 AudioFlinger &mAudioFlinger; // implementation detail: outer instance always exists. 643 ThreadBase::type_t mThreadType; 644 }; 645 646 friend class AudioFlinger; // for mThread, mEffects 647 DISALLOW_COPY_AND_ASSIGN(EffectChain); 648 649 class SuspendedEffectDesc : public RefBase { 650 public: SuspendedEffectDesc()651 SuspendedEffectDesc() : mRefCount(0) {} 652 653 int mRefCount; // > 0 when suspended 654 effect_uuid_t mType; 655 wp<EffectModule> mEffect; 656 }; 657 658 // get a list of effect modules to suspend when an effect of the type 659 // passed is enabled. 660 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects); 661 662 // get an effect module if it is currently enable 663 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type); 664 // true if the effect whose descriptor is passed can be suspended 665 // OEMs can modify the rules implemented in this method to exclude specific effect 666 // types or implementations from the suspend/restore mechanism. 667 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc); 668 669 static bool isEffectEligibleForBtNrecSuspend(const effect_uuid_t *type); 670 671 void clearInputBuffer_l(); 672 673 void setThread(const sp<ThreadBase>& thread); 674 675 // true if any effect module within the chain has volume control 676 bool hasVolumeControlEnabled_l() const; 677 678 void setVolumeForOutput_l(uint32_t left, uint32_t right); 679 680 ssize_t getInsertIndex(const effect_descriptor_t& desc); 681 682 mutable Mutex mLock; // mutex protecting effect list 683 Vector< sp<EffectModule> > mEffects; // list of effect modules 684 audio_session_t mSessionId; // audio session ID 685 sp<EffectBufferHalInterface> mInBuffer; // chain input buffer 686 sp<EffectBufferHalInterface> mOutBuffer; // chain output buffer 687 688 // 'volatile' here means these are accessed with atomic operations instead of mutex 689 volatile int32_t mActiveTrackCnt; // number of active tracks connected 690 volatile int32_t mTrackCnt; // number of tracks connected 691 692 int32_t mTailBufferCount; // current effect tail buffer count 693 int32_t mMaxTailBuffers; // maximum effect tail buffers 694 int mVolumeCtrlIdx; // index of insert effect having control over volume 695 uint32_t mLeftVolume; // previous volume on left channel 696 uint32_t mRightVolume; // previous volume on right channel 697 uint32_t mNewLeftVolume; // new volume on left channel 698 uint32_t mNewRightVolume; // new volume on right channel 699 product_strategy_t mStrategy; // strategy for this effect chain 700 // mSuspendedEffects lists all effects currently suspended in the chain. 701 // Use effect type UUID timelow field as key. There is no real risk of identical 702 // timeLow fields among effect type UUIDs. 703 // Updated by setEffectSuspended_l() and setEffectSuspendedAll_l() only. 704 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects; 705 706 const sp<EffectCallback> mEffectCallback; 707 }; 708 709 class DeviceEffectProxy : public EffectBase { 710 public: DeviceEffectProxy(const AudioDeviceTypeAddr & device,const sp<DeviceEffectManagerCallback> & callback,effect_descriptor_t * desc,int id,bool notifyFramesProcessed)711 DeviceEffectProxy (const AudioDeviceTypeAddr& device, 712 const sp<DeviceEffectManagerCallback>& callback, 713 effect_descriptor_t *desc, int id, bool notifyFramesProcessed) 714 : EffectBase(callback, desc, id, AUDIO_SESSION_DEVICE, false), 715 mDevice(device), mManagerCallback(callback), 716 mMyCallback(new ProxyCallback(wp<DeviceEffectProxy>(this), callback)), 717 mNotifyFramesProcessed(notifyFramesProcessed) {} 718 719 status_t setEnabled(bool enabled, bool fromHandle) override; asDeviceEffectProxy()720 sp<DeviceEffectProxy> asDeviceEffectProxy() override { return this; } 721 722 status_t init(const std::map<audio_patch_handle_t, PatchPanel::Patch>& patches); 723 status_t onCreatePatch(audio_patch_handle_t patchHandle, const PatchPanel::Patch& patch); 724 void onReleasePatch(audio_patch_handle_t patchHandle); 725 726 size_t removeEffect(const sp<EffectModule>& effect); 727 728 status_t addEffectToHal(const sp<EffectHalInterface>& effect); 729 status_t removeEffectFromHal(const sp<EffectHalInterface>& effect); 730 device()731 const AudioDeviceTypeAddr& device() { return mDevice; }; 732 bool isOutput() const; 733 uint32_t sampleRate() const; 734 audio_channel_mask_t channelMask() const; 735 uint32_t channelCount() const; 736 737 void dump(int fd, int spaces); 738 739 private: 740 741 class ProxyCallback : public EffectCallbackInterface { 742 public: 743 // Note: ctors taking a weak pointer to their owner must not promote it 744 // during construction (but may keep a reference for later promotion). ProxyCallback(const wp<DeviceEffectProxy> & owner,const sp<DeviceEffectManagerCallback> & callback)745 ProxyCallback(const wp<DeviceEffectProxy>& owner, 746 const sp<DeviceEffectManagerCallback>& callback) 747 : mProxy(owner), mManagerCallback(callback) {} 748 749 status_t createEffectHal(const effect_uuid_t *pEffectUuid, 750 int32_t sessionId, int32_t deviceId, sp<EffectHalInterface> *effect) override; allocateHalBuffer(size_t size __unused,sp<EffectBufferHalInterface> * buffer __unused)751 status_t allocateHalBuffer(size_t size __unused, 752 sp<EffectBufferHalInterface>* buffer __unused) override { return NO_ERROR; } updateOrphanEffectChains(const sp<EffectBase> & effect __unused)753 bool updateOrphanEffectChains(const sp<EffectBase>& effect __unused) override { 754 return false; 755 } 756 io()757 audio_io_handle_t io() const override { return AUDIO_IO_HANDLE_NONE; } 758 bool isOutput() const override; isOffload()759 bool isOffload() const override { return false; } isOffloadOrDirect()760 bool isOffloadOrDirect() const override { return false; } isOffloadOrMmap()761 bool isOffloadOrMmap() const override { return false; } isSpatializer()762 bool isSpatializer() const override { return false; } 763 764 uint32_t sampleRate() const override; 765 audio_channel_mask_t inChannelMask(int id) const override; 766 uint32_t inChannelCount(int id) const override; 767 audio_channel_mask_t outChannelMask() const override; 768 uint32_t outChannelCount() const override; hapticChannelMask()769 audio_channel_mask_t hapticChannelMask() const override { return AUDIO_CHANNEL_NONE; } frameCount()770 size_t frameCount() const override { return 0; } latency()771 uint32_t latency() const override { return 0; } 772 773 status_t addEffectToHal(const sp<EffectHalInterface>& effect) override; 774 status_t removeEffectFromHal(const sp<EffectHalInterface>& effect) override; 775 776 bool disconnectEffectHandle(EffectHandle *handle, bool unpinIfLast) override; setVolumeForOutput(float left __unused,float right __unused)777 void setVolumeForOutput(float left __unused, float right __unused) const override {} 778 checkSuspendOnEffectEnabled(const sp<EffectBase> & effect __unused,bool enabled __unused,bool threadLocked __unused)779 void checkSuspendOnEffectEnabled(const sp<EffectBase>& effect __unused, 780 bool enabled __unused, bool threadLocked __unused) override {} resetVolume()781 void resetVolume() override {} strategy()782 product_strategy_t strategy() const override { return static_cast<product_strategy_t>(0); } activeTrackCnt()783 int32_t activeTrackCnt() const override { return 0; } 784 void onEffectEnable(const sp<EffectBase>& effect __unused) override; 785 void onEffectDisable(const sp<EffectBase>& effect __unused) override; 786 chain()787 wp<EffectChain> chain() const override { return nullptr; } 788 isAudioPolicyReady()789 bool isAudioPolicyReady() const override { 790 return mManagerCallback->isAudioPolicyReady(); 791 } 792 793 int newEffectId(); 794 795 private: 796 const wp<DeviceEffectProxy> mProxy; 797 const sp<DeviceEffectManagerCallback> mManagerCallback; 798 }; 799 800 status_t checkPort(const PatchPanel::Patch& patch, const struct audio_port_config *port, 801 sp<EffectHandle> *handle); 802 803 const AudioDeviceTypeAddr mDevice; 804 const sp<DeviceEffectManagerCallback> mManagerCallback; 805 const sp<ProxyCallback> mMyCallback; 806 807 Mutex mProxyLock; 808 std::map<audio_patch_handle_t, sp<EffectHandle>> mEffectHandles; // protected by mProxyLock 809 sp<EffectModule> mHalEffect; // protected by mProxyLock 810 struct audio_port_config mDevicePort = { .id = AUDIO_PORT_HANDLE_NONE }; 811 const bool mNotifyFramesProcessed; 812 }; 813