blob: 235378b4c9473cb1e46cc4bd528e92461b42b4f5 [file] [log] [blame]
Andy Hung440901d2023-06-29 21:19:25 -07001/*
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 Hungc6f227f2023-07-18 18:31:50 -070019#include <android/media/IAudioTrackCallback.h>
20#include <android/media/IEffectClient.h>
21#include <audiomanager/IAudioManager.h>
22#include <audio_utils/MelProcessor.h>
23#include <binder/MemoryDealer.h>
24#include <datapath/AudioStreamIn.h>
25#include <datapath/AudioStreamOut.h>
26#include <datapath/VolumeInterface.h>
27#include <fastpath/FastMixerDumpState.h>
28#include <media/DeviceDescriptorBase.h>
29#include <media/MmapStreamInterface.h>
30#include <media/audiohal/StreamHalInterface.h>
31#include <media/nblog/NBLog.h>
32#include <timing/SyncEvent.h>
33#include <utils/Mutex.h>
34#include <utils/RefBase.h>
35#include <vibrator/ExternalVibration.h>
36
37#include <optional>
Andy Hung440901d2023-06-29 21:19:25 -070038
39namespace android {
40
Andy Hung87c693c2023-07-06 20:56:16 -070041class IAfDirectOutputThread;
42class IAfDuplicatingThread;
Andy Hung7aa7d102023-07-07 15:58:48 -070043class IAfMmapCaptureThread;
44class IAfMmapPlaybackThread;
Andy Hung87c693c2023-07-06 20:56:16 -070045class IAfPlaybackThread;
46class IAfRecordThread;
Andy Hungc6f227f2023-07-18 18:31:50 -070047
48class IAfEffectChain;
49class IAfEffectHandle;
50class IAfEffectModule;
51class IAfPatchPanel;
52class IAfPatchRecord;
53class IAfPatchTrack;
54class IAfRecordTrack;
55class IAfTrack;
56class IAfTrackBase;
57class Client;
Andy Hung583043b2023-07-17 17:05:00 -070058class MelReporter;
59
60// Note this is exposed through IAfThreadBase::afThreadCallback()
61// and hence may be used by the Effect / Track framework.
62class IAfThreadCallback : public virtual RefBase {
63public:
64 virtual Mutex& mutex() const = 0;
65 virtual bool isNonOffloadableGlobalEffectEnabled_l() const = 0; // Tracks
66 virtual audio_unique_id_t nextUniqueId(audio_unique_id_use_t use) = 0;
67 virtual bool btNrecIsOff() const = 0;
68 virtual float masterVolume_l() const = 0;
69 virtual bool masterMute_l() const = 0;
70 virtual float getMasterBalance_l() const = 0;
71 virtual bool streamMute_l(audio_stream_type_t stream) const = 0;
72 virtual audio_mode_t getMode() const = 0;
73 virtual bool isLowRamDevice() const = 0;
74 virtual bool isAudioPolicyReady() const = 0; // Effects
Andy Hung1d2d2aea2023-07-19 16:22:58 -070075 virtual uint32_t getScreenState() const = 0;
Andy Hung583043b2023-07-17 17:05:00 -070076 virtual std::optional<media::AudioVibratorInfo> getDefaultVibratorInfo_l() const = 0;
77 virtual const sp<IAfPatchPanel>& getPatchPanel() const = 0;
78 virtual const sp<MelReporter>& getMelReporter() const = 0;
79 virtual const sp<EffectsFactoryHalInterface>& getEffectsFactoryHal() const = 0;
80 virtual sp<IAudioManager> getOrCreateAudioManager() = 0; // Tracks
81
82 virtual bool updateOrphanEffectChains(const sp<IAfEffectModule>& effect) = 0;
83 virtual status_t moveEffectChain_l(audio_session_t sessionId,
84 IAfPlaybackThread* srcThread, IAfPlaybackThread* dstThread) = 0;
85
86 virtual void requestLogMerge() = 0;
87 virtual sp<NBLog::Writer> newWriter_l(size_t size, const char *name) = 0;
88 virtual void unregisterWriter(const sp<NBLog::Writer>& writer) = 0;
89
90 virtual sp<audioflinger::SyncEvent> createSyncEvent(AudioSystem::sync_event_t type,
91 audio_session_t triggerSession,
92 audio_session_t listenerSession,
93 const audioflinger::SyncEventCallback& callBack,
94 const wp<IAfTrackBase>& cookie) = 0;
95
96 virtual void ioConfigChanged(audio_io_config_event_t event,
97 const sp<AudioIoDescriptor>& ioDesc,
98 pid_t pid = 0) = 0;
99 virtual void onNonOffloadableGlobalEffectEnable() = 0;
100 virtual void onSupportedLatencyModesChanged(
101 audio_io_handle_t output, const std::vector<audio_latency_mode_t>& modes) = 0;
102};
Andy Hung87c693c2023-07-06 20:56:16 -0700103
Andy Hung440901d2023-06-29 21:19:25 -0700104class IAfThreadBase : public virtual RefBase {
105public:
106 enum type_t {
107 MIXER, // Thread class is MixerThread
108 DIRECT, // Thread class is DirectOutputThread
109 DUPLICATING, // Thread class is DuplicatingThread
110 RECORD, // Thread class is RecordThread
111 OFFLOAD, // Thread class is OffloadThread
112 MMAP_PLAYBACK, // Thread class for MMAP playback stream
113 MMAP_CAPTURE, // Thread class for MMAP capture stream
114 SPATIALIZER, //
115 BIT_PERFECT, // Thread class for BitPerfectThread
116 // When adding a value, also update IAfThreadBase::threadTypeToString()
117 };
118
119 static const char* threadTypeToString(type_t type);
120 virtual status_t readyToRun() = 0;
121 virtual void clearPowerManager() = 0;
122 virtual status_t initCheck() const = 0;
123 virtual type_t type() const = 0;
124 virtual bool isDuplicating() const = 0;
125 virtual audio_io_handle_t id() const = 0;
126 virtual uint32_t sampleRate() const = 0;
127 virtual audio_channel_mask_t channelMask() const = 0;
128 virtual audio_channel_mask_t mixerChannelMask() const = 0;
129 virtual audio_format_t format() const = 0;
130 virtual uint32_t channelCount() const = 0;
131
132 // Called by AudioFlinger::frameCount(audio_io_handle_t output) and effects,
133 // and returns the [normal mix] buffer's frame count.
134 virtual size_t frameCount() const = 0;
135 virtual audio_channel_mask_t hapticChannelMask() const = 0;
Andy Hung87c693c2023-07-06 20:56:16 -0700136 virtual uint32_t hapticChannelCount() const = 0;
Andy Hung440901d2023-06-29 21:19:25 -0700137 virtual uint32_t latency_l() const = 0;
138 virtual void setVolumeForOutput_l(float left, float right) const = 0;
139
140 // Return's the HAL's frame count i.e. fast mixer buffer size.
141 virtual size_t frameCountHAL() const = 0;
142 virtual size_t frameSize() const = 0;
143 // Should be "virtual status_t requestExitAndWait()" and override same
144 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
145 virtual void exit() = 0;
146 virtual bool checkForNewParameter_l(const String8& keyValuePair, status_t& status) = 0;
147 virtual status_t setParameters(const String8& keyValuePairs) = 0;
148 virtual String8 getParameters(const String8& keys) = 0;
149 virtual void ioConfigChanged(
150 audio_io_config_event_t event, pid_t pid = 0,
151 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE) = 0;
152
153 // sendConfigEvent_l() must be called with ThreadBase::mLock held
154 // Can temporarily release the lock if waiting for a reply from
155 // processConfigEvents_l().
156 // status_t sendConfigEvent_l(sp<ConfigEvent>& event);
157 virtual void sendIoConfigEvent(
158 audio_io_config_event_t event, pid_t pid = 0,
159 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE) = 0;
160 virtual void sendIoConfigEvent_l(
161 audio_io_config_event_t event, pid_t pid = 0,
162 audio_port_handle_t portId = AUDIO_PORT_HANDLE_NONE) = 0;
163 virtual void sendPrioConfigEvent(pid_t pid, pid_t tid, int32_t prio, bool forApp) = 0;
164 virtual void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio, bool forApp) = 0;
165 virtual status_t sendSetParameterConfigEvent_l(const String8& keyValuePair) = 0;
166 virtual status_t sendCreateAudioPatchConfigEvent(
167 const struct audio_patch* patch, audio_patch_handle_t* handle) = 0;
168 virtual status_t sendReleaseAudioPatchConfigEvent(audio_patch_handle_t handle) = 0;
169 virtual status_t sendUpdateOutDeviceConfigEvent(
170 const DeviceDescriptorBaseVector& outDevices) = 0;
171 virtual void sendResizeBufferConfigEvent_l(int32_t maxSharedAudioHistoryMs) = 0;
172 virtual void sendCheckOutputStageEffectsEvent() = 0;
173 virtual void sendCheckOutputStageEffectsEvent_l() = 0;
174 virtual void sendHalLatencyModesChangedEvent_l() = 0;
175
176 virtual void processConfigEvents_l() = 0;
177 virtual void setCheckOutputStageEffects() = 0;
178 virtual void cacheParameters_l() = 0;
179 virtual status_t createAudioPatch_l(
180 const struct audio_patch* patch, audio_patch_handle_t* handle) = 0;
181 virtual status_t releaseAudioPatch_l(const audio_patch_handle_t handle) = 0;
182 virtual void updateOutDevices(const DeviceDescriptorBaseVector& outDevices) = 0;
183 virtual void toAudioPortConfig(struct audio_port_config* config) = 0;
184 virtual void resizeInputBuffer_l(int32_t maxSharedAudioHistoryMs) = 0;
185
186 // see note at declaration of mStandby, mOutDevice and mInDevice
187 virtual bool inStandby() const = 0;
188 virtual const DeviceTypeSet outDeviceTypes() const = 0;
189 virtual audio_devices_t inDeviceType() const = 0;
190 virtual DeviceTypeSet getDeviceTypes() const = 0;
191 virtual const AudioDeviceTypeAddrVector& outDeviceTypeAddrs() const = 0;
192 virtual const AudioDeviceTypeAddr& inDeviceTypeAddr() const = 0;
193 virtual bool isOutput() const = 0;
194 virtual bool isOffloadOrMmap() const = 0;
195 virtual sp<StreamHalInterface> stream() const = 0;
196 virtual sp<IAfEffectHandle> createEffect_l(
197 const sp<Client>& client,
198 const sp<media::IEffectClient>& effectClient,
199 int32_t priority,
200 audio_session_t sessionId,
201 effect_descriptor_t* desc,
202 int* enabled,
203 status_t* status /*non-NULL*/,
204 bool pinned,
205 bool probe,
206 bool notifyFramesProcessed) = 0;
207
208 // return values for hasAudioSession (bit field)
209 enum effect_state {
210 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
211 // effect
212 TRACK_SESSION = 0x2, // the audio session corresponds to at least one
213 // track
214 FAST_SESSION = 0x4, // the audio session corresponds to at least one
215 // fast track
216 SPATIALIZED_SESSION = 0x8, // the audio session corresponds to at least one
217 // spatialized track
218 BIT_PERFECT_SESSION = 0x10 // the audio session corresponds to at least one
219 // bit-perfect track
220 };
221
222 // get effect chain corresponding to session Id.
223 virtual sp<IAfEffectChain> getEffectChain(audio_session_t sessionId) const = 0;
224 // same as getEffectChain() but must be called with ThreadBase mutex locked
225 virtual sp<IAfEffectChain> getEffectChain_l(audio_session_t sessionId) const = 0;
226 virtual std::vector<int> getEffectIds_l(audio_session_t sessionId) const = 0;
227 // add an effect chain to the chain list (mEffectChains)
228 virtual status_t addEffectChain_l(const sp<IAfEffectChain>& chain) = 0;
229 // remove an effect chain from the chain list (mEffectChains)
230 virtual size_t removeEffectChain_l(const sp<IAfEffectChain>& chain) = 0;
231 // lock all effect chains Mutexes. Must be called before releasing the
232 // ThreadBase mutex before processing the mixer and effects. This guarantees the
233 // integrity of the chains during the process.
234 // Also sets the parameter 'effectChains' to current value of mEffectChains.
235 virtual void lockEffectChains_l(Vector<sp<IAfEffectChain>>& effectChains) = 0;
236 // unlock effect chains after process
237 virtual void unlockEffectChains(const Vector<sp<IAfEffectChain>>& effectChains) = 0;
238 // get a copy of mEffectChains vector
239 virtual Vector<sp<IAfEffectChain>> getEffectChains_l() const = 0;
240 // set audio mode to all effect chains
241 virtual void setMode(audio_mode_t mode) = 0;
242 // get effect module with corresponding ID on specified audio session
243 virtual sp<IAfEffectModule> getEffect(audio_session_t sessionId, int effectId) const = 0;
244 virtual sp<IAfEffectModule> getEffect_l(audio_session_t sessionId, int effectId) const = 0;
245 // add and effect module. Also creates the effect chain is none exists for
246 // the effects audio session. Only called in a context of moving an effect
247 // from one thread to another
248 virtual status_t addEffect_l(const sp<IAfEffectModule>& effect) = 0;
249 // remove and effect module. Also removes the effect chain is this was the last
250 // effect
251 virtual void removeEffect_l(const sp<IAfEffectModule>& effect, bool release = false) = 0;
252 // disconnect an effect handle from module and destroy module if last handle
253 virtual void disconnectEffectHandle(IAfEffectHandle* handle, bool unpinIfLast) = 0;
254 // detach all tracks connected to an auxiliary effect
255 virtual void detachAuxEffect_l(int effectId) = 0;
256 // returns a combination of:
257 // - EFFECT_SESSION if effects on this audio session exist in one chain
258 // - TRACK_SESSION if tracks on this audio session exist
259 // - FAST_SESSION if fast tracks on this audio session exist
260 // - SPATIALIZED_SESSION if spatialized tracks on this audio session exist
261 virtual uint32_t hasAudioSession_l(audio_session_t sessionId) const = 0;
262 virtual uint32_t hasAudioSession(audio_session_t sessionId) const = 0;
263
264 // the value returned by default implementation is not important as the
265 // strategy is only meaningful for PlaybackThread which implements this method
266 virtual product_strategy_t getStrategyForSession_l(audio_session_t sessionId) const = 0;
267
268 // check if some effects must be suspended/restored when an effect is enabled
269 // or disabled
270 virtual void checkSuspendOnEffectEnabled(
271 bool enabled, audio_session_t sessionId, bool threadLocked) = 0;
272
273 virtual status_t setSyncEvent(const sp<audioflinger::SyncEvent>& event) = 0;
274 virtual bool isValidSyncEvent(const sp<audioflinger::SyncEvent>& event) const = 0;
275
276 // Return a reference to a per-thread heap which can be used to allocate IMemory
277 // objects that will be read-only to client processes, read/write to mediaserver,
278 // and shared by all client processes of the thread.
279 // The heap is per-thread rather than common across all threads, because
280 // clients can't be trusted not to modify the offset of the IMemory they receive.
281 // If a thread does not have such a heap, this method returns 0.
282 virtual sp<MemoryDealer> readOnlyHeap() const = 0;
283
284 virtual sp<IMemory> pipeMemory() const = 0;
285
286 virtual void systemReady() = 0;
287
288 // checkEffectCompatibility_l() must be called with ThreadBase::mLock held
289 virtual status_t checkEffectCompatibility_l(
290 const effect_descriptor_t* desc, audio_session_t sessionId) = 0;
291
292 virtual void broadcast_l() = 0;
293
294 virtual bool isTimestampCorrectionEnabled() const = 0;
295
296 virtual bool isMsdDevice() const = 0;
297
298 virtual void dump(int fd, const Vector<String16>& args) = 0;
299
300 // deliver stats to mediametrics.
301 virtual void sendStatistics(bool force) = 0;
302
303 virtual Mutex& mutex() const = 0;
304
305 virtual void onEffectEnable(const sp<IAfEffectModule>& effect) = 0;
306 virtual void onEffectDisable() = 0;
307
308 // invalidateTracksForAudioSession_l must be called with holding mLock.
309 virtual void invalidateTracksForAudioSession_l(audio_session_t sessionId) const = 0;
310 // Invalidate all the tracks with the given audio session.
311 virtual void invalidateTracksForAudioSession(audio_session_t sessionId) const = 0;
312
313 virtual bool isStreamInitialized() const = 0;
314 virtual void startMelComputation_l(const sp<audio_utils::MelProcessor>& processor) = 0;
315 virtual void stopMelComputation_l() = 0;
316
317 virtual product_strategy_t getStrategyForStream(audio_stream_type_t stream) const = 0;
Andy Hung87c693c2023-07-06 20:56:16 -0700318
319 virtual void setEffectSuspended_l(
320 const effect_uuid_t* type, bool suspend, audio_session_t sessionId) = 0;
321
322 // Dynamic cast to derived interface
323 virtual sp<IAfDirectOutputThread> asIAfDirectOutputThread() { return nullptr; }
324 virtual sp<IAfDuplicatingThread> asIAfDuplicatingThread() { return nullptr; }
325 virtual sp<IAfPlaybackThread> asIAfPlaybackThread() { return nullptr; }
326 virtual sp<IAfRecordThread> asIAfRecordThread() { return nullptr; }
Andy Hung583043b2023-07-17 17:05:00 -0700327 virtual IAfThreadCallback* afThreadCallback() const = 0;
Andy Hung440901d2023-06-29 21:19:25 -0700328};
329
Andy Hung87c693c2023-07-06 20:56:16 -0700330class IAfPlaybackThread : public virtual IAfThreadBase, public virtual VolumeInterface {
Andy Hung440901d2023-06-29 21:19:25 -0700331public:
Andy Hungee58e4a2023-07-07 13:47:37 -0700332 static sp<IAfPlaybackThread> createBitPerfectThread(
Andy Hung583043b2023-07-17 17:05:00 -0700333 const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output,
334 audio_io_handle_t id, bool systemReady);
Andy Hungee58e4a2023-07-07 13:47:37 -0700335
336 static sp<IAfPlaybackThread> createDirectOutputThread(
Andy Hung583043b2023-07-17 17:05:00 -0700337 const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output,
338 audio_io_handle_t id, bool systemReady, const audio_offload_info_t& offloadInfo);
Andy Hungee58e4a2023-07-07 13:47:37 -0700339
340 static sp<IAfPlaybackThread> createMixerThread(
Andy Hung583043b2023-07-17 17:05:00 -0700341 const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output,
342 audio_io_handle_t id, bool systemReady, type_t type = MIXER,
343 audio_config_base_t* mixerConfig = nullptr);
Andy Hungee58e4a2023-07-07 13:47:37 -0700344
345 static sp<IAfPlaybackThread> createOffloadThread(
Andy Hung583043b2023-07-17 17:05:00 -0700346 const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output,
347 audio_io_handle_t id, bool systemReady, const audio_offload_info_t& offloadInfo);
Andy Hungee58e4a2023-07-07 13:47:37 -0700348
349 static sp<IAfPlaybackThread> createSpatializerThread(
Andy Hung583043b2023-07-17 17:05:00 -0700350 const sp<IAfThreadCallback>& afThreadCallback, AudioStreamOut* output,
351 audio_io_handle_t id, bool systemReady, audio_config_base_t* mixerConfig);
Andy Hungee58e4a2023-07-07 13:47:37 -0700352
Andy Hung87c693c2023-07-06 20:56:16 -0700353 static constexpr int8_t kMaxTrackStopRetriesOffload = 2;
354
Andy Hung440901d2023-06-29 21:19:25 -0700355 enum mixer_state {
356 MIXER_IDLE, // no active tracks
357 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
358 MIXER_TRACKS_READY, // at least one active track, and at least one track has data
359 MIXER_DRAIN_TRACK, // drain currently playing track
360 MIXER_DRAIN_ALL, // fully drain the hardware
361 // standby mode does not have an enum value
362 // suspend by audio policy manager is orthogonal to mixer state
363 };
364
365 // return estimated latency in milliseconds, as reported by HAL
366 virtual uint32_t latency() const = 0; // should be in IAfThreadBase?
367
Andy Hung87c693c2023-07-06 20:56:16 -0700368 virtual uint32_t& fastTrackAvailMask_l() = 0;
369
Andy Hung440901d2023-06-29 21:19:25 -0700370 virtual sp<IAfTrack> createTrack_l(
371 const sp<Client>& client,
372 audio_stream_type_t streamType,
373 const audio_attributes_t& attr,
374 uint32_t* sampleRate,
375 audio_format_t format,
376 audio_channel_mask_t channelMask,
377 size_t* pFrameCount,
378 size_t* pNotificationFrameCount,
379 uint32_t notificationsPerBuffer,
380 float speed,
381 const sp<IMemory>& sharedBuffer,
382 audio_session_t sessionId,
383 audio_output_flags_t* flags,
384 pid_t creatorPid,
385 const AttributionSourceState& attributionSource,
386 pid_t tid,
387 status_t* status /*non-NULL*/,
388 audio_port_handle_t portId,
389 const sp<media::IAudioTrackCallback>& callback,
390 bool isSpatialized,
391 bool isBitPerfect) = 0;
392
Andy Hung87c693c2023-07-06 20:56:16 -0700393 virtual status_t addTrack_l(const sp<IAfTrack>& track) = 0;
394 virtual bool destroyTrack_l(const sp<IAfTrack>& track) = 0;
395 virtual bool isTrackActive(const sp<IAfTrack>& track) const = 0;
396 virtual void addOutputTrack_l(const sp<IAfTrack>& track) = 0;
397
398 virtual AudioStreamOut* getOutput_l() const = 0;
Andy Hung440901d2023-06-29 21:19:25 -0700399 virtual AudioStreamOut* getOutput() const = 0;
400 virtual AudioStreamOut* clearOutput() = 0;
Andy Hung440901d2023-06-29 21:19:25 -0700401
402 // a very large number of suspend() will eventually wraparound, but unlikely
403 virtual void suspend() = 0;
404 virtual void restore() = 0;
405 virtual bool isSuspended() const = 0;
406 virtual status_t getRenderPosition(uint32_t* halFrames, uint32_t* dspFrames) const = 0;
407 // Consider also removing and passing an explicit mMainBuffer initialization
408 // parameter to AF::IAfTrack::Track().
409 virtual float* sinkBuffer() const = 0;
410
411 virtual status_t attachAuxEffect(const sp<IAfTrack>& track, int EffectId) = 0;
412 virtual status_t attachAuxEffect_l(const sp<IAfTrack>& track, int EffectId) = 0;
413
414 // called with AudioFlinger lock held
415 virtual bool invalidateTracks_l(audio_stream_type_t streamType) = 0;
416 virtual bool invalidateTracks_l(std::set<audio_port_handle_t>& portIds) = 0;
417 virtual void invalidateTracks(audio_stream_type_t streamType) = 0;
418 // Invalidate tracks by a set of port ids. The port id will be removed from
419 // the given set if the corresponding track is found and invalidated.
420 virtual void invalidateTracks(std::set<audio_port_handle_t>& portIds) = 0;
421
422 virtual status_t getTimestamp_l(AudioTimestamp& timestamp) = 0;
423 virtual void addPatchTrack(const sp<IAfPatchTrack>& track) = 0;
424 virtual void deletePatchTrack(const sp<IAfPatchTrack>& track) = 0;
425
426 // Return the asynchronous signal wait time.
427 virtual int64_t computeWaitTimeNs_l() const = 0;
428 // returns true if the track is allowed to be added to the thread.
429 virtual bool isTrackAllowed_l(
430 audio_channel_mask_t channelMask, audio_format_t format, audio_session_t sessionId,
431 uid_t uid) const = 0;
432
433 virtual bool supportsHapticPlayback() const = 0;
434
435 virtual void setDownStreamPatch(const struct audio_patch* patch) = 0;
436
437 virtual IAfTrack* getTrackById_l(audio_port_handle_t trackId) = 0;
438
439 virtual bool hasMixer() const = 0;
440
441 virtual status_t setRequestedLatencyMode(audio_latency_mode_t mode) = 0;
442
443 virtual status_t getSupportedLatencyModes(std::vector<audio_latency_mode_t>* modes) = 0;
444
445 virtual status_t setBluetoothVariableLatencyEnabled(bool enabled) = 0;
446
447 virtual void setStandby() = 0;
448 virtual void setStandby_l() = 0;
449 virtual bool waitForHalStart() = 0;
450
451 virtual bool hasFastMixer() const = 0;
452 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const = 0;
453 virtual const std::atomic<int64_t>& framesWritten() const = 0;
Andy Hung87c693c2023-07-06 20:56:16 -0700454
455 virtual bool usesHwAvSync() const = 0;
456};
457
458class IAfDirectOutputThread : public virtual IAfPlaybackThread {
459public:
460 virtual status_t selectPresentation(int presentationId, int programId) = 0;
461};
462
463class IAfDuplicatingThread : public virtual IAfPlaybackThread {
464public:
Andy Hungee58e4a2023-07-07 13:47:37 -0700465 static sp<IAfDuplicatingThread> create(
Andy Hung583043b2023-07-17 17:05:00 -0700466 const sp<IAfThreadCallback>& afThreadCallback, IAfPlaybackThread* mainThread,
Andy Hungee58e4a2023-07-07 13:47:37 -0700467 audio_io_handle_t id, bool systemReady);
468
Andy Hung87c693c2023-07-06 20:56:16 -0700469 virtual void addOutputTrack(IAfPlaybackThread* thread) = 0;
470 virtual uint32_t waitTimeMs() const = 0;
471 virtual void removeOutputTrack(IAfPlaybackThread* thread) = 0;
472};
473
474class IAfRecordThread : public virtual IAfThreadBase {
475public:
476 static sp<IAfRecordThread> create(
Andy Hung583043b2023-07-17 17:05:00 -0700477 const sp<IAfThreadCallback>& afThreadCallback, AudioStreamIn* input,
478 audio_io_handle_t id, bool systemReady);
Andy Hung87c693c2023-07-06 20:56:16 -0700479
480 virtual sp<IAfRecordTrack> createRecordTrack_l(
481 const sp<Client>& client,
482 const audio_attributes_t& attr,
483 uint32_t* pSampleRate,
484 audio_format_t format,
485 audio_channel_mask_t channelMask,
486 size_t* pFrameCount,
487 audio_session_t sessionId,
488 size_t* pNotificationFrameCount,
489 pid_t creatorPid,
490 const AttributionSourceState& attributionSource,
491 audio_input_flags_t* flags,
492 pid_t tid,
493 status_t* status /*non-NULL*/,
494 audio_port_handle_t portId,
495 int32_t maxSharedAudioHistoryMs) = 0;
496 virtual void destroyTrack_l(const sp<IAfRecordTrack>& track) = 0;
497 virtual void removeTrack_l(const sp<IAfRecordTrack>& track) = 0;
498
499 virtual status_t start(
500 IAfRecordTrack* recordTrack, AudioSystem::sync_event_t event,
501 audio_session_t triggerSession) = 0;
502
503 // ask the thread to stop the specified track, and
504 // return true if the caller should then do it's part of the stopping process
505 virtual bool stop(IAfRecordTrack* recordTrack) = 0;
506
507 virtual AudioStreamIn* getInput() const = 0;
508 virtual AudioStreamIn* clearInput() = 0;
509
510 virtual status_t getActiveMicrophones(
511 std::vector<media::MicrophoneInfoFw>* activeMicrophones) const = 0;
512 virtual status_t setPreferredMicrophoneDirection(audio_microphone_direction_t direction) = 0;
513 virtual status_t setPreferredMicrophoneFieldDimension(float zoom) = 0;
514
515 virtual void addPatchTrack(const sp<IAfPatchRecord>& record) = 0;
516 virtual void deletePatchTrack(const sp<IAfPatchRecord>& record) = 0;
517 virtual bool fastTrackAvailable() const = 0;
518 virtual void setFastTrackAvailable(bool available) = 0;
519
520 virtual void setRecordSilenced(audio_port_handle_t portId, bool silenced) = 0;
521 virtual bool hasFastCapture() const = 0;
522
523 virtual void checkBtNrec() = 0;
524 virtual uint32_t getInputFramesLost() const = 0;
525
526 virtual status_t shareAudioHistory(
527 const std::string& sharedAudioPackageName,
528 audio_session_t sharedSessionId = AUDIO_SESSION_NONE,
529 int64_t sharedAudioStartMs = -1) = 0;
530 virtual void resetAudioHistory_l() = 0;
Andy Hung440901d2023-06-29 21:19:25 -0700531};
532
Andy Hung7aa7d102023-07-07 15:58:48 -0700533class IAfMmapThread : public virtual IAfThreadBase {
534public:
535 // createIAudioTrackAdapter() is a static constructor which creates an
536 // MmapStreamInterface AIDL interface adapter from the MmapThread object that
537 // may be passed back to the client.
538 //
539 // Only one AIDL MmapStreamInterface interface adapter should be created per MmapThread.
540 static sp<MmapStreamInterface> createMmapStreamInterfaceAdapter(
541 const sp<IAfMmapThread>& mmapThread);
542
543 virtual void configure(
544 const audio_attributes_t* attr,
545 audio_stream_type_t streamType,
546 audio_session_t sessionId,
547 const sp<MmapStreamCallback>& callback,
548 audio_port_handle_t deviceId,
549 audio_port_handle_t portId) = 0;
550 virtual void disconnect() = 0;
551
552 // MmapStreamInterface handling (see adapter)
553 virtual status_t createMmapBuffer(
554 int32_t minSizeFrames, struct audio_mmap_buffer_info* info) = 0;
555 virtual status_t getMmapPosition(struct audio_mmap_position* position) const = 0;
556 virtual status_t start(
557 const AudioClient& client, const audio_attributes_t* attr,
558 audio_port_handle_t* handle) = 0;
559 virtual status_t stop(audio_port_handle_t handle) = 0;
560 virtual status_t standby() = 0;
561 virtual status_t getExternalPosition(uint64_t* position, int64_t* timeNanos) const = 0;
562 virtual status_t reportData(const void* buffer, size_t frameCount) = 0;
563
Andy Hung99b1ba62023-07-14 11:00:08 -0700564 // TODO(b/291317898) move to IAfThreadBase?
Andy Hung7aa7d102023-07-07 15:58:48 -0700565 virtual void invalidateTracks(std::set<audio_port_handle_t>& portIds) = 0;
566
Andy Hung99b1ba62023-07-14 11:00:08 -0700567 // Sets the UID records silence - TODO(b/291317898) move to IAfMmapCaptureThread
Andy Hung7aa7d102023-07-07 15:58:48 -0700568 virtual void setRecordSilenced(audio_port_handle_t portId, bool silenced) = 0;
569
570 virtual sp<IAfMmapPlaybackThread> asIAfMmapPlaybackThread() { return nullptr; }
571 virtual sp<IAfMmapCaptureThread> asIAfMmapCaptureThread() { return nullptr; }
572};
573
574class IAfMmapPlaybackThread : public virtual IAfMmapThread, public virtual VolumeInterface {
575public:
Andy Hungee58e4a2023-07-07 13:47:37 -0700576 static sp<IAfMmapPlaybackThread> create(
Andy Hung583043b2023-07-17 17:05:00 -0700577 const sp<IAfThreadCallback>& afThreadCallback, audio_io_handle_t id,
578 AudioHwDevice* hwDev, AudioStreamOut* output, bool systemReady);
Andy Hungee58e4a2023-07-07 13:47:37 -0700579
Andy Hung7aa7d102023-07-07 15:58:48 -0700580 virtual AudioStreamOut* clearOutput() = 0;
581};
582
583class IAfMmapCaptureThread : public virtual IAfMmapThread {
584public:
Andy Hungee58e4a2023-07-07 13:47:37 -0700585 static sp<IAfMmapCaptureThread> create(
Andy Hung583043b2023-07-17 17:05:00 -0700586 const sp<IAfThreadCallback>& afThreadCallback, audio_io_handle_t id,
587 AudioHwDevice* hwDev, AudioStreamIn* input, bool systemReady);
Andy Hungee58e4a2023-07-07 13:47:37 -0700588
Andy Hung7aa7d102023-07-07 15:58:48 -0700589 virtual AudioStreamIn* clearInput() = 0;
590};
591
Andy Hung440901d2023-06-29 21:19:25 -0700592} // namespace android