Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2023 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #pragma once |
| 18 | |
Andy Hung | c6f227f | 2023-07-18 18:31:50 -0700 | [diff] [blame] | 19 | #include <android/media/IAudioTrackCallback.h> |
| 20 | #include <android/media/IEffectClient.h> |
| 21 | #include <audiomanager/IAudioManager.h> |
Andy Hung | 954b971 | 2023-08-28 18:36:53 -0700 | [diff] [blame] | 22 | #include <audio_utils/mutex.h> |
Andy Hung | c6f227f | 2023-07-18 18:31:50 -0700 | [diff] [blame] | 23 | #include <audio_utils/MelProcessor.h> |
| 24 | #include <binder/MemoryDealer.h> |
| 25 | #include <datapath/AudioStreamIn.h> |
| 26 | #include <datapath/AudioStreamOut.h> |
| 27 | #include <datapath/VolumeInterface.h> |
| 28 | #include <fastpath/FastMixerDumpState.h> |
| 29 | #include <media/DeviceDescriptorBase.h> |
| 30 | #include <media/MmapStreamInterface.h> |
| 31 | #include <media/audiohal/StreamHalInterface.h> |
| 32 | #include <media/nblog/NBLog.h> |
| 33 | #include <timing/SyncEvent.h> |
Andy Hung | c6f227f | 2023-07-18 18:31:50 -0700 | [diff] [blame] | 34 | #include <utils/RefBase.h> |
| 35 | #include <vibrator/ExternalVibration.h> |
| 36 | |
| 37 | #include <optional> |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 38 | |
| 39 | namespace android { |
| 40 | |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 41 | class IAfDirectOutputThread; |
| 42 | class IAfDuplicatingThread; |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 43 | class IAfMmapCaptureThread; |
| 44 | class IAfMmapPlaybackThread; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 45 | class IAfPlaybackThread; |
| 46 | class IAfRecordThread; |
Andy Hung | c6f227f | 2023-07-18 18:31:50 -0700 | [diff] [blame] | 47 | |
| 48 | class IAfEffectChain; |
| 49 | class IAfEffectHandle; |
| 50 | class IAfEffectModule; |
| 51 | class IAfPatchPanel; |
| 52 | class IAfPatchRecord; |
| 53 | class IAfPatchTrack; |
| 54 | class IAfRecordTrack; |
| 55 | class IAfTrack; |
| 56 | class IAfTrackBase; |
| 57 | class Client; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 58 | class MelReporter; |
| 59 | |
Andy Hung | 25a80ac | 2023-07-19 12:47:35 -0700 | [diff] [blame] | 60 | // Used internally for Threads.cpp and AudioFlinger.cpp |
| 61 | struct stream_type_t { |
| 62 | float volume = 1.f; |
| 63 | bool mute = false; |
| 64 | }; |
| 65 | |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 66 | // Note this is exposed through IAfThreadBase::afThreadCallback() |
| 67 | // and hence may be used by the Effect / Track framework. |
| 68 | class IAfThreadCallback : public virtual RefBase { |
| 69 | public: |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 70 | virtual audio_utils::mutex& mutex() const |
| 71 | RETURN_CAPABILITY(audio_utils::AudioFlinger_Mutex) = 0; |
| 72 | virtual bool isNonOffloadableGlobalEffectEnabled_l() const |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 73 | REQUIRES(mutex()) EXCLUDES_ThreadBase_Mutex = 0; // Tracks |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 74 | virtual audio_unique_id_t nextUniqueId(audio_unique_id_use_t use) = 0; |
| 75 | virtual bool btNrecIsOff() const = 0; |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 76 | virtual float masterVolume_l() const |
| 77 | REQUIRES(mutex()) = 0; |
| 78 | virtual bool masterMute_l() const |
| 79 | REQUIRES(mutex()) = 0; |
| 80 | virtual float getMasterBalance_l() const |
| 81 | REQUIRES(mutex()) = 0; |
| 82 | virtual bool streamMute_l(audio_stream_type_t stream) const |
| 83 | REQUIRES(mutex()) = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 84 | virtual audio_mode_t getMode() const = 0; |
| 85 | virtual bool isLowRamDevice() const = 0; |
| 86 | virtual bool isAudioPolicyReady() const = 0; // Effects |
Andy Hung | 1d2d2aea | 2023-07-19 16:22:58 -0700 | [diff] [blame] | 87 | virtual uint32_t getScreenState() const = 0; |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 88 | virtual std::optional<media::AudioVibratorInfo> getDefaultVibratorInfo_l() const |
| 89 | REQUIRES(mutex()) = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 90 | virtual const sp<IAfPatchPanel>& getPatchPanel() const = 0; |
| 91 | virtual const sp<MelReporter>& getMelReporter() const = 0; |
| 92 | virtual const sp<EffectsFactoryHalInterface>& getEffectsFactoryHal() const = 0; |
| 93 | virtual sp<IAudioManager> getOrCreateAudioManager() = 0; // Tracks |
| 94 | |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 95 | virtual bool updateOrphanEffectChains(const sp<IAfEffectModule>& effect) |
| 96 | EXCLUDES_AudioFlinger_Mutex = 0; |
| 97 | virtual status_t moveEffectChain_ll(audio_session_t sessionId, |
| 98 | IAfPlaybackThread* srcThread, IAfPlaybackThread* dstThread) |
| 99 | REQUIRES(mutex(), audio_utils::ThreadBase_Mutex) = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 100 | |
| 101 | virtual void requestLogMerge() = 0; |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 102 | virtual sp<NBLog::Writer> newWriter_l(size_t size, const char *name) |
| 103 | REQUIRES(mutex()) = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 104 | virtual void unregisterWriter(const sp<NBLog::Writer>& writer) = 0; |
| 105 | |
| 106 | virtual sp<audioflinger::SyncEvent> createSyncEvent(AudioSystem::sync_event_t type, |
| 107 | audio_session_t triggerSession, |
| 108 | audio_session_t listenerSession, |
| 109 | const audioflinger::SyncEventCallback& callBack, |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 110 | const wp<IAfTrackBase>& cookie) |
| 111 | EXCLUDES_AudioFlinger_Mutex = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 112 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 113 | // Hold either AudioFlinger::mutex or ThreadBase::mutex |
| 114 | virtual void ioConfigChanged_l(audio_io_config_event_t event, |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 115 | const sp<AudioIoDescriptor>& ioDesc, |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 116 | pid_t pid = 0) EXCLUDES_AudioFlinger_ClientMutex = 0; |
| 117 | virtual void onNonOffloadableGlobalEffectEnable() EXCLUDES_AudioFlinger_Mutex = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 118 | virtual void onSupportedLatencyModesChanged( |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 119 | audio_io_handle_t output, const std::vector<audio_latency_mode_t>& modes) |
| 120 | EXCLUDES_AudioFlinger_ClientMutex = 0; |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 121 | }; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 122 | |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 123 | class IAfThreadBase : public virtual RefBase { |
| 124 | public: |
| 125 | enum type_t { |
| 126 | MIXER, // Thread class is MixerThread |
| 127 | DIRECT, // Thread class is DirectOutputThread |
| 128 | DUPLICATING, // Thread class is DuplicatingThread |
| 129 | RECORD, // Thread class is RecordThread |
| 130 | OFFLOAD, // Thread class is OffloadThread |
| 131 | MMAP_PLAYBACK, // Thread class for MMAP playback stream |
| 132 | MMAP_CAPTURE, // Thread class for MMAP capture stream |
| 133 | SPATIALIZER, // |
| 134 | BIT_PERFECT, // Thread class for BitPerfectThread |
| 135 | // When adding a value, also update IAfThreadBase::threadTypeToString() |
| 136 | }; |
| 137 | |
| 138 | static const char* threadTypeToString(type_t type); |
Andy Hung | 25a80ac | 2023-07-19 12:47:35 -0700 | [diff] [blame] | 139 | static std::string formatToString(audio_format_t format); // compliant for MediaMetrics |
Andy Hung | 81994d6 | 2023-07-20 21:44:14 -0700 | [diff] [blame] | 140 | static bool isValidPcmSinkChannelMask(audio_channel_mask_t channelMask); |
| 141 | static bool isValidPcmSinkFormat(audio_format_t format); |
| 142 | |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 143 | virtual status_t readyToRun() = 0; |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 144 | virtual void clearPowerManager() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 145 | virtual status_t initCheck() const = 0; |
| 146 | virtual type_t type() const = 0; |
| 147 | virtual bool isDuplicating() const = 0; |
| 148 | virtual audio_io_handle_t id() const = 0; |
| 149 | virtual uint32_t sampleRate() const = 0; |
| 150 | virtual audio_channel_mask_t channelMask() const = 0; |
| 151 | virtual audio_channel_mask_t mixerChannelMask() const = 0; |
| 152 | virtual audio_format_t format() const = 0; |
| 153 | virtual uint32_t channelCount() const = 0; |
| 154 | |
| 155 | // Called by AudioFlinger::frameCount(audio_io_handle_t output) and effects, |
| 156 | // and returns the [normal mix] buffer's frame count. |
| 157 | virtual size_t frameCount() const = 0; |
| 158 | virtual audio_channel_mask_t hapticChannelMask() const = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 159 | virtual uint32_t hapticChannelCount() const = 0; |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 160 | virtual uint32_t latency_l() const = 0; // NO_THREAD_SAFETY_ANALYSIS |
| 161 | virtual void setVolumeForOutput_l(float left, float right) const REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 162 | |
| 163 | // Return's the HAL's frame count i.e. fast mixer buffer size. |
| 164 | virtual size_t frameCountHAL() const = 0; |
| 165 | virtual size_t frameSize() const = 0; |
| 166 | // Should be "virtual status_t requestExitAndWait()" and override same |
| 167 | // method in Thread, but Thread::requestExitAndWait() is not yet virtual. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 168 | virtual void exit() EXCLUDES_ThreadBase_Mutex = 0; |
| 169 | virtual bool checkForNewParameter_l(const String8& keyValuePair, status_t& status) |
| 170 | REQUIRES(mutex()) = 0; |
| 171 | virtual status_t setParameters(const String8& keyValuePairs) EXCLUDES_ThreadBase_Mutex = 0; |
| 172 | virtual String8 getParameters(const String8& keys) EXCLUDES_ThreadBase_Mutex = 0; |
| 173 | virtual void ioConfigChanged_l( |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 174 | audio_io_config_event_t event, pid_t pid = 0, |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 175 | audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE) |
| 176 | /* holds either AF::mutex or TB::mutex */ = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 177 | |
| 178 | // sendConfigEvent_l() must be called with ThreadBase::mLock held |
| 179 | // Can temporarily release the lock if waiting for a reply from |
| 180 | // processConfigEvents_l(). |
| 181 | // status_t sendConfigEvent_l(sp<ConfigEvent>& event); |
| 182 | virtual void sendIoConfigEvent( |
| 183 | audio_io_config_event_t event, pid_t pid = 0, |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 184 | audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 185 | virtual void sendIoConfigEvent_l( |
| 186 | audio_io_config_event_t event, pid_t pid = 0, |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 187 | audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE) REQUIRES(mutex()) = 0; |
| 188 | virtual void sendPrioConfigEvent(pid_t pid, pid_t tid, int32_t prio, bool forApp) |
| 189 | EXCLUDES_ThreadBase_Mutex = 0; |
| 190 | virtual void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio, bool forApp) |
| 191 | REQUIRES(mutex()) = 0; |
| 192 | virtual status_t sendSetParameterConfigEvent_l(const String8& keyValuePair) |
| 193 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 194 | virtual status_t sendCreateAudioPatchConfigEvent( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 195 | const struct audio_patch* patch, audio_patch_handle_t* handle) |
| 196 | EXCLUDES_ThreadBase_Mutex = 0; |
| 197 | virtual status_t sendReleaseAudioPatchConfigEvent(audio_patch_handle_t handle) |
| 198 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 199 | virtual status_t sendUpdateOutDeviceConfigEvent( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 200 | const DeviceDescriptorBaseVector& outDevices) EXCLUDES_ThreadBase_Mutex = 0; |
| 201 | virtual void sendResizeBufferConfigEvent_l(int32_t maxSharedAudioHistoryMs) |
| 202 | REQUIRES(mutex()) = 0; |
| 203 | virtual void sendCheckOutputStageEffectsEvent() EXCLUDES_ThreadBase_Mutex = 0; |
| 204 | virtual void sendCheckOutputStageEffectsEvent_l() |
| 205 | REQUIRES(mutex()) = 0; |
| 206 | virtual void sendHalLatencyModesChangedEvent_l() |
| 207 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 208 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 209 | virtual void processConfigEvents_l() |
| 210 | REQUIRES(mutex()) = 0; |
| 211 | virtual void setCheckOutputStageEffects() = 0; // no mutex needed |
| 212 | virtual void cacheParameters_l() |
| 213 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 214 | virtual status_t createAudioPatch_l( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 215 | const struct audio_patch* patch, audio_patch_handle_t* handle) |
| 216 | REQUIRES(mutex()) = 0; |
| 217 | virtual status_t releaseAudioPatch_l(const audio_patch_handle_t handle) |
| 218 | REQUIRES(mutex()) = 0; |
| 219 | virtual void updateOutDevices(const DeviceDescriptorBaseVector& outDevices) |
| 220 | EXCLUDES_ThreadBase_Mutex = 0; |
| 221 | virtual void toAudioPortConfig(struct audio_port_config* config) |
| 222 | EXCLUDES_ThreadBase_Mutex = 0; |
| 223 | virtual void resizeInputBuffer_l(int32_t maxSharedAudioHistoryMs) |
| 224 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 225 | |
| 226 | // see note at declaration of mStandby, mOutDevice and mInDevice |
| 227 | virtual bool inStandby() const = 0; |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 228 | virtual const DeviceTypeSet outDeviceTypes_l() const REQUIRES(mutex()) = 0; |
| 229 | virtual audio_devices_t inDeviceType_l() const REQUIRES(mutex()) = 0; |
| 230 | virtual DeviceTypeSet getDeviceTypes_l() const REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 231 | virtual const AudioDeviceTypeAddrVector& outDeviceTypeAddrs() const = 0; |
| 232 | virtual const AudioDeviceTypeAddr& inDeviceTypeAddr() const = 0; |
| 233 | virtual bool isOutput() const = 0; |
| 234 | virtual bool isOffloadOrMmap() const = 0; |
| 235 | virtual sp<StreamHalInterface> stream() const = 0; |
| 236 | virtual sp<IAfEffectHandle> createEffect_l( |
| 237 | const sp<Client>& client, |
| 238 | const sp<media::IEffectClient>& effectClient, |
| 239 | int32_t priority, |
| 240 | audio_session_t sessionId, |
| 241 | effect_descriptor_t* desc, |
| 242 | int* enabled, |
| 243 | status_t* status /*non-NULL*/, |
| 244 | bool pinned, |
| 245 | bool probe, |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 246 | bool notifyFramesProcessed) |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 247 | REQUIRES(audio_utils::AudioFlinger_Mutex) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 248 | |
| 249 | // return values for hasAudioSession (bit field) |
| 250 | enum effect_state { |
| 251 | EFFECT_SESSION = 0x1, // the audio session corresponds to at least one |
| 252 | // effect |
| 253 | TRACK_SESSION = 0x2, // the audio session corresponds to at least one |
| 254 | // track |
| 255 | FAST_SESSION = 0x4, // the audio session corresponds to at least one |
| 256 | // fast track |
| 257 | SPATIALIZED_SESSION = 0x8, // the audio session corresponds to at least one |
| 258 | // spatialized track |
| 259 | BIT_PERFECT_SESSION = 0x10 // the audio session corresponds to at least one |
| 260 | // bit-perfect track |
| 261 | }; |
| 262 | |
| 263 | // get effect chain corresponding to session Id. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 264 | virtual sp<IAfEffectChain> getEffectChain(audio_session_t sessionId) const |
| 265 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 266 | // same as getEffectChain() but must be called with ThreadBase mutex locked |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 267 | virtual sp<IAfEffectChain> getEffectChain_l(audio_session_t sessionId) const |
| 268 | REQUIRES(mutex()) = 0; |
| 269 | virtual std::vector<int> getEffectIds_l(audio_session_t sessionId) const |
| 270 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 271 | // add an effect chain to the chain list (mEffectChains) |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 272 | virtual status_t addEffectChain_l(const sp<IAfEffectChain>& chain) |
| 273 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 274 | // remove an effect chain from the chain list (mEffectChains) |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 275 | virtual size_t removeEffectChain_l(const sp<IAfEffectChain>& chain) |
| 276 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 277 | // lock all effect chains Mutexes. Must be called before releasing the |
| 278 | // ThreadBase mutex before processing the mixer and effects. This guarantees the |
| 279 | // integrity of the chains during the process. |
| 280 | // Also sets the parameter 'effectChains' to current value of mEffectChains. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 281 | virtual void lockEffectChains_l(Vector<sp<IAfEffectChain>>& effectChains) |
| 282 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 283 | // unlock effect chains after process |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 284 | virtual void unlockEffectChains(const Vector<sp<IAfEffectChain>>& effectChains) |
| 285 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 286 | // get a copy of mEffectChains vector |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 287 | virtual Vector<sp<IAfEffectChain>> getEffectChains_l() const |
| 288 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 289 | // set audio mode to all effect chains |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 290 | virtual void setMode(audio_mode_t mode) |
| 291 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 292 | // get effect module with corresponding ID on specified audio session |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 293 | virtual sp<IAfEffectModule> getEffect(audio_session_t sessionId, int effectId) const |
| 294 | EXCLUDES_ThreadBase_Mutex = 0; |
| 295 | virtual sp<IAfEffectModule> getEffect_l(audio_session_t sessionId, int effectId) const |
| 296 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 297 | // add and effect module. Also creates the effect chain is none exists for |
| 298 | // the effects audio session. Only called in a context of moving an effect |
| 299 | // from one thread to another |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 300 | virtual status_t addEffect_ll(const sp<IAfEffectModule>& effect) |
| 301 | REQUIRES(audio_utils::AudioFlinger_Mutex, mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 302 | // remove and effect module. Also removes the effect chain is this was the last |
| 303 | // effect |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 304 | virtual void removeEffect_l(const sp<IAfEffectModule>& effect, bool release = false) |
| 305 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 306 | // disconnect an effect handle from module and destroy module if last handle |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 307 | virtual void disconnectEffectHandle(IAfEffectHandle* handle, bool unpinIfLast) |
| 308 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 309 | // detach all tracks connected to an auxiliary effect |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 310 | virtual void detachAuxEffect_l(int effectId) REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 311 | // returns a combination of: |
| 312 | // - EFFECT_SESSION if effects on this audio session exist in one chain |
| 313 | // - TRACK_SESSION if tracks on this audio session exist |
| 314 | // - FAST_SESSION if fast tracks on this audio session exist |
| 315 | // - SPATIALIZED_SESSION if spatialized tracks on this audio session exist |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 316 | virtual uint32_t hasAudioSession_l(audio_session_t sessionId) const REQUIRES(mutex()) = 0; |
| 317 | virtual uint32_t hasAudioSession(audio_session_t sessionId) const |
| 318 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 319 | |
| 320 | // the value returned by default implementation is not important as the |
| 321 | // strategy is only meaningful for PlaybackThread which implements this method |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 322 | virtual product_strategy_t getStrategyForSession_l(audio_session_t sessionId) const |
| 323 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 324 | |
| 325 | // check if some effects must be suspended/restored when an effect is enabled |
| 326 | // or disabled |
| 327 | virtual void checkSuspendOnEffectEnabled( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 328 | bool enabled, audio_session_t sessionId, bool threadLocked) |
| 329 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 330 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 331 | virtual status_t setSyncEvent(const sp<audioflinger::SyncEvent>& event) |
| 332 | EXCLUDES_ThreadBase_Mutex = 0; |
| 333 | // internally static, perhaps make static member. |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 334 | virtual bool isValidSyncEvent(const sp<audioflinger::SyncEvent>& event) const = 0; |
| 335 | |
| 336 | // Return a reference to a per-thread heap which can be used to allocate IMemory |
| 337 | // objects that will be read-only to client processes, read/write to mediaserver, |
| 338 | // and shared by all client processes of the thread. |
| 339 | // The heap is per-thread rather than common across all threads, because |
| 340 | // clients can't be trusted not to modify the offset of the IMemory they receive. |
| 341 | // If a thread does not have such a heap, this method returns 0. |
| 342 | virtual sp<MemoryDealer> readOnlyHeap() const = 0; |
| 343 | |
| 344 | virtual sp<IMemory> pipeMemory() const = 0; |
| 345 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 346 | virtual void systemReady() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 347 | |
| 348 | // checkEffectCompatibility_l() must be called with ThreadBase::mLock held |
| 349 | virtual status_t checkEffectCompatibility_l( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 350 | const effect_descriptor_t* desc, audio_session_t sessionId) REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 351 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 352 | virtual void broadcast_l() REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 353 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 354 | virtual bool isTimestampCorrectionEnabled_l() const REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 355 | |
| 356 | virtual bool isMsdDevice() const = 0; |
| 357 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 358 | virtual void dump(int fd, const Vector<String16>& args) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 359 | |
| 360 | // deliver stats to mediametrics. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 361 | virtual void sendStatistics(bool force) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 362 | |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 363 | virtual audio_utils::mutex& mutex() const |
| 364 | RETURN_CAPABILITY(audio_utils::ThreadBase_Mutex) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 365 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 366 | virtual void onEffectEnable(const sp<IAfEffectModule>& effect) EXCLUDES_ThreadBase_Mutex = 0; |
| 367 | virtual void onEffectDisable() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 368 | |
| 369 | // invalidateTracksForAudioSession_l must be called with holding mLock. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 370 | virtual void invalidateTracksForAudioSession_l(audio_session_t sessionId) const |
| 371 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 372 | // Invalidate all the tracks with the given audio session. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 373 | virtual void invalidateTracksForAudioSession(audio_session_t sessionId) const |
| 374 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 375 | |
| 376 | virtual bool isStreamInitialized() const = 0; |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 377 | virtual void startMelComputation_l(const sp<audio_utils::MelProcessor>& processor) |
| 378 | REQUIRES(audio_utils::AudioFlinger_Mutex) = 0; |
| 379 | virtual void stopMelComputation_l() |
| 380 | REQUIRES(audio_utils::AudioFlinger_Mutex) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 381 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 382 | virtual product_strategy_t getStrategyForStream(audio_stream_type_t stream) const |
| 383 | EXCLUDES_AUDIO_ALL = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 384 | |
| 385 | virtual void setEffectSuspended_l( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 386 | const effect_uuid_t* type, bool suspend, audio_session_t sessionId) |
| 387 | REQUIRES(mutex()) = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 388 | |
| 389 | // Dynamic cast to derived interface |
| 390 | virtual sp<IAfDirectOutputThread> asIAfDirectOutputThread() { return nullptr; } |
| 391 | virtual sp<IAfDuplicatingThread> asIAfDuplicatingThread() { return nullptr; } |
| 392 | virtual sp<IAfPlaybackThread> asIAfPlaybackThread() { return nullptr; } |
| 393 | virtual sp<IAfRecordThread> asIAfRecordThread() { return nullptr; } |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 394 | virtual IAfThreadCallback* afThreadCallback() const = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 395 | }; |
| 396 | |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 397 | class IAfPlaybackThread : public virtual IAfThreadBase, public virtual VolumeInterface { |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 398 | public: |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 399 | static sp<IAfPlaybackThread> createBitPerfectThread( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 400 | const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output, |
| 401 | audio_io_handle_t id, bool systemReady); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 402 | |
| 403 | static sp<IAfPlaybackThread> createDirectOutputThread( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 404 | const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output, |
| 405 | audio_io_handle_t id, bool systemReady, const audio_offload_info_t& offloadInfo); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 406 | |
| 407 | static sp<IAfPlaybackThread> createMixerThread( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 408 | const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output, |
| 409 | audio_io_handle_t id, bool systemReady, type_t type = MIXER, |
| 410 | audio_config_base_t* mixerConfig = nullptr); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 411 | |
| 412 | static sp<IAfPlaybackThread> createOffloadThread( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 413 | const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output, |
| 414 | audio_io_handle_t id, bool systemReady, const audio_offload_info_t& offloadInfo); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 415 | |
| 416 | static sp<IAfPlaybackThread> createSpatializerThread( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 417 | const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output, |
| 418 | audio_io_handle_t id, bool systemReady, audio_config_base_t* mixerConfig); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 419 | |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 420 | static constexpr int8_t kMaxTrackStopRetriesOffload = 2; |
| 421 | |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 422 | enum mixer_state { |
| 423 | MIXER_IDLE, // no active tracks |
| 424 | MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready |
| 425 | MIXER_TRACKS_READY, // at least one active track, and at least one track has data |
| 426 | MIXER_DRAIN_TRACK, // drain currently playing track |
| 427 | MIXER_DRAIN_ALL, // fully drain the hardware |
| 428 | // standby mode does not have an enum value |
| 429 | // suspend by audio policy manager is orthogonal to mixer state |
| 430 | }; |
| 431 | |
| 432 | // return estimated latency in milliseconds, as reported by HAL |
| 433 | virtual uint32_t latency() const = 0; // should be in IAfThreadBase? |
| 434 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 435 | virtual uint32_t& fastTrackAvailMask_l() REQUIRES(mutex()) = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 436 | |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 437 | virtual sp<IAfTrack> createTrack_l( |
| 438 | const sp<Client>& client, |
| 439 | audio_stream_type_t streamType, |
| 440 | const audio_attributes_t& attr, |
| 441 | uint32_t* sampleRate, |
| 442 | audio_format_t format, |
| 443 | audio_channel_mask_t channelMask, |
| 444 | size_t* pFrameCount, |
| 445 | size_t* pNotificationFrameCount, |
| 446 | uint32_t notificationsPerBuffer, |
| 447 | float speed, |
| 448 | const sp<IMemory>& sharedBuffer, |
| 449 | audio_session_t sessionId, |
| 450 | audio_output_flags_t* flags, |
| 451 | pid_t creatorPid, |
| 452 | const AttributionSourceState& attributionSource, |
| 453 | pid_t tid, |
| 454 | status_t* status /*non-NULL*/, |
| 455 | audio_port_handle_t portId, |
| 456 | const sp<media::IAudioTrackCallback>& callback, |
| 457 | bool isSpatialized, |
jiabin | 94ed47c | 2023-07-27 23:34:20 +0000 | [diff] [blame] | 458 | bool isBitPerfect, |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 459 | audio_output_flags_t* afTrackFlags) |
| 460 | REQUIRES(audio_utils::AudioFlinger_Mutex) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 461 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 462 | virtual status_t addTrack_l(const sp<IAfTrack>& track) REQUIRES(mutex()) = 0; |
| 463 | virtual bool destroyTrack_l(const sp<IAfTrack>& track) REQUIRES(mutex()) = 0; |
| 464 | virtual bool isTrackActive(const sp<IAfTrack>& track) const REQUIRES(mutex()) = 0; |
| 465 | virtual void addOutputTrack_l(const sp<IAfTrack>& track) REQUIRES(mutex()) = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 466 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 467 | virtual AudioStreamOut* getOutput_l() const REQUIRES(mutex()) = 0; |
Andy Hung | 8d672e0 | 2023-09-15 18:19:28 -0700 | [diff] [blame] | 468 | virtual AudioStreamOut* getOutput() const EXCLUDES_ThreadBase_Mutex = 0; |
| 469 | virtual AudioStreamOut* clearOutput() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 470 | |
| 471 | // a very large number of suspend() will eventually wraparound, but unlikely |
| 472 | virtual void suspend() = 0; |
| 473 | virtual void restore() = 0; |
| 474 | virtual bool isSuspended() const = 0; |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 475 | virtual status_t getRenderPosition(uint32_t* halFrames, uint32_t* dspFrames) const |
| 476 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 477 | // Consider also removing and passing an explicit mMainBuffer initialization |
| 478 | // parameter to AF::IAfTrack::Track(). |
| 479 | virtual float* sinkBuffer() const = 0; |
| 480 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 481 | virtual status_t attachAuxEffect(const sp<IAfTrack>& track, int EffectId) |
| 482 | EXCLUDES_ThreadBase_Mutex = 0; |
| 483 | virtual status_t attachAuxEffect_l(const sp<IAfTrack>& track, int EffectId) |
| 484 | REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 485 | |
| 486 | // called with AudioFlinger lock held |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 487 | virtual bool invalidateTracks_l(audio_stream_type_t streamType) REQUIRES(mutex()) = 0; |
| 488 | virtual bool invalidateTracks_l(std::set<audio_port_handle_t>& portIds) REQUIRES(mutex()) = 0; |
| 489 | virtual void invalidateTracks(audio_stream_type_t streamType) |
| 490 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 491 | // Invalidate tracks by a set of port ids. The port id will be removed from |
| 492 | // the given set if the corresponding track is found and invalidated. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 493 | virtual void invalidateTracks(std::set<audio_port_handle_t>& portIds) |
| 494 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 495 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 496 | virtual status_t getTimestamp_l(AudioTimestamp& timestamp) REQUIRES(mutex()) = 0; |
| 497 | virtual void addPatchTrack(const sp<IAfPatchTrack>& track) EXCLUDES_ThreadBase_Mutex = 0; |
| 498 | virtual void deletePatchTrack(const sp<IAfPatchTrack>& track) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 499 | |
| 500 | // Return the asynchronous signal wait time. |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 501 | virtual int64_t computeWaitTimeNs_l() const REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 502 | // returns true if the track is allowed to be added to the thread. |
| 503 | virtual bool isTrackAllowed_l( |
| 504 | audio_channel_mask_t channelMask, audio_format_t format, audio_session_t sessionId, |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 505 | uid_t uid) const REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 506 | |
| 507 | virtual bool supportsHapticPlayback() const = 0; |
| 508 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 509 | virtual void setDownStreamPatch(const struct audio_patch* patch) |
| 510 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 511 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 512 | virtual IAfTrack* getTrackById_l(audio_port_handle_t trackId) REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 513 | |
| 514 | virtual bool hasMixer() const = 0; |
| 515 | |
| 516 | virtual status_t setRequestedLatencyMode(audio_latency_mode_t mode) = 0; |
| 517 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 518 | virtual status_t getSupportedLatencyModes(std::vector<audio_latency_mode_t>* modes) |
| 519 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 520 | |
| 521 | virtual status_t setBluetoothVariableLatencyEnabled(bool enabled) = 0; |
| 522 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 523 | virtual void setStandby() EXCLUDES_ThreadBase_Mutex = 0; |
| 524 | virtual void setStandby_l() REQUIRES(mutex()) = 0; |
| 525 | virtual bool waitForHalStart() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 526 | |
| 527 | virtual bool hasFastMixer() const = 0; |
| 528 | virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const = 0; |
| 529 | virtual const std::atomic<int64_t>& framesWritten() const = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 530 | |
| 531 | virtual bool usesHwAvSync() const = 0; |
| 532 | }; |
| 533 | |
| 534 | class IAfDirectOutputThread : public virtual IAfPlaybackThread { |
| 535 | public: |
| 536 | virtual status_t selectPresentation(int presentationId, int programId) = 0; |
| 537 | }; |
| 538 | |
| 539 | class IAfDuplicatingThread : public virtual IAfPlaybackThread { |
| 540 | public: |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 541 | static sp<IAfDuplicatingThread> create( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 542 | const sp<IAfThreadCallback>& afThreadCallback, IAfPlaybackThread* mainThread, |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 543 | audio_io_handle_t id, bool systemReady); |
| 544 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 545 | virtual void addOutputTrack(IAfPlaybackThread* thread) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 546 | virtual uint32_t waitTimeMs() const = 0; |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 547 | virtual void removeOutputTrack(IAfPlaybackThread* thread) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 548 | }; |
| 549 | |
| 550 | class IAfRecordThread : public virtual IAfThreadBase { |
| 551 | public: |
| 552 | static sp<IAfRecordThread> create( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 553 | const sp<IAfThreadCallback>& afThreadCallback, AudioStreamIn* input, |
| 554 | audio_io_handle_t id, bool systemReady); |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 555 | |
| 556 | virtual sp<IAfRecordTrack> createRecordTrack_l( |
| 557 | const sp<Client>& client, |
| 558 | const audio_attributes_t& attr, |
| 559 | uint32_t* pSampleRate, |
| 560 | audio_format_t format, |
| 561 | audio_channel_mask_t channelMask, |
| 562 | size_t* pFrameCount, |
| 563 | audio_session_t sessionId, |
| 564 | size_t* pNotificationFrameCount, |
| 565 | pid_t creatorPid, |
| 566 | const AttributionSourceState& attributionSource, |
| 567 | audio_input_flags_t* flags, |
| 568 | pid_t tid, |
| 569 | status_t* status /*non-NULL*/, |
| 570 | audio_port_handle_t portId, |
Andy Hung | 972bec1 | 2023-08-31 16:13:39 -0700 | [diff] [blame] | 571 | int32_t maxSharedAudioHistoryMs) |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 572 | REQUIRES(audio_utils::AudioFlinger_Mutex) EXCLUDES_ThreadBase_Mutex = 0; |
| 573 | virtual void destroyTrack_l(const sp<IAfRecordTrack>& track) REQUIRES(mutex()) = 0; |
| 574 | virtual void removeTrack_l(const sp<IAfRecordTrack>& track) REQUIRES(mutex()) = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 575 | |
| 576 | virtual status_t start( |
| 577 | IAfRecordTrack* recordTrack, AudioSystem::sync_event_t event, |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 578 | audio_session_t triggerSession) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 579 | |
| 580 | // ask the thread to stop the specified track, and |
| 581 | // return true if the caller should then do it's part of the stopping process |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 582 | virtual bool stop(IAfRecordTrack* recordTrack) EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 583 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 584 | // NO_THREAD_SAFETY_ANALYSIS: consider atomics |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 585 | virtual AudioStreamIn* getInput() const = 0; |
| 586 | virtual AudioStreamIn* clearInput() = 0; |
| 587 | |
| 588 | virtual status_t getActiveMicrophones( |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 589 | std::vector<media::MicrophoneInfoFw>* activeMicrophones) |
| 590 | const EXCLUDES_ThreadBase_Mutex = 0; |
| 591 | virtual status_t setPreferredMicrophoneDirection(audio_microphone_direction_t direction) |
| 592 | EXCLUDES_ThreadBase_Mutex = 0; |
| 593 | virtual status_t setPreferredMicrophoneFieldDimension(float zoom) |
| 594 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 595 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 596 | virtual void addPatchTrack(const sp<IAfPatchRecord>& record) |
| 597 | EXCLUDES_ThreadBase_Mutex = 0; |
| 598 | virtual void deletePatchTrack(const sp<IAfPatchRecord>& record) |
| 599 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 600 | virtual bool fastTrackAvailable() const = 0; |
| 601 | virtual void setFastTrackAvailable(bool available) = 0; |
| 602 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 603 | virtual void setRecordSilenced(audio_port_handle_t portId, bool silenced) |
| 604 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 87c693c | 2023-07-06 20:56:16 -0700 | [diff] [blame] | 605 | virtual bool hasFastCapture() const = 0; |
| 606 | |
| 607 | virtual void checkBtNrec() = 0; |
| 608 | virtual uint32_t getInputFramesLost() const = 0; |
| 609 | |
| 610 | virtual status_t shareAudioHistory( |
| 611 | const std::string& sharedAudioPackageName, |
| 612 | audio_session_t sharedSessionId = AUDIO_SESSION_NONE, |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 613 | int64_t sharedAudioStartMs = -1) EXCLUDES_ThreadBase_Mutex = 0; |
| 614 | virtual void resetAudioHistory_l() REQUIRES(mutex()) = 0; |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 615 | }; |
| 616 | |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 617 | class IAfMmapThread : public virtual IAfThreadBase { |
| 618 | public: |
| 619 | // createIAudioTrackAdapter() is a static constructor which creates an |
| 620 | // MmapStreamInterface AIDL interface adapter from the MmapThread object that |
| 621 | // may be passed back to the client. |
| 622 | // |
| 623 | // Only one AIDL MmapStreamInterface interface adapter should be created per MmapThread. |
| 624 | static sp<MmapStreamInterface> createMmapStreamInterfaceAdapter( |
| 625 | const sp<IAfMmapThread>& mmapThread); |
| 626 | |
| 627 | virtual void configure( |
| 628 | const audio_attributes_t* attr, |
| 629 | audio_stream_type_t streamType, |
| 630 | audio_session_t sessionId, |
| 631 | const sp<MmapStreamCallback>& callback, |
| 632 | audio_port_handle_t deviceId, |
| 633 | audio_port_handle_t portId) = 0; |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 634 | virtual void disconnect() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 635 | |
| 636 | // MmapStreamInterface handling (see adapter) |
| 637 | virtual status_t createMmapBuffer( |
| 638 | int32_t minSizeFrames, struct audio_mmap_buffer_info* info) = 0; |
| 639 | virtual status_t getMmapPosition(struct audio_mmap_position* position) const = 0; |
| 640 | virtual status_t start( |
| 641 | const AudioClient& client, const audio_attributes_t* attr, |
| 642 | audio_port_handle_t* handle) = 0; |
| 643 | virtual status_t stop(audio_port_handle_t handle) = 0; |
| 644 | virtual status_t standby() = 0; |
| 645 | virtual status_t getExternalPosition(uint64_t* position, int64_t* timeNanos) const = 0; |
| 646 | virtual status_t reportData(const void* buffer, size_t frameCount) = 0; |
| 647 | |
Andy Hung | 99b1ba6 | 2023-07-14 11:00:08 -0700 | [diff] [blame] | 648 | // TODO(b/291317898) move to IAfThreadBase? |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 649 | virtual void invalidateTracks(std::set<audio_port_handle_t>& portIds) |
| 650 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 651 | |
Andy Hung | 99b1ba6 | 2023-07-14 11:00:08 -0700 | [diff] [blame] | 652 | // Sets the UID records silence - TODO(b/291317898) move to IAfMmapCaptureThread |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 653 | virtual void setRecordSilenced(audio_port_handle_t portId, bool silenced) |
| 654 | EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 655 | |
| 656 | virtual sp<IAfMmapPlaybackThread> asIAfMmapPlaybackThread() { return nullptr; } |
| 657 | virtual sp<IAfMmapCaptureThread> asIAfMmapCaptureThread() { return nullptr; } |
| 658 | }; |
| 659 | |
| 660 | class IAfMmapPlaybackThread : public virtual IAfMmapThread, public virtual VolumeInterface { |
| 661 | public: |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 662 | static sp<IAfMmapPlaybackThread> create( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 663 | const sp<IAfThreadCallback>& afThreadCallback, audio_io_handle_t id, |
| 664 | AudioHwDevice* hwDev, AudioStreamOut* output, bool systemReady); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 665 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 666 | virtual AudioStreamOut* clearOutput() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 667 | }; |
| 668 | |
| 669 | class IAfMmapCaptureThread : public virtual IAfMmapThread { |
| 670 | public: |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 671 | static sp<IAfMmapCaptureThread> create( |
Andy Hung | 583043b | 2023-07-17 17:05:00 -0700 | [diff] [blame] | 672 | const sp<IAfThreadCallback>& afThreadCallback, audio_io_handle_t id, |
| 673 | AudioHwDevice* hwDev, AudioStreamIn* input, bool systemReady); |
Andy Hung | ee58e4a | 2023-07-07 13:47:37 -0700 | [diff] [blame] | 674 | |
Andy Hung | ab65b18 | 2023-09-06 19:41:47 -0700 | [diff] [blame] | 675 | virtual AudioStreamIn* clearInput() EXCLUDES_ThreadBase_Mutex = 0; |
Andy Hung | 7aa7d10 | 2023-07-07 15:58:48 -0700 | [diff] [blame] | 676 | }; |
| 677 | |
Andy Hung | 440901d | 2023-06-29 21:19:25 -0700 | [diff] [blame] | 678 | } // namespace android |