blob: a6bc286c80b8d4ca476402c5197498a9c2bf1217 [file] [log] [blame]
Eric Laurentca7cc822012-11-19 14:55:58 -08001/*
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
19#define LOG_TAG "AudioFlinger"
20//#define LOG_NDEBUG 0
21
Glenn Kasten153b9fe2013-07-15 11:23:36 -070022#include "Configuration.h"
Eric Laurentca7cc822012-11-19 14:55:58 -080023#include <utils/Log.h>
24#include <audio_effects/effect_visualizer.h>
25#include <audio_utils/primitives.h>
26#include <private/media/AudioEffectShared.h>
27#include <media/EffectsFactoryApi.h>
28
29#include "AudioFlinger.h"
30#include "ServiceUtilities.h"
31
32// ----------------------------------------------------------------------------
33
34// Note: the following macro is used for extremely verbose logging message. In
35// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
36// 0; but one side effect of this is to turn all LOGV's as well. Some messages
37// are so verbose that we want to suppress them even when we have ALOG_ASSERT
38// turned on. Do not uncomment the #def below unless you really know what you
39// are doing and want to see all of the extremely verbose messages.
40//#define VERY_VERY_VERBOSE_LOGGING
41#ifdef VERY_VERY_VERBOSE_LOGGING
42#define ALOGVV ALOGV
43#else
44#define ALOGVV(a...) do { } while(0)
45#endif
46
Ricardo Garcia726b6a72014-08-11 12:04:54 -070047#define min(a, b) ((a) < (b) ? (a) : (b))
48
Eric Laurentca7cc822012-11-19 14:55:58 -080049namespace android {
50
51// ----------------------------------------------------------------------------
52// EffectModule implementation
53// ----------------------------------------------------------------------------
54
55#undef LOG_TAG
56#define LOG_TAG "AudioFlinger::EffectModule"
57
58AudioFlinger::EffectModule::EffectModule(ThreadBase *thread,
59 const wp<AudioFlinger::EffectChain>& chain,
60 effect_descriptor_t *desc,
61 int id,
Glenn Kastend848eb42016-03-08 13:42:11 -080062 audio_session_t sessionId)
Eric Laurentca7cc822012-11-19 14:55:58 -080063 : mPinned(sessionId > AUDIO_SESSION_OUTPUT_MIX),
64 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
65 mDescriptor(*desc),
66 // mConfig is set by configure() and not used before then
67 mEffectInterface(NULL),
68 mStatus(NO_INIT), mState(IDLE),
69 // mMaxDisableWaitCnt is set by configure() and not used before then
70 // mDisableWaitCnt is set by process() and updateState() and not used before then
Eric Laurentaaa44472014-09-12 17:41:50 -070071 mSuspended(false),
72 mAudioFlinger(thread->mAudioFlinger)
Eric Laurentca7cc822012-11-19 14:55:58 -080073{
74 ALOGV("Constructor %p", this);
75 int lStatus;
76
77 // create effect engine from effect factory
78 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
79
80 if (mStatus != NO_ERROR) {
81 return;
82 }
83 lStatus = init();
84 if (lStatus < 0) {
85 mStatus = lStatus;
86 goto Error;
87 }
88
89 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
90 return;
91Error:
92 EffectRelease(mEffectInterface);
93 mEffectInterface = NULL;
94 ALOGV("Constructor Error %d", mStatus);
95}
96
97AudioFlinger::EffectModule::~EffectModule()
98{
99 ALOGV("Destructor %p", this);
100 if (mEffectInterface != NULL) {
Eric Laurentbfb1b832013-01-07 09:53:42 -0800101 remove_effect_from_hal_l();
Eric Laurentca7cc822012-11-19 14:55:58 -0800102 // release effect engine
103 EffectRelease(mEffectInterface);
104 }
105}
106
107status_t AudioFlinger::EffectModule::addHandle(EffectHandle *handle)
108{
109 status_t status;
110
111 Mutex::Autolock _l(mLock);
112 int priority = handle->priority();
113 size_t size = mHandles.size();
114 EffectHandle *controlHandle = NULL;
115 size_t i;
116 for (i = 0; i < size; i++) {
117 EffectHandle *h = mHandles[i];
118 if (h == NULL || h->destroyed_l()) {
119 continue;
120 }
121 // first non destroyed handle is considered in control
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700122 if (controlHandle == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800123 controlHandle = h;
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700124 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800125 if (h->priority() <= priority) {
126 break;
127 }
128 }
129 // if inserted in first place, move effect control from previous owner to this handle
130 if (i == 0) {
131 bool enabled = false;
132 if (controlHandle != NULL) {
133 enabled = controlHandle->enabled();
134 controlHandle->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
135 }
136 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
137 status = NO_ERROR;
138 } else {
139 status = ALREADY_EXISTS;
140 }
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700141 ALOGV("addHandle() %p added handle %p in position %zu", this, handle, i);
Eric Laurentca7cc822012-11-19 14:55:58 -0800142 mHandles.insertAt(handle, i);
143 return status;
144}
145
146size_t AudioFlinger::EffectModule::removeHandle(EffectHandle *handle)
147{
148 Mutex::Autolock _l(mLock);
149 size_t size = mHandles.size();
150 size_t i;
151 for (i = 0; i < size; i++) {
152 if (mHandles[i] == handle) {
153 break;
154 }
155 }
156 if (i == size) {
157 return size;
158 }
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700159 ALOGV("removeHandle() %p removed handle %p in position %zu", this, handle, i);
Eric Laurentca7cc822012-11-19 14:55:58 -0800160
161 mHandles.removeAt(i);
162 // if removed from first place, move effect control from this handle to next in line
163 if (i == 0) {
164 EffectHandle *h = controlHandle_l();
165 if (h != NULL) {
166 h->setControl(true /*hasControl*/, true /*signal*/ , handle->enabled() /*enabled*/);
167 }
168 }
169
170 // Prevent calls to process() and other functions on effect interface from now on.
171 // The effect engine will be released by the destructor when the last strong reference on
172 // this object is released which can happen after next process is called.
173 if (mHandles.size() == 0 && !mPinned) {
174 mState = DESTROYED;
175 }
176
177 return mHandles.size();
178}
179
180// must be called with EffectModule::mLock held
181AudioFlinger::EffectHandle *AudioFlinger::EffectModule::controlHandle_l()
182{
183 // the first valid handle in the list has control over the module
184 for (size_t i = 0; i < mHandles.size(); i++) {
185 EffectHandle *h = mHandles[i];
186 if (h != NULL && !h->destroyed_l()) {
187 return h;
188 }
189 }
190
191 return NULL;
192}
193
194size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast)
195{
196 ALOGV("disconnect() %p handle %p", this, handle);
197 // keep a strong reference on this EffectModule to avoid calling the
198 // destructor before we exit
199 sp<EffectModule> keep(this);
200 {
Eric Laurentaaa44472014-09-12 17:41:50 -0700201 if (removeHandle(handle) == 0) {
202 if (!isPinned() || unpinIfLast) {
203 sp<ThreadBase> thread = mThread.promote();
204 if (thread != 0) {
205 Mutex::Autolock _l(thread->mLock);
206 thread->removeEffect_l(this);
207 }
208 sp<AudioFlinger> af = mAudioFlinger.promote();
209 if (af != 0) {
210 af->updateOrphanEffectChains(this);
211 }
212 AudioSystem::unregisterEffect(mId);
213 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800214 }
215 }
216 return mHandles.size();
217}
218
Eric Laurentfa1e1232016-08-02 19:01:49 -0700219bool AudioFlinger::EffectModule::updateState() {
Eric Laurentca7cc822012-11-19 14:55:58 -0800220 Mutex::Autolock _l(mLock);
221
Eric Laurentfa1e1232016-08-02 19:01:49 -0700222 bool started = false;
Eric Laurentca7cc822012-11-19 14:55:58 -0800223 switch (mState) {
224 case RESTART:
225 reset_l();
226 // FALL THROUGH
227
228 case STARTING:
229 // clear auxiliary effect input buffer for next accumulation
230 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
231 memset(mConfig.inputCfg.buffer.raw,
232 0,
233 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
234 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700235 if (start_l() == NO_ERROR) {
236 mState = ACTIVE;
Eric Laurentfa1e1232016-08-02 19:01:49 -0700237 started = true;
Eric Laurentd0ebb532013-04-02 16:41:41 -0700238 } else {
239 mState = IDLE;
240 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800241 break;
242 case STOPPING:
Eric Laurentd0ebb532013-04-02 16:41:41 -0700243 if (stop_l() == NO_ERROR) {
244 mDisableWaitCnt = mMaxDisableWaitCnt;
245 } else {
246 mDisableWaitCnt = 1; // will cause immediate transition to IDLE
247 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800248 mState = STOPPED;
249 break;
250 case STOPPED:
251 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
252 // turn off sequence.
253 if (--mDisableWaitCnt == 0) {
254 reset_l();
255 mState = IDLE;
256 }
257 break;
258 default: //IDLE , ACTIVE, DESTROYED
259 break;
260 }
Eric Laurentfa1e1232016-08-02 19:01:49 -0700261
262 return started;
Eric Laurentca7cc822012-11-19 14:55:58 -0800263}
264
265void AudioFlinger::EffectModule::process()
266{
267 Mutex::Autolock _l(mLock);
268
269 if (mState == DESTROYED || mEffectInterface == NULL ||
270 mConfig.inputCfg.buffer.raw == NULL ||
271 mConfig.outputCfg.buffer.raw == NULL) {
272 return;
273 }
274
275 if (isProcessEnabled()) {
276 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
277 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
278 ditherAndClamp(mConfig.inputCfg.buffer.s32,
279 mConfig.inputCfg.buffer.s32,
280 mConfig.inputCfg.buffer.frameCount/2);
281 }
282
283 // do the actual processing in the effect engine
284 int ret = (*mEffectInterface)->process(mEffectInterface,
285 &mConfig.inputCfg.buffer,
286 &mConfig.outputCfg.buffer);
287
288 // force transition to IDLE state when engine is ready
289 if (mState == STOPPED && ret == -ENODATA) {
290 mDisableWaitCnt = 1;
291 }
292
293 // clear auxiliary effect input buffer for next accumulation
294 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
295 memset(mConfig.inputCfg.buffer.raw, 0,
296 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
297 }
298 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
299 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
300 // If an insert effect is idle and input buffer is different from output buffer,
301 // accumulate input onto output
302 sp<EffectChain> chain = mChain.promote();
303 if (chain != 0 && chain->activeTrackCnt() != 0) {
304 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
305 int16_t *in = mConfig.inputCfg.buffer.s16;
306 int16_t *out = mConfig.outputCfg.buffer.s16;
307 for (size_t i = 0; i < frameCnt; i++) {
308 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
309 }
310 }
311 }
312}
313
314void AudioFlinger::EffectModule::reset_l()
315{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700316 if (mStatus != NO_ERROR || mEffectInterface == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800317 return;
318 }
319 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
320}
321
322status_t AudioFlinger::EffectModule::configure()
323{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700324 status_t status;
325 sp<ThreadBase> thread;
326 uint32_t size;
327 audio_channel_mask_t channelMask;
328
Eric Laurentca7cc822012-11-19 14:55:58 -0800329 if (mEffectInterface == NULL) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700330 status = NO_INIT;
331 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800332 }
333
Eric Laurentd0ebb532013-04-02 16:41:41 -0700334 thread = mThread.promote();
Eric Laurentca7cc822012-11-19 14:55:58 -0800335 if (thread == 0) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700336 status = DEAD_OBJECT;
337 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800338 }
339
340 // TODO: handle configuration of effects replacing track process
Eric Laurentd0ebb532013-04-02 16:41:41 -0700341 channelMask = thread->channelMask();
Ricardo Garciad11da702015-05-28 12:14:12 -0700342 mConfig.outputCfg.channels = channelMask;
Eric Laurentca7cc822012-11-19 14:55:58 -0800343
344 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
345 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
346 } else {
347 mConfig.inputCfg.channels = channelMask;
Ricardo Garciad11da702015-05-28 12:14:12 -0700348 // TODO: Update this logic when multichannel effects are implemented.
349 // For offloaded tracks consider mono output as stereo for proper effect initialization
350 if (channelMask == AUDIO_CHANNEL_OUT_MONO) {
351 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
352 mConfig.outputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
353 ALOGV("Overriding effect input and output as STEREO");
354 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800355 }
Ricardo Garciad11da702015-05-28 12:14:12 -0700356
Eric Laurentca7cc822012-11-19 14:55:58 -0800357 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
358 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
359 mConfig.inputCfg.samplingRate = thread->sampleRate();
360 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
361 mConfig.inputCfg.bufferProvider.cookie = NULL;
362 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
363 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
364 mConfig.outputCfg.bufferProvider.cookie = NULL;
365 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
366 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
367 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
368 // Insert effect:
369 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
370 // always overwrites output buffer: input buffer == output buffer
371 // - in other sessions:
372 // last effect in the chain accumulates in output buffer: input buffer != output buffer
373 // other effect: overwrites output buffer: input buffer == output buffer
374 // Auxiliary effect:
375 // accumulates in output buffer: input buffer != output buffer
376 // Therefore: accumulate <=> input buffer != output buffer
377 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
378 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
379 } else {
380 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
381 }
382 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
383 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
384 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
385 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
386
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700387 ALOGV("configure() %p thread %p buffer %p framecount %zu",
Eric Laurentca7cc822012-11-19 14:55:58 -0800388 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
389
390 status_t cmdStatus;
Eric Laurentd0ebb532013-04-02 16:41:41 -0700391 size = sizeof(int);
392 status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurentca7cc822012-11-19 14:55:58 -0800393 EFFECT_CMD_SET_CONFIG,
394 sizeof(effect_config_t),
395 &mConfig,
396 &size,
397 &cmdStatus);
398 if (status == 0) {
399 status = cmdStatus;
400 }
401
402 if (status == 0 &&
403 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
404 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
405 effect_param_t *p = (effect_param_t *)buf32;
406
407 p->psize = sizeof(uint32_t);
408 p->vsize = sizeof(uint32_t);
409 size = sizeof(int);
410 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
411
412 uint32_t latency = 0;
413 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
414 if (pbt != NULL) {
415 latency = pbt->latency_l();
416 }
417
418 *((int32_t *)p->data + 1)= latency;
419 (*mEffectInterface)->command(mEffectInterface,
420 EFFECT_CMD_SET_PARAM,
421 sizeof(effect_param_t) + 8,
422 &buf32,
423 &size,
424 &cmdStatus);
425 }
426
427 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
428 (1000 * mConfig.outputCfg.buffer.frameCount);
429
Eric Laurentd0ebb532013-04-02 16:41:41 -0700430exit:
431 mStatus = status;
Eric Laurentca7cc822012-11-19 14:55:58 -0800432 return status;
433}
434
435status_t AudioFlinger::EffectModule::init()
436{
437 Mutex::Autolock _l(mLock);
438 if (mEffectInterface == NULL) {
439 return NO_INIT;
440 }
441 status_t cmdStatus;
442 uint32_t size = sizeof(status_t);
443 status_t status = (*mEffectInterface)->command(mEffectInterface,
444 EFFECT_CMD_INIT,
445 0,
446 NULL,
447 &size,
448 &cmdStatus);
449 if (status == 0) {
450 status = cmdStatus;
451 }
452 return status;
453}
454
Eric Laurent1b928682014-10-02 19:41:47 -0700455void AudioFlinger::EffectModule::addEffectToHal_l()
456{
457 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
458 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
459 sp<ThreadBase> thread = mThread.promote();
460 if (thread != 0) {
461 audio_stream_t *stream = thread->stream();
462 if (stream != NULL) {
463 stream->add_audio_effect(stream, mEffectInterface);
464 }
465 }
466 }
467}
468
Eric Laurentfa1e1232016-08-02 19:01:49 -0700469// start() must be called with PlaybackThread::mLock or EffectChain::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -0800470status_t AudioFlinger::EffectModule::start()
471{
Eric Laurentfa1e1232016-08-02 19:01:49 -0700472 sp<EffectChain> chain;
473 status_t status;
474 {
475 Mutex::Autolock _l(mLock);
476 status = start_l();
477 if (status == NO_ERROR) {
478 chain = mChain.promote();
479 }
480 }
481 if (chain != 0) {
482 chain->resetVolume_l();
483 }
484 return status;
Eric Laurentca7cc822012-11-19 14:55:58 -0800485}
486
487status_t AudioFlinger::EffectModule::start_l()
488{
489 if (mEffectInterface == NULL) {
490 return NO_INIT;
491 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700492 if (mStatus != NO_ERROR) {
493 return mStatus;
494 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800495 status_t cmdStatus;
496 uint32_t size = sizeof(status_t);
497 status_t status = (*mEffectInterface)->command(mEffectInterface,
498 EFFECT_CMD_ENABLE,
499 0,
500 NULL,
501 &size,
502 &cmdStatus);
503 if (status == 0) {
504 status = cmdStatus;
505 }
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700506 if (status == 0) {
Eric Laurent1b928682014-10-02 19:41:47 -0700507 addEffectToHal_l();
Eric Laurentca7cc822012-11-19 14:55:58 -0800508 }
509 return status;
510}
511
512status_t AudioFlinger::EffectModule::stop()
513{
514 Mutex::Autolock _l(mLock);
515 return stop_l();
516}
517
518status_t AudioFlinger::EffectModule::stop_l()
519{
520 if (mEffectInterface == NULL) {
521 return NO_INIT;
522 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700523 if (mStatus != NO_ERROR) {
524 return mStatus;
525 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800526 status_t cmdStatus = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800527 uint32_t size = sizeof(status_t);
528 status_t status = (*mEffectInterface)->command(mEffectInterface,
529 EFFECT_CMD_DISABLE,
530 0,
531 NULL,
532 &size,
533 &cmdStatus);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800534 if (status == NO_ERROR) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800535 status = cmdStatus;
536 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800537 if (status == NO_ERROR) {
538 status = remove_effect_from_hal_l();
539 }
540 return status;
541}
542
543status_t AudioFlinger::EffectModule::remove_effect_from_hal_l()
544{
545 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
546 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800547 sp<ThreadBase> thread = mThread.promote();
548 if (thread != 0) {
549 audio_stream_t *stream = thread->stream();
550 if (stream != NULL) {
551 stream->remove_audio_effect(stream, mEffectInterface);
552 }
553 }
554 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800555 return NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800556}
557
Andy Hunge4a1d912016-08-17 14:11:13 -0700558// round up delta valid if value and divisor are positive.
559template <typename T>
560static T roundUpDelta(const T &value, const T &divisor) {
561 T remainder = value % divisor;
562 return remainder == 0 ? 0 : divisor - remainder;
563}
564
Eric Laurentca7cc822012-11-19 14:55:58 -0800565status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
566 uint32_t cmdSize,
567 void *pCmdData,
568 uint32_t *replySize,
569 void *pReplyData)
570{
571 Mutex::Autolock _l(mLock);
572 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
573
574 if (mState == DESTROYED || mEffectInterface == NULL) {
575 return NO_INIT;
576 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700577 if (mStatus != NO_ERROR) {
578 return mStatus;
579 }
Andy Hung110bc952016-06-20 15:22:52 -0700580 if (cmdCode == EFFECT_CMD_GET_PARAM &&
581 (*replySize < sizeof(effect_param_t) ||
582 ((effect_param_t *)pCmdData)->psize > *replySize - sizeof(effect_param_t))) {
583 android_errorWriteLog(0x534e4554, "29251553");
584 return -EINVAL;
585 }
Andy Hung3d34cc72016-11-04 19:40:53 -0700586 if (cmdCode == EFFECT_CMD_GET_PARAM &&
587 (sizeof(effect_param_t) > cmdSize ||
588 ((effect_param_t *)pCmdData)->psize > cmdSize
589 - sizeof(effect_param_t))) {
590 android_errorWriteLog(0x534e4554, "32438594");
591 return -EINVAL;
592 }
ragoe2759072016-11-22 18:02:48 -0800593 if (cmdCode == EFFECT_CMD_GET_PARAM &&
594 (sizeof(effect_param_t) > *replySize
595 || ((effect_param_t *)pCmdData)->psize > *replySize
596 - sizeof(effect_param_t)
597 || ((effect_param_t *)pCmdData)->vsize > *replySize
598 - sizeof(effect_param_t)
599 - ((effect_param_t *)pCmdData)->psize
600 || roundUpDelta(((effect_param_t *)pCmdData)->psize, (uint32_t)sizeof(int)) >
601 *replySize
602 - sizeof(effect_param_t)
603 - ((effect_param_t *)pCmdData)->psize
604 - ((effect_param_t *)pCmdData)->vsize)) {
605 ALOGV("\tLVM_ERROR : EFFECT_CMD_GET_PARAM: reply size inconsistent");
606 android_errorWriteLog(0x534e4554, "32705438");
607 return -EINVAL;
608 }
Andy Hunge4a1d912016-08-17 14:11:13 -0700609 if ((cmdCode == EFFECT_CMD_SET_PARAM
610 || cmdCode == EFFECT_CMD_SET_PARAM_DEFERRED) && // DEFERRED not generally used
611 (sizeof(effect_param_t) > cmdSize
612 || ((effect_param_t *)pCmdData)->psize > cmdSize
613 - sizeof(effect_param_t)
614 || ((effect_param_t *)pCmdData)->vsize > cmdSize
615 - sizeof(effect_param_t)
616 - ((effect_param_t *)pCmdData)->psize
617 || roundUpDelta(((effect_param_t *)pCmdData)->psize, (uint32_t)sizeof(int)) >
618 cmdSize
619 - sizeof(effect_param_t)
620 - ((effect_param_t *)pCmdData)->psize
621 - ((effect_param_t *)pCmdData)->vsize)) {
622 android_errorWriteLog(0x534e4554, "30204301");
623 return -EINVAL;
624 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800625 status_t status = (*mEffectInterface)->command(mEffectInterface,
626 cmdCode,
627 cmdSize,
628 pCmdData,
629 replySize,
630 pReplyData);
631 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
632 uint32_t size = (replySize == NULL) ? 0 : *replySize;
633 for (size_t i = 1; i < mHandles.size(); i++) {
634 EffectHandle *h = mHandles[i];
635 if (h != NULL && !h->destroyed_l()) {
636 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
637 }
638 }
639 }
640 return status;
641}
642
643status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
644{
645 Mutex::Autolock _l(mLock);
646 return setEnabled_l(enabled);
647}
648
649// must be called with EffectModule::mLock held
650status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
651{
652
653 ALOGV("setEnabled %p enabled %d", this, enabled);
654
655 if (enabled != isEnabled()) {
656 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
657 if (enabled && status != NO_ERROR) {
658 return status;
659 }
660
661 switch (mState) {
662 // going from disabled to enabled
663 case IDLE:
664 mState = STARTING;
665 break;
666 case STOPPED:
667 mState = RESTART;
668 break;
669 case STOPPING:
670 mState = ACTIVE;
671 break;
672
673 // going from enabled to disabled
674 case RESTART:
675 mState = STOPPED;
676 break;
677 case STARTING:
678 mState = IDLE;
679 break;
680 case ACTIVE:
681 mState = STOPPING;
682 break;
683 case DESTROYED:
684 return NO_ERROR; // simply ignore as we are being destroyed
685 }
686 for (size_t i = 1; i < mHandles.size(); i++) {
687 EffectHandle *h = mHandles[i];
688 if (h != NULL && !h->destroyed_l()) {
689 h->setEnabled(enabled);
690 }
691 }
692 }
693 return NO_ERROR;
694}
695
696bool AudioFlinger::EffectModule::isEnabled() const
697{
698 switch (mState) {
699 case RESTART:
700 case STARTING:
701 case ACTIVE:
702 return true;
703 case IDLE:
704 case STOPPING:
705 case STOPPED:
706 case DESTROYED:
707 default:
708 return false;
709 }
710}
711
712bool AudioFlinger::EffectModule::isProcessEnabled() const
713{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700714 if (mStatus != NO_ERROR) {
715 return false;
716 }
717
Eric Laurentca7cc822012-11-19 14:55:58 -0800718 switch (mState) {
719 case RESTART:
720 case ACTIVE:
721 case STOPPING:
722 case STOPPED:
723 return true;
724 case IDLE:
725 case STARTING:
726 case DESTROYED:
727 default:
728 return false;
729 }
730}
731
732status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
733{
734 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700735 if (mStatus != NO_ERROR) {
736 return mStatus;
737 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800738 status_t status = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800739 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
740 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
741 if (isProcessEnabled() &&
742 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
743 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800744 uint32_t volume[2];
745 uint32_t *pVolume = NULL;
746 uint32_t size = sizeof(volume);
747 volume[0] = *left;
748 volume[1] = *right;
749 if (controller) {
750 pVolume = volume;
751 }
752 status = (*mEffectInterface)->command(mEffectInterface,
753 EFFECT_CMD_SET_VOLUME,
754 size,
755 volume,
756 &size,
757 pVolume);
758 if (controller && status == NO_ERROR && size == sizeof(volume)) {
759 *left = volume[0];
760 *right = volume[1];
761 }
762 }
763 return status;
764}
765
766status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
767{
768 if (device == AUDIO_DEVICE_NONE) {
769 return NO_ERROR;
770 }
771
772 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700773 if (mStatus != NO_ERROR) {
774 return mStatus;
775 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800776 status_t status = NO_ERROR;
Eric Laurent7e1139c2013-06-06 18:29:01 -0700777 if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800778 status_t cmdStatus;
779 uint32_t size = sizeof(status_t);
780 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
781 EFFECT_CMD_SET_INPUT_DEVICE;
782 status = (*mEffectInterface)->command(mEffectInterface,
783 cmd,
784 sizeof(uint32_t),
785 &device,
786 &size,
787 &cmdStatus);
788 }
789 return status;
790}
791
792status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
793{
794 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700795 if (mStatus != NO_ERROR) {
796 return mStatus;
797 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800798 status_t status = NO_ERROR;
799 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
800 status_t cmdStatus;
801 uint32_t size = sizeof(status_t);
802 status = (*mEffectInterface)->command(mEffectInterface,
803 EFFECT_CMD_SET_AUDIO_MODE,
804 sizeof(audio_mode_t),
805 &mode,
806 &size,
807 &cmdStatus);
808 if (status == NO_ERROR) {
809 status = cmdStatus;
810 }
811 }
812 return status;
813}
814
815status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
816{
817 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700818 if (mStatus != NO_ERROR) {
819 return mStatus;
820 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800821 status_t status = NO_ERROR;
822 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
823 uint32_t size = 0;
824 status = (*mEffectInterface)->command(mEffectInterface,
825 EFFECT_CMD_SET_AUDIO_SOURCE,
826 sizeof(audio_source_t),
827 &source,
828 &size,
829 NULL);
830 }
831 return status;
832}
833
834void AudioFlinger::EffectModule::setSuspended(bool suspended)
835{
836 Mutex::Autolock _l(mLock);
837 mSuspended = suspended;
838}
839
840bool AudioFlinger::EffectModule::suspended() const
841{
842 Mutex::Autolock _l(mLock);
843 return mSuspended;
844}
845
846bool AudioFlinger::EffectModule::purgeHandles()
847{
848 bool enabled = false;
849 Mutex::Autolock _l(mLock);
850 for (size_t i = 0; i < mHandles.size(); i++) {
851 EffectHandle *handle = mHandles[i];
852 if (handle != NULL && !handle->destroyed_l()) {
853 handle->effect().clear();
854 if (handle->hasControl()) {
855 enabled = handle->enabled();
856 }
857 }
858 }
859 return enabled;
860}
861
Eric Laurent5baf2af2013-09-12 17:37:00 -0700862status_t AudioFlinger::EffectModule::setOffloaded(bool offloaded, audio_io_handle_t io)
863{
864 Mutex::Autolock _l(mLock);
865 if (mStatus != NO_ERROR) {
866 return mStatus;
867 }
868 status_t status = NO_ERROR;
869 if ((mDescriptor.flags & EFFECT_FLAG_OFFLOAD_SUPPORTED) != 0) {
870 status_t cmdStatus;
871 uint32_t size = sizeof(status_t);
872 effect_offload_param_t cmd;
873
874 cmd.isOffload = offloaded;
875 cmd.ioHandle = io;
876 status = (*mEffectInterface)->command(mEffectInterface,
877 EFFECT_CMD_OFFLOAD,
878 sizeof(effect_offload_param_t),
879 &cmd,
880 &size,
881 &cmdStatus);
882 if (status == NO_ERROR) {
883 status = cmdStatus;
884 }
885 mOffloaded = (status == NO_ERROR) ? offloaded : false;
886 } else {
887 if (offloaded) {
888 status = INVALID_OPERATION;
889 }
890 mOffloaded = false;
891 }
892 ALOGV("setOffloaded() offloaded %d io %d status %d", offloaded, io, status);
893 return status;
894}
895
896bool AudioFlinger::EffectModule::isOffloaded() const
897{
898 Mutex::Autolock _l(mLock);
899 return mOffloaded;
900}
901
Marco Nelissenb2208842014-02-07 14:00:50 -0800902String8 effectFlagsToString(uint32_t flags) {
903 String8 s;
904
905 s.append("conn. mode: ");
906 switch (flags & EFFECT_FLAG_TYPE_MASK) {
907 case EFFECT_FLAG_TYPE_INSERT: s.append("insert"); break;
908 case EFFECT_FLAG_TYPE_AUXILIARY: s.append("auxiliary"); break;
909 case EFFECT_FLAG_TYPE_REPLACE: s.append("replace"); break;
910 case EFFECT_FLAG_TYPE_PRE_PROC: s.append("preproc"); break;
911 case EFFECT_FLAG_TYPE_POST_PROC: s.append("postproc"); break;
912 default: s.append("unknown/reserved"); break;
913 }
914 s.append(", ");
915
916 s.append("insert pref: ");
917 switch (flags & EFFECT_FLAG_INSERT_MASK) {
918 case EFFECT_FLAG_INSERT_ANY: s.append("any"); break;
919 case EFFECT_FLAG_INSERT_FIRST: s.append("first"); break;
920 case EFFECT_FLAG_INSERT_LAST: s.append("last"); break;
921 case EFFECT_FLAG_INSERT_EXCLUSIVE: s.append("exclusive"); break;
922 default: s.append("unknown/reserved"); break;
923 }
924 s.append(", ");
925
926 s.append("volume mgmt: ");
927 switch (flags & EFFECT_FLAG_VOLUME_MASK) {
928 case EFFECT_FLAG_VOLUME_NONE: s.append("none"); break;
929 case EFFECT_FLAG_VOLUME_CTRL: s.append("implements control"); break;
930 case EFFECT_FLAG_VOLUME_IND: s.append("requires indication"); break;
931 default: s.append("unknown/reserved"); break;
932 }
933 s.append(", ");
934
935 uint32_t devind = flags & EFFECT_FLAG_DEVICE_MASK;
936 if (devind) {
937 s.append("device indication: ");
938 switch (devind) {
939 case EFFECT_FLAG_DEVICE_IND: s.append("requires updates"); break;
940 default: s.append("unknown/reserved"); break;
941 }
942 s.append(", ");
943 }
944
945 s.append("input mode: ");
946 switch (flags & EFFECT_FLAG_INPUT_MASK) {
947 case EFFECT_FLAG_INPUT_DIRECT: s.append("direct"); break;
948 case EFFECT_FLAG_INPUT_PROVIDER: s.append("provider"); break;
949 case EFFECT_FLAG_INPUT_BOTH: s.append("direct+provider"); break;
950 default: s.append("not set"); break;
951 }
952 s.append(", ");
953
954 s.append("output mode: ");
955 switch (flags & EFFECT_FLAG_OUTPUT_MASK) {
956 case EFFECT_FLAG_OUTPUT_DIRECT: s.append("direct"); break;
957 case EFFECT_FLAG_OUTPUT_PROVIDER: s.append("provider"); break;
958 case EFFECT_FLAG_OUTPUT_BOTH: s.append("direct+provider"); break;
959 default: s.append("not set"); break;
960 }
961 s.append(", ");
962
963 uint32_t accel = flags & EFFECT_FLAG_HW_ACC_MASK;
964 if (accel) {
965 s.append("hardware acceleration: ");
966 switch (accel) {
967 case EFFECT_FLAG_HW_ACC_SIMPLE: s.append("non-tunneled"); break;
968 case EFFECT_FLAG_HW_ACC_TUNNEL: s.append("tunneled"); break;
969 default: s.append("unknown/reserved"); break;
970 }
971 s.append(", ");
972 }
973
974 uint32_t modeind = flags & EFFECT_FLAG_AUDIO_MODE_MASK;
975 if (modeind) {
976 s.append("mode indication: ");
977 switch (modeind) {
978 case EFFECT_FLAG_AUDIO_MODE_IND: s.append("required"); break;
979 default: s.append("unknown/reserved"); break;
980 }
981 s.append(", ");
982 }
983
984 uint32_t srcind = flags & EFFECT_FLAG_AUDIO_SOURCE_MASK;
985 if (srcind) {
986 s.append("source indication: ");
987 switch (srcind) {
988 case EFFECT_FLAG_AUDIO_SOURCE_IND: s.append("required"); break;
989 default: s.append("unknown/reserved"); break;
990 }
991 s.append(", ");
992 }
993
994 if (flags & EFFECT_FLAG_OFFLOAD_MASK) {
995 s.append("offloadable, ");
996 }
997
998 int len = s.length();
999 if (s.length() > 2) {
Glenn Kasten57c4e6f2016-03-18 14:54:07 -07001000 (void) s.lockBuffer(len);
Marco Nelissenb2208842014-02-07 14:00:50 -08001001 s.unlockBuffer(len - 2);
1002 }
1003 return s;
1004}
1005
1006
Glenn Kasten0f11b512014-01-31 16:18:54 -08001007void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args __unused)
Eric Laurentca7cc822012-11-19 14:55:58 -08001008{
1009 const size_t SIZE = 256;
1010 char buffer[SIZE];
1011 String8 result;
1012
1013 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
1014 result.append(buffer);
1015
1016 bool locked = AudioFlinger::dumpTryLock(mLock);
1017 // failed to lock - AudioFlinger is probably deadlocked
1018 if (!locked) {
1019 result.append("\t\tCould not lock Fx mutex:\n");
1020 }
1021
1022 result.append("\t\tSession Status State Engine:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001023 snprintf(buffer, SIZE, "\t\t%05d %03d %03d %p\n",
1024 mSessionId, mStatus, mState, mEffectInterface);
Eric Laurentca7cc822012-11-19 14:55:58 -08001025 result.append(buffer);
1026
1027 result.append("\t\tDescriptor:\n");
1028 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
1029 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
1030 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
1031 mDescriptor.uuid.node[2],
1032 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
1033 result.append(buffer);
1034 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
1035 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
1036 mDescriptor.type.timeHiAndVersion,
1037 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
1038 mDescriptor.type.node[2],
1039 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
1040 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001041 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X (%s)\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001042 mDescriptor.apiVersion,
Marco Nelissenb2208842014-02-07 14:00:50 -08001043 mDescriptor.flags,
1044 effectFlagsToString(mDescriptor.flags).string());
Eric Laurentca7cc822012-11-19 14:55:58 -08001045 result.append(buffer);
1046 snprintf(buffer, SIZE, "\t\t- name: %s\n",
1047 mDescriptor.name);
1048 result.append(buffer);
1049 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
1050 mDescriptor.implementor);
1051 result.append(buffer);
1052
1053 result.append("\t\t- Input configuration:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001054 result.append("\t\t\tFrames Smp rate Channels Format Buffer\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001055 snprintf(buffer, SIZE, "\t\t\t%05zu %05d %08x %6d (%s) %p\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001056 mConfig.inputCfg.buffer.frameCount,
1057 mConfig.inputCfg.samplingRate,
1058 mConfig.inputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -08001059 mConfig.inputCfg.format,
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001060 formatToString((audio_format_t)mConfig.inputCfg.format),
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001061 mConfig.inputCfg.buffer.raw);
Eric Laurentca7cc822012-11-19 14:55:58 -08001062 result.append(buffer);
1063
1064 result.append("\t\t- Output configuration:\n");
1065 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001066 snprintf(buffer, SIZE, "\t\t\t%p %05zu %05d %08x %d (%s)\n",
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001067 mConfig.outputCfg.buffer.raw,
Eric Laurentca7cc822012-11-19 14:55:58 -08001068 mConfig.outputCfg.buffer.frameCount,
1069 mConfig.outputCfg.samplingRate,
1070 mConfig.outputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -08001071 mConfig.outputCfg.format,
1072 formatToString((audio_format_t)mConfig.outputCfg.format));
Eric Laurentca7cc822012-11-19 14:55:58 -08001073 result.append(buffer);
1074
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001075 snprintf(buffer, SIZE, "\t\t%zu Clients:\n", mHandles.size());
Eric Laurentca7cc822012-11-19 14:55:58 -08001076 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001077 result.append("\t\t\t Pid Priority Ctrl Locked client server\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001078 for (size_t i = 0; i < mHandles.size(); ++i) {
1079 EffectHandle *handle = mHandles[i];
1080 if (handle != NULL && !handle->destroyed_l()) {
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001081 handle->dumpToBuffer(buffer, SIZE);
Eric Laurentca7cc822012-11-19 14:55:58 -08001082 result.append(buffer);
1083 }
1084 }
1085
Eric Laurentca7cc822012-11-19 14:55:58 -08001086 write(fd, result.string(), result.length());
1087
1088 if (locked) {
1089 mLock.unlock();
1090 }
1091}
1092
1093// ----------------------------------------------------------------------------
1094// EffectHandle implementation
1095// ----------------------------------------------------------------------------
1096
1097#undef LOG_TAG
1098#define LOG_TAG "AudioFlinger::EffectHandle"
1099
1100AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
1101 const sp<AudioFlinger::Client>& client,
1102 const sp<IEffectClient>& effectClient,
1103 int32_t priority)
1104 : BnEffect(),
1105 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
1106 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
1107{
1108 ALOGV("constructor %p", this);
1109
1110 if (client == 0) {
1111 return;
1112 }
1113 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
1114 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
Glenn Kastene75da402013-11-20 13:54:52 -08001115 if (mCblkMemory == 0 ||
1116 (mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer())) == NULL) {
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001117 ALOGE("not enough memory for Effect size=%zu", EFFECT_PARAM_BUFFER_SIZE +
Eric Laurentca7cc822012-11-19 14:55:58 -08001118 sizeof(effect_param_cblk_t));
Glenn Kastene75da402013-11-20 13:54:52 -08001119 mCblkMemory.clear();
Eric Laurentca7cc822012-11-19 14:55:58 -08001120 return;
1121 }
Glenn Kastene75da402013-11-20 13:54:52 -08001122 new(mCblk) effect_param_cblk_t();
1123 mBuffer = (uint8_t *)mCblk + bufOffset;
Eric Laurentca7cc822012-11-19 14:55:58 -08001124}
1125
1126AudioFlinger::EffectHandle::~EffectHandle()
1127{
1128 ALOGV("Destructor %p", this);
1129
1130 if (mEffect == 0) {
1131 mDestroyed = true;
1132 return;
1133 }
1134 mEffect->lock();
1135 mDestroyed = true;
1136 mEffect->unlock();
1137 disconnect(false);
1138}
1139
Glenn Kastene75da402013-11-20 13:54:52 -08001140status_t AudioFlinger::EffectHandle::initCheck()
1141{
1142 return mClient == 0 || mCblkMemory != 0 ? OK : NO_MEMORY;
1143}
1144
Eric Laurentca7cc822012-11-19 14:55:58 -08001145status_t AudioFlinger::EffectHandle::enable()
1146{
1147 ALOGV("enable %p", this);
1148 if (!mHasControl) {
1149 return INVALID_OPERATION;
1150 }
1151 if (mEffect == 0) {
1152 return DEAD_OBJECT;
1153 }
1154
1155 if (mEnabled) {
1156 return NO_ERROR;
1157 }
1158
1159 mEnabled = true;
1160
1161 sp<ThreadBase> thread = mEffect->thread().promote();
1162 if (thread != 0) {
1163 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
1164 }
1165
1166 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
1167 if (mEffect->suspended()) {
1168 return NO_ERROR;
1169 }
1170
1171 status_t status = mEffect->setEnabled(true);
1172 if (status != NO_ERROR) {
1173 if (thread != 0) {
1174 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1175 }
1176 mEnabled = false;
Eric Laurent813e2a72013-08-31 12:59:48 -07001177 } else {
Eric Laurent59fe0102013-09-27 18:48:26 -07001178 if (thread != 0) {
1179 if (thread->type() == ThreadBase::OFFLOAD) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001180 PlaybackThread *t = (PlaybackThread *)thread.get();
Eric Laurent59fe0102013-09-27 18:48:26 -07001181 Mutex::Autolock _l(t->mLock);
1182 t->broadcast_l();
Eric Laurent813e2a72013-08-31 12:59:48 -07001183 }
Eric Laurent59fe0102013-09-27 18:48:26 -07001184 if (!mEffect->isOffloadable()) {
1185 if (thread->type() == ThreadBase::OFFLOAD) {
1186 PlaybackThread *t = (PlaybackThread *)thread.get();
1187 t->invalidateTracks(AUDIO_STREAM_MUSIC);
1188 }
1189 if (mEffect->sessionId() == AUDIO_SESSION_OUTPUT_MIX) {
1190 thread->mAudioFlinger->onNonOffloadableGlobalEffectEnable();
1191 }
Eric Laurent813e2a72013-08-31 12:59:48 -07001192 }
1193 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001194 }
1195 return status;
1196}
1197
1198status_t AudioFlinger::EffectHandle::disable()
1199{
1200 ALOGV("disable %p", this);
1201 if (!mHasControl) {
1202 return INVALID_OPERATION;
1203 }
1204 if (mEffect == 0) {
1205 return DEAD_OBJECT;
1206 }
1207
1208 if (!mEnabled) {
1209 return NO_ERROR;
1210 }
1211 mEnabled = false;
1212
1213 if (mEffect->suspended()) {
1214 return NO_ERROR;
1215 }
1216
1217 status_t status = mEffect->setEnabled(false);
1218
1219 sp<ThreadBase> thread = mEffect->thread().promote();
1220 if (thread != 0) {
1221 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
Eric Laurent59fe0102013-09-27 18:48:26 -07001222 if (thread->type() == ThreadBase::OFFLOAD) {
1223 PlaybackThread *t = (PlaybackThread *)thread.get();
1224 Mutex::Autolock _l(t->mLock);
1225 t->broadcast_l();
1226 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001227 }
1228
1229 return status;
1230}
1231
1232void AudioFlinger::EffectHandle::disconnect()
1233{
1234 disconnect(true);
1235}
1236
1237void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
1238{
1239 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1240 if (mEffect == 0) {
1241 return;
1242 }
1243 // restore suspended effects if the disconnected handle was enabled and the last one.
1244 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
1245 sp<ThreadBase> thread = mEffect->thread().promote();
1246 if (thread != 0) {
1247 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1248 }
1249 }
1250
1251 // release sp on module => module destructor can be called now
1252 mEffect.clear();
1253 if (mClient != 0) {
1254 if (mCblk != NULL) {
1255 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
1256 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
1257 }
1258 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Eric Laurent021cf962014-05-13 10:18:14 -07001259 // Client destructor must run with AudioFlinger client mutex locked
1260 Mutex::Autolock _l(mClient->audioFlinger()->mClientLock);
Eric Laurentca7cc822012-11-19 14:55:58 -08001261 mClient.clear();
1262 }
1263}
1264
1265status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
1266 uint32_t cmdSize,
1267 void *pCmdData,
1268 uint32_t *replySize,
1269 void *pReplyData)
1270{
1271 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
1272 cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
1273
1274 // only get parameter command is permitted for applications not controlling the effect
1275 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1276 return INVALID_OPERATION;
1277 }
1278 if (mEffect == 0) {
1279 return DEAD_OBJECT;
1280 }
1281 if (mClient == 0) {
1282 return INVALID_OPERATION;
1283 }
1284
1285 // handle commands that are not forwarded transparently to effect engine
1286 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
1287 // No need to trylock() here as this function is executed in the binder thread serving a
1288 // particular client process: no risk to block the whole media server process or mixer
1289 // threads if we are stuck here
1290 Mutex::Autolock _l(mCblk->lock);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001291
1292 // keep local copy of index in case of client corruption b/32220769
1293 const uint32_t clientIndex = mCblk->clientIndex;
1294 const uint32_t serverIndex = mCblk->serverIndex;
1295 if (clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1296 serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001297 mCblk->serverIndex = 0;
1298 mCblk->clientIndex = 0;
1299 return BAD_VALUE;
1300 }
1301 status_t status = NO_ERROR;
Andy Hungdd79ccd2016-11-15 17:19:58 -08001302 effect_param_t *param = NULL;
1303 for (uint32_t index = serverIndex; index < clientIndex;) {
1304 int *p = (int *)(mBuffer + index);
1305 const int size = *p++;
1306 if (size < 0
1307 || size > EFFECT_PARAM_BUFFER_SIZE
1308 || ((uint8_t *)p + size) > mBuffer + clientIndex) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001309 ALOGW("command(): invalid parameter block size");
Andy Hungdd79ccd2016-11-15 17:19:58 -08001310 status = BAD_VALUE;
Eric Laurentca7cc822012-11-19 14:55:58 -08001311 break;
1312 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001313
1314 // copy to local memory in case of client corruption b/32220769
1315 param = (effect_param_t *)realloc(param, size);
1316 if (param == NULL) {
1317 ALOGW("command(): out of memory");
1318 status = NO_MEMORY;
1319 break;
Eric Laurentca7cc822012-11-19 14:55:58 -08001320 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001321 memcpy(param, p, size);
1322
1323 int reply = 0;
1324 uint32_t rsize = sizeof(reply);
Eric Laurentca7cc822012-11-19 14:55:58 -08001325 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
Andy Hungdd79ccd2016-11-15 17:19:58 -08001326 size,
1327 param,
Eric Laurentca7cc822012-11-19 14:55:58 -08001328 &rsize,
1329 &reply);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001330
1331 // verify shared memory: server index shouldn't change; client index can't go back.
1332 if (serverIndex != mCblk->serverIndex
1333 || clientIndex > mCblk->clientIndex) {
1334 android_errorWriteLog(0x534e4554, "32220769");
1335 status = BAD_VALUE;
1336 break;
1337 }
1338
Eric Laurentca7cc822012-11-19 14:55:58 -08001339 // stop at first error encountered
1340 if (ret != NO_ERROR) {
1341 status = ret;
1342 *(int *)pReplyData = reply;
1343 break;
1344 } else if (reply != NO_ERROR) {
1345 *(int *)pReplyData = reply;
1346 break;
1347 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001348 index += size;
Eric Laurentca7cc822012-11-19 14:55:58 -08001349 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001350 free(param);
Eric Laurentca7cc822012-11-19 14:55:58 -08001351 mCblk->serverIndex = 0;
1352 mCblk->clientIndex = 0;
1353 return status;
1354 } else if (cmdCode == EFFECT_CMD_ENABLE) {
1355 *(int *)pReplyData = NO_ERROR;
1356 return enable();
1357 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1358 *(int *)pReplyData = NO_ERROR;
1359 return disable();
1360 }
1361
1362 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1363}
1364
1365void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1366{
1367 ALOGV("setControl %p control %d", this, hasControl);
1368
1369 mHasControl = hasControl;
1370 mEnabled = enabled;
1371
1372 if (signal && mEffectClient != 0) {
1373 mEffectClient->controlStatusChanged(hasControl);
1374 }
1375}
1376
1377void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1378 uint32_t cmdSize,
1379 void *pCmdData,
1380 uint32_t replySize,
1381 void *pReplyData)
1382{
1383 if (mEffectClient != 0) {
1384 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1385 }
1386}
1387
1388
1389
1390void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1391{
1392 if (mEffectClient != 0) {
1393 mEffectClient->enableStatusChanged(enabled);
1394 }
1395}
1396
1397status_t AudioFlinger::EffectHandle::onTransact(
1398 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1399{
1400 return BnEffect::onTransact(code, data, reply, flags);
1401}
1402
1403
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001404void AudioFlinger::EffectHandle::dumpToBuffer(char* buffer, size_t size)
Eric Laurentca7cc822012-11-19 14:55:58 -08001405{
1406 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1407
Marco Nelissenb2208842014-02-07 14:00:50 -08001408 snprintf(buffer, size, "\t\t\t%5d %5d %3s %3s %5u %5u\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001409 (mClient == 0) ? getpid_cached : mClient->pid(),
1410 mPriority,
Marco Nelissenb2208842014-02-07 14:00:50 -08001411 mHasControl ? "yes" : "no",
1412 locked ? "yes" : "no",
Eric Laurentca7cc822012-11-19 14:55:58 -08001413 mCblk ? mCblk->clientIndex : 0,
1414 mCblk ? mCblk->serverIndex : 0
1415 );
1416
1417 if (locked) {
1418 mCblk->lock.unlock();
1419 }
1420}
1421
1422#undef LOG_TAG
1423#define LOG_TAG "AudioFlinger::EffectChain"
1424
1425AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
Glenn Kastend848eb42016-03-08 13:42:11 -08001426 audio_session_t sessionId)
Eric Laurentca7cc822012-11-19 14:55:58 -08001427 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1428 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
Eric Laurentfa1e1232016-08-02 19:01:49 -07001429 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
Eric Laurentca7cc822012-11-19 14:55:58 -08001430{
1431 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1432 if (thread == NULL) {
1433 return;
1434 }
1435 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1436 thread->frameCount();
1437}
1438
1439AudioFlinger::EffectChain::~EffectChain()
1440{
1441 if (mOwnInBuffer) {
1442 delete mInBuffer;
1443 }
1444
1445}
1446
1447// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1448sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1449 effect_descriptor_t *descriptor)
1450{
1451 size_t size = mEffects.size();
1452
1453 for (size_t i = 0; i < size; i++) {
1454 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1455 return mEffects[i];
1456 }
1457 }
1458 return 0;
1459}
1460
1461// getEffectFromId_l() must be called with ThreadBase::mLock held
1462sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1463{
1464 size_t size = mEffects.size();
1465
1466 for (size_t i = 0; i < size; i++) {
1467 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1468 if (id == 0 || mEffects[i]->id() == id) {
1469 return mEffects[i];
1470 }
1471 }
1472 return 0;
1473}
1474
1475// getEffectFromType_l() must be called with ThreadBase::mLock held
1476sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1477 const effect_uuid_t *type)
1478{
1479 size_t size = mEffects.size();
1480
1481 for (size_t i = 0; i < size; i++) {
1482 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1483 return mEffects[i];
1484 }
1485 }
1486 return 0;
1487}
1488
1489void AudioFlinger::EffectChain::clearInputBuffer()
1490{
1491 Mutex::Autolock _l(mLock);
1492 sp<ThreadBase> thread = mThread.promote();
1493 if (thread == 0) {
1494 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1495 return;
1496 }
1497 clearInputBuffer_l(thread);
1498}
1499
1500// Must be called with EffectChain::mLock locked
1501void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1502{
Ricardo Garcia322bab22014-08-06 11:43:46 -07001503 // TODO: This will change in the future, depending on multichannel
1504 // and sample format changes for effects.
1505 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1506 // (4 bytes frame size)
Ricardo Garcia726b6a72014-08-11 12:04:54 -07001507 const size_t frameSize =
1508 audio_bytes_per_sample(AUDIO_FORMAT_PCM_16_BIT) * min(FCC_2, thread->channelCount());
Ricardo Garcia322bab22014-08-06 11:43:46 -07001509 memset(mInBuffer, 0, thread->frameCount() * frameSize);
Eric Laurentca7cc822012-11-19 14:55:58 -08001510}
1511
1512// Must be called with EffectChain::mLock locked
1513void AudioFlinger::EffectChain::process_l()
1514{
1515 sp<ThreadBase> thread = mThread.promote();
1516 if (thread == 0) {
1517 ALOGW("process_l(): cannot promote mixer thread");
1518 return;
1519 }
1520 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1521 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001522 // never process effects when:
1523 // - on an OFFLOAD thread
1524 // - no more tracks are on the session and the effect tail has been rendered
1525 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001526 if (!isGlobalSession) {
1527 bool tracksOnSession = (trackCnt() != 0);
1528
1529 if (!tracksOnSession && mTailBufferCount == 0) {
1530 doProcess = false;
1531 }
1532
1533 if (activeTrackCnt() == 0) {
1534 // if no track is active and the effect tail has not been rendered,
1535 // the input buffer must be cleared here as the mixer process will not do it
1536 if (tracksOnSession || mTailBufferCount > 0) {
1537 clearInputBuffer_l(thread);
1538 if (mTailBufferCount > 0) {
1539 mTailBufferCount--;
1540 }
1541 }
1542 }
1543 }
1544
1545 size_t size = mEffects.size();
1546 if (doProcess) {
1547 for (size_t i = 0; i < size; i++) {
1548 mEffects[i]->process();
1549 }
1550 }
Eric Laurentfa1e1232016-08-02 19:01:49 -07001551 bool doResetVolume = false;
Eric Laurentca7cc822012-11-19 14:55:58 -08001552 for (size_t i = 0; i < size; i++) {
Eric Laurentfa1e1232016-08-02 19:01:49 -07001553 doResetVolume = mEffects[i]->updateState() || doResetVolume;
1554 }
1555 if (doResetVolume) {
1556 resetVolume_l();
Eric Laurentca7cc822012-11-19 14:55:58 -08001557 }
1558}
1559
1560// addEffect_l() must be called with PlaybackThread::mLock held
1561status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1562{
1563 effect_descriptor_t desc = effect->desc();
1564 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1565
1566 Mutex::Autolock _l(mLock);
1567 effect->setChain(this);
1568 sp<ThreadBase> thread = mThread.promote();
1569 if (thread == 0) {
1570 return NO_INIT;
1571 }
1572 effect->setThread(thread);
1573
1574 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1575 // Auxiliary effects are inserted at the beginning of mEffects vector as
1576 // they are processed first and accumulated in chain input buffer
1577 mEffects.insertAt(effect, 0);
1578
1579 // the input buffer for auxiliary effect contains mono samples in
1580 // 32 bit format. This is to avoid saturation in AudoMixer
1581 // accumulation stage. Saturation is done in EffectModule::process() before
1582 // calling the process in effect engine
1583 size_t numSamples = thread->frameCount();
1584 int32_t *buffer = new int32_t[numSamples];
1585 memset(buffer, 0, numSamples * sizeof(int32_t));
1586 effect->setInBuffer((int16_t *)buffer);
1587 // auxiliary effects output samples to chain input buffer for further processing
1588 // by insert effects
1589 effect->setOutBuffer(mInBuffer);
1590 } else {
1591 // Insert effects are inserted at the end of mEffects vector as they are processed
1592 // after track and auxiliary effects.
1593 // Insert effect order as a function of indicated preference:
1594 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1595 // another effect is present
1596 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1597 // last effect claiming first position
1598 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1599 // first effect claiming last position
1600 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1601 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1602 // already present
1603
1604 size_t size = mEffects.size();
1605 size_t idx_insert = size;
1606 ssize_t idx_insert_first = -1;
1607 ssize_t idx_insert_last = -1;
1608
1609 for (size_t i = 0; i < size; i++) {
1610 effect_descriptor_t d = mEffects[i]->desc();
1611 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1612 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1613 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1614 // check invalid effect chaining combinations
1615 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1616 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1617 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1618 desc.name, d.name);
1619 return INVALID_OPERATION;
1620 }
1621 // remember position of first insert effect and by default
1622 // select this as insert position for new effect
1623 if (idx_insert == size) {
1624 idx_insert = i;
1625 }
1626 // remember position of last insert effect claiming
1627 // first position
1628 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1629 idx_insert_first = i;
1630 }
1631 // remember position of first insert effect claiming
1632 // last position
1633 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1634 idx_insert_last == -1) {
1635 idx_insert_last = i;
1636 }
1637 }
1638 }
1639
1640 // modify idx_insert from first position if needed
1641 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1642 if (idx_insert_last != -1) {
1643 idx_insert = idx_insert_last;
1644 } else {
1645 idx_insert = size;
1646 }
1647 } else {
1648 if (idx_insert_first != -1) {
1649 idx_insert = idx_insert_first + 1;
1650 }
1651 }
1652
1653 // always read samples from chain input buffer
1654 effect->setInBuffer(mInBuffer);
1655
1656 // if last effect in the chain, output samples to chain
1657 // output buffer, otherwise to chain input buffer
1658 if (idx_insert == size) {
1659 if (idx_insert != 0) {
1660 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1661 mEffects[idx_insert-1]->configure();
1662 }
1663 effect->setOutBuffer(mOutBuffer);
1664 } else {
1665 effect->setOutBuffer(mInBuffer);
1666 }
1667 mEffects.insertAt(effect, idx_insert);
1668
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001669 ALOGV("addEffect_l() effect %p, added in chain %p at rank %zu", effect.get(), this,
Eric Laurentca7cc822012-11-19 14:55:58 -08001670 idx_insert);
1671 }
1672 effect->configure();
1673 return NO_ERROR;
1674}
1675
1676// removeEffect_l() must be called with PlaybackThread::mLock held
1677size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
1678{
1679 Mutex::Autolock _l(mLock);
1680 size_t size = mEffects.size();
1681 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1682
1683 for (size_t i = 0; i < size; i++) {
1684 if (effect == mEffects[i]) {
1685 // calling stop here will remove pre-processing effect from the audio HAL.
1686 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1687 // the middle of a read from audio HAL
1688 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1689 mEffects[i]->state() == EffectModule::STOPPING) {
1690 mEffects[i]->stop();
1691 }
1692 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1693 delete[] effect->inBuffer();
1694 } else {
1695 if (i == size - 1 && i != 0) {
1696 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1697 mEffects[i - 1]->configure();
1698 }
1699 }
1700 mEffects.removeAt(i);
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001701 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %zu", effect.get(),
Eric Laurentca7cc822012-11-19 14:55:58 -08001702 this, i);
1703 break;
1704 }
1705 }
1706
1707 return mEffects.size();
1708}
1709
1710// setDevice_l() must be called with PlaybackThread::mLock held
1711void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1712{
1713 size_t size = mEffects.size();
1714 for (size_t i = 0; i < size; i++) {
1715 mEffects[i]->setDevice(device);
1716 }
1717}
1718
1719// setMode_l() must be called with PlaybackThread::mLock held
1720void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1721{
1722 size_t size = mEffects.size();
1723 for (size_t i = 0; i < size; i++) {
1724 mEffects[i]->setMode(mode);
1725 }
1726}
1727
1728// setAudioSource_l() must be called with PlaybackThread::mLock held
1729void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1730{
1731 size_t size = mEffects.size();
1732 for (size_t i = 0; i < size; i++) {
1733 mEffects[i]->setAudioSource(source);
1734 }
1735}
1736
Eric Laurentfa1e1232016-08-02 19:01:49 -07001737// setVolume_l() must be called with PlaybackThread::mLock or EffectChain::mLock held
1738bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right, bool force)
Eric Laurentca7cc822012-11-19 14:55:58 -08001739{
1740 uint32_t newLeft = *left;
1741 uint32_t newRight = *right;
1742 bool hasControl = false;
1743 int ctrlIdx = -1;
1744 size_t size = mEffects.size();
1745
1746 // first update volume controller
1747 for (size_t i = size; i > 0; i--) {
1748 if (mEffects[i - 1]->isProcessEnabled() &&
1749 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1750 ctrlIdx = i - 1;
1751 hasControl = true;
1752 break;
1753 }
1754 }
1755
Eric Laurentfa1e1232016-08-02 19:01:49 -07001756 if (!force && ctrlIdx == mVolumeCtrlIdx &&
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001757 *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001758 if (hasControl) {
1759 *left = mNewLeftVolume;
1760 *right = mNewRightVolume;
1761 }
1762 return hasControl;
1763 }
1764
1765 mVolumeCtrlIdx = ctrlIdx;
1766 mLeftVolume = newLeft;
1767 mRightVolume = newRight;
1768
1769 // second get volume update from volume controller
1770 if (ctrlIdx >= 0) {
1771 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1772 mNewLeftVolume = newLeft;
1773 mNewRightVolume = newRight;
1774 }
1775 // then indicate volume to all other effects in chain.
1776 // Pass altered volume to effects before volume controller
1777 // and requested volume to effects after controller
1778 uint32_t lVol = newLeft;
1779 uint32_t rVol = newRight;
1780
1781 for (size_t i = 0; i < size; i++) {
1782 if ((int)i == ctrlIdx) {
1783 continue;
1784 }
1785 // this also works for ctrlIdx == -1 when there is no volume controller
1786 if ((int)i > ctrlIdx) {
1787 lVol = *left;
1788 rVol = *right;
1789 }
1790 mEffects[i]->setVolume(&lVol, &rVol, false);
1791 }
1792 *left = newLeft;
1793 *right = newRight;
1794
1795 return hasControl;
1796}
1797
Eric Laurentfa1e1232016-08-02 19:01:49 -07001798// resetVolume_l() must be called with PlaybackThread::mLock or EffectChain::mLock held
1799void AudioFlinger::EffectChain::resetVolume_l()
1800{
Eric Laurente7449bf2016-08-03 18:44:07 -07001801 if ((mLeftVolume != UINT_MAX) && (mRightVolume != UINT_MAX)) {
1802 uint32_t left = mLeftVolume;
1803 uint32_t right = mRightVolume;
1804 (void)setVolume_l(&left, &right, true);
1805 }
Eric Laurentfa1e1232016-08-02 19:01:49 -07001806}
1807
Eric Laurent1b928682014-10-02 19:41:47 -07001808void AudioFlinger::EffectChain::syncHalEffectsState()
1809{
1810 Mutex::Autolock _l(mLock);
1811 for (size_t i = 0; i < mEffects.size(); i++) {
1812 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1813 mEffects[i]->state() == EffectModule::STOPPING) {
1814 mEffects[i]->addEffectToHal_l();
1815 }
1816 }
1817}
1818
Eric Laurentca7cc822012-11-19 14:55:58 -08001819void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1820{
1821 const size_t SIZE = 256;
1822 char buffer[SIZE];
1823 String8 result;
1824
Marco Nelissenb2208842014-02-07 14:00:50 -08001825 size_t numEffects = mEffects.size();
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001826 snprintf(buffer, SIZE, " %zu effects for session %d\n", numEffects, mSessionId);
Eric Laurentca7cc822012-11-19 14:55:58 -08001827 result.append(buffer);
1828
Marco Nelissenb2208842014-02-07 14:00:50 -08001829 if (numEffects) {
1830 bool locked = AudioFlinger::dumpTryLock(mLock);
1831 // failed to lock - AudioFlinger is probably deadlocked
1832 if (!locked) {
1833 result.append("\tCould not lock mutex:\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001834 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001835
Marco Nelissenb2208842014-02-07 14:00:50 -08001836 result.append("\tIn buffer Out buffer Active tracks:\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001837 snprintf(buffer, SIZE, "\t%p %p %d\n",
1838 mInBuffer,
1839 mOutBuffer,
Marco Nelissenb2208842014-02-07 14:00:50 -08001840 mActiveTrackCnt);
1841 result.append(buffer);
1842 write(fd, result.string(), result.size());
1843
1844 for (size_t i = 0; i < numEffects; ++i) {
1845 sp<EffectModule> effect = mEffects[i];
1846 if (effect != 0) {
1847 effect->dump(fd, args);
1848 }
1849 }
1850
1851 if (locked) {
1852 mLock.unlock();
1853 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001854 }
1855}
1856
1857// must be called with ThreadBase::mLock held
1858void AudioFlinger::EffectChain::setEffectSuspended_l(
1859 const effect_uuid_t *type, bool suspend)
1860{
1861 sp<SuspendedEffectDesc> desc;
1862 // use effect type UUID timelow as key as there is no real risk of identical
1863 // timeLow fields among effect type UUIDs.
1864 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1865 if (suspend) {
1866 if (index >= 0) {
1867 desc = mSuspendedEffects.valueAt(index);
1868 } else {
1869 desc = new SuspendedEffectDesc();
1870 desc->mType = *type;
1871 mSuspendedEffects.add(type->timeLow, desc);
1872 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1873 }
1874 if (desc->mRefCount++ == 0) {
1875 sp<EffectModule> effect = getEffectIfEnabled(type);
1876 if (effect != 0) {
1877 desc->mEffect = effect;
1878 effect->setSuspended(true);
1879 effect->setEnabled(false);
1880 }
1881 }
1882 } else {
1883 if (index < 0) {
1884 return;
1885 }
1886 desc = mSuspendedEffects.valueAt(index);
1887 if (desc->mRefCount <= 0) {
1888 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1889 desc->mRefCount = 1;
1890 }
1891 if (--desc->mRefCount == 0) {
1892 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1893 if (desc->mEffect != 0) {
1894 sp<EffectModule> effect = desc->mEffect.promote();
1895 if (effect != 0) {
1896 effect->setSuspended(false);
1897 effect->lock();
1898 EffectHandle *handle = effect->controlHandle_l();
1899 if (handle != NULL && !handle->destroyed_l()) {
1900 effect->setEnabled_l(handle->enabled());
1901 }
1902 effect->unlock();
1903 }
1904 desc->mEffect.clear();
1905 }
1906 mSuspendedEffects.removeItemsAt(index);
1907 }
1908 }
1909}
1910
1911// must be called with ThreadBase::mLock held
1912void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1913{
1914 sp<SuspendedEffectDesc> desc;
1915
1916 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1917 if (suspend) {
1918 if (index >= 0) {
1919 desc = mSuspendedEffects.valueAt(index);
1920 } else {
1921 desc = new SuspendedEffectDesc();
1922 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1923 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1924 }
1925 if (desc->mRefCount++ == 0) {
1926 Vector< sp<EffectModule> > effects;
1927 getSuspendEligibleEffects(effects);
1928 for (size_t i = 0; i < effects.size(); i++) {
1929 setEffectSuspended_l(&effects[i]->desc().type, true);
1930 }
1931 }
1932 } else {
1933 if (index < 0) {
1934 return;
1935 }
1936 desc = mSuspendedEffects.valueAt(index);
1937 if (desc->mRefCount <= 0) {
1938 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
1939 desc->mRefCount = 1;
1940 }
1941 if (--desc->mRefCount == 0) {
1942 Vector<const effect_uuid_t *> types;
1943 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
1944 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
1945 continue;
1946 }
1947 types.add(&mSuspendedEffects.valueAt(i)->mType);
1948 }
1949 for (size_t i = 0; i < types.size(); i++) {
1950 setEffectSuspended_l(types[i], false);
1951 }
1952 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
1953 mSuspendedEffects.keyAt(index));
1954 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
1955 }
1956 }
1957}
1958
1959
1960// The volume effect is used for automated tests only
1961#ifndef OPENSL_ES_H_
1962static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
1963 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
1964const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
1965#endif //OPENSL_ES_H_
1966
1967bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
1968{
1969 // auxiliary effects and visualizer are never suspended on output mix
1970 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
1971 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
1972 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
1973 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
1974 return false;
1975 }
1976 return true;
1977}
1978
1979void AudioFlinger::EffectChain::getSuspendEligibleEffects(
1980 Vector< sp<AudioFlinger::EffectModule> > &effects)
1981{
1982 effects.clear();
1983 for (size_t i = 0; i < mEffects.size(); i++) {
1984 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
1985 effects.add(mEffects[i]);
1986 }
1987 }
1988}
1989
1990sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
1991 const effect_uuid_t *type)
1992{
1993 sp<EffectModule> effect = getEffectFromType_l(type);
1994 return effect != 0 && effect->isEnabled() ? effect : 0;
1995}
1996
1997void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1998 bool enabled)
1999{
2000 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
2001 if (enabled) {
2002 if (index < 0) {
2003 // if the effect is not suspend check if all effects are suspended
2004 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
2005 if (index < 0) {
2006 return;
2007 }
2008 if (!isEffectEligibleForSuspend(effect->desc())) {
2009 return;
2010 }
2011 setEffectSuspended_l(&effect->desc().type, enabled);
2012 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
2013 if (index < 0) {
2014 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
2015 return;
2016 }
2017 }
2018 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
2019 effect->desc().type.timeLow);
2020 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2021 // if effect is requested to suspended but was not yet enabled, supend it now.
2022 if (desc->mEffect == 0) {
2023 desc->mEffect = effect;
2024 effect->setEnabled(false);
2025 effect->setSuspended(true);
2026 }
2027 } else {
2028 if (index < 0) {
2029 return;
2030 }
2031 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
2032 effect->desc().type.timeLow);
2033 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2034 desc->mEffect.clear();
2035 effect->setSuspended(false);
2036 }
2037}
2038
Eric Laurent5baf2af2013-09-12 17:37:00 -07002039bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07002040{
2041 Mutex::Autolock _l(mLock);
2042 size_t size = mEffects.size();
2043 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07002044 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07002045 return true;
2046 }
2047 }
2048 return false;
2049}
2050
Eric Laurentaaa44472014-09-12 17:41:50 -07002051void AudioFlinger::EffectChain::setThread(const sp<ThreadBase>& thread)
2052{
2053 Mutex::Autolock _l(mLock);
2054 mThread = thread;
2055 for (size_t i = 0; i < mEffects.size(); i++) {
2056 mEffects[i]->setThread(thread);
2057 }
2058}
2059
Eric Laurent4c415062016-06-17 16:14:16 -07002060bool AudioFlinger::EffectChain::hasSoftwareEffect() const
2061{
2062 Mutex::Autolock _l(mLock);
2063 for (size_t i = 0; i < mEffects.size(); i++) {
2064 if (mEffects[i]->isImplementationSoftware()) {
2065 return true;
2066 }
2067 }
2068 return false;
2069}
2070
2071// isCompatibleWithThread_l() must be called with thread->mLock held
2072bool AudioFlinger::EffectChain::isCompatibleWithThread_l(const sp<ThreadBase>& thread) const
2073{
2074 Mutex::Autolock _l(mLock);
2075 for (size_t i = 0; i < mEffects.size(); i++) {
2076 if (thread->checkEffectCompatibility_l(&(mEffects[i]->desc()), mSessionId) != NO_ERROR) {
2077 return false;
2078 }
2079 }
2080 return true;
2081}
2082
Glenn Kasten63238ef2015-03-02 15:50:29 -08002083} // namespace android