blob: eedcbe9abccf7b814488b522702f4d6d1f5da3bd [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,
Eric Laurentbc7f3472016-12-01 15:28:29 -080062 int sessionId,
63 bool pinned)
64 : mPinned(pinned),
Eric Laurentca7cc822012-11-19 14:55:58 -080065 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
66 mDescriptor(*desc),
67 // mConfig is set by configure() and not used before then
68 mEffectInterface(NULL),
69 mStatus(NO_INIT), mState(IDLE),
70 // mMaxDisableWaitCnt is set by configure() and not used before then
71 // mDisableWaitCnt is set by process() and updateState() and not used before then
Eric Laurentaaa44472014-09-12 17:41:50 -070072 mSuspended(false),
73 mAudioFlinger(thread->mAudioFlinger)
Eric Laurentca7cc822012-11-19 14:55:58 -080074{
Eric Laurentbc7f3472016-12-01 15:28:29 -080075 ALOGV("Constructor %p pinned %d", this, pinned);
Eric Laurentca7cc822012-11-19 14:55:58 -080076 int lStatus;
77
78 // create effect engine from effect factory
79 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
80
81 if (mStatus != NO_ERROR) {
82 return;
83 }
84 lStatus = init();
85 if (lStatus < 0) {
86 mStatus = lStatus;
87 goto Error;
88 }
89
Eric Laurentbc7f3472016-12-01 15:28:29 -080090 setOffloaded(thread->type() == ThreadBase::OFFLOAD, thread->id());
91
Eric Laurentca7cc822012-11-19 14:55:58 -080092 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
93 return;
94Error:
95 EffectRelease(mEffectInterface);
96 mEffectInterface = NULL;
97 ALOGV("Constructor Error %d", mStatus);
98}
99
100AudioFlinger::EffectModule::~EffectModule()
101{
102 ALOGV("Destructor %p", this);
103 if (mEffectInterface != NULL) {
Eric Laurentbc7f3472016-12-01 15:28:29 -0800104 ALOGW("EffectModule %p destructor called with unreleased interface", this);
105 release_l();
Eric Laurentca7cc822012-11-19 14:55:58 -0800106 }
107}
108
109status_t AudioFlinger::EffectModule::addHandle(EffectHandle *handle)
110{
111 status_t status;
112
113 Mutex::Autolock _l(mLock);
114 int priority = handle->priority();
115 size_t size = mHandles.size();
116 EffectHandle *controlHandle = NULL;
117 size_t i;
118 for (i = 0; i < size; i++) {
119 EffectHandle *h = mHandles[i];
Eric Laurentbc7f3472016-12-01 15:28:29 -0800120 if (h == NULL || h->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800121 continue;
122 }
123 // first non destroyed handle is considered in control
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700124 if (controlHandle == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800125 controlHandle = h;
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700126 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800127 if (h->priority() <= priority) {
128 break;
129 }
130 }
131 // if inserted in first place, move effect control from previous owner to this handle
132 if (i == 0) {
133 bool enabled = false;
134 if (controlHandle != NULL) {
135 enabled = controlHandle->enabled();
136 controlHandle->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
137 }
138 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
139 status = NO_ERROR;
140 } else {
141 status = ALREADY_EXISTS;
142 }
143 ALOGV("addHandle() %p added handle %p in position %d", this, handle, i);
144 mHandles.insertAt(handle, i);
145 return status;
146}
147
Eric Laurentbc7f3472016-12-01 15:28:29 -0800148ssize_t AudioFlinger::EffectModule::removeHandle(EffectHandle *handle)
Eric Laurentca7cc822012-11-19 14:55:58 -0800149{
150 Mutex::Autolock _l(mLock);
Eric Laurentbc7f3472016-12-01 15:28:29 -0800151 return removeHandle_l(handle);
152}
153
154ssize_t AudioFlinger::EffectModule::removeHandle_l(EffectHandle *handle)
155{
Eric Laurentca7cc822012-11-19 14:55:58 -0800156 size_t size = mHandles.size();
157 size_t i;
158 for (i = 0; i < size; i++) {
159 if (mHandles[i] == handle) {
160 break;
161 }
162 }
163 if (i == size) {
Eric Laurentbc7f3472016-12-01 15:28:29 -0800164 ALOGW("%s %p handle not found %p", __FUNCTION__, this, handle);
165 return BAD_VALUE;
Eric Laurentca7cc822012-11-19 14:55:58 -0800166 }
Eric Laurentbc7f3472016-12-01 15:28:29 -0800167 ALOGV("removeHandle_l() %p removed handle %p in position %zu", this, handle, i);
Eric Laurentca7cc822012-11-19 14:55:58 -0800168
169 mHandles.removeAt(i);
170 // if removed from first place, move effect control from this handle to next in line
171 if (i == 0) {
172 EffectHandle *h = controlHandle_l();
173 if (h != NULL) {
174 h->setControl(true /*hasControl*/, true /*signal*/ , handle->enabled() /*enabled*/);
175 }
176 }
177
178 // Prevent calls to process() and other functions on effect interface from now on.
179 // The effect engine will be released by the destructor when the last strong reference on
180 // this object is released which can happen after next process is called.
181 if (mHandles.size() == 0 && !mPinned) {
182 mState = DESTROYED;
183 }
184
185 return mHandles.size();
186}
187
188// must be called with EffectModule::mLock held
189AudioFlinger::EffectHandle *AudioFlinger::EffectModule::controlHandle_l()
190{
191 // the first valid handle in the list has control over the module
192 for (size_t i = 0; i < mHandles.size(); i++) {
193 EffectHandle *h = mHandles[i];
Eric Laurentbc7f3472016-12-01 15:28:29 -0800194 if (h != NULL && !h->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800195 return h;
196 }
197 }
198
199 return NULL;
200}
201
Eric Laurentbc7f3472016-12-01 15:28:29 -0800202// unsafe method called when the effect parent thread has been destroyed
203ssize_t AudioFlinger::EffectModule::disconnectHandle(EffectHandle *handle, bool unpinIfLast)
Eric Laurentca7cc822012-11-19 14:55:58 -0800204{
205 ALOGV("disconnect() %p handle %p", this, handle);
Eric Laurentbc7f3472016-12-01 15:28:29 -0800206 Mutex::Autolock _l(mLock);
207 ssize_t numHandles = removeHandle_l(handle);
208 if ((numHandles == 0) && (!mPinned || unpinIfLast)) {
209 AudioSystem::unregisterEffect(mId);
210 sp<AudioFlinger> af = mAudioFlinger.promote();
211 if (af != 0) {
212 mLock.unlock();
213 af->updateOrphanEffectChains(this);
214 mLock.lock();
Eric Laurentca7cc822012-11-19 14:55:58 -0800215 }
216 }
Eric Laurentbc7f3472016-12-01 15:28:29 -0800217 return numHandles;
Eric Laurentca7cc822012-11-19 14:55:58 -0800218}
219
220void AudioFlinger::EffectModule::updateState() {
221 Mutex::Autolock _l(mLock);
222
223 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;
237 } else {
238 mState = IDLE;
239 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800240 break;
241 case STOPPING:
Eric Laurentd0ebb532013-04-02 16:41:41 -0700242 if (stop_l() == NO_ERROR) {
243 mDisableWaitCnt = mMaxDisableWaitCnt;
244 } else {
245 mDisableWaitCnt = 1; // will cause immediate transition to IDLE
246 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800247 mState = STOPPED;
248 break;
249 case STOPPED:
250 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
251 // turn off sequence.
252 if (--mDisableWaitCnt == 0) {
253 reset_l();
254 mState = IDLE;
255 }
256 break;
257 default: //IDLE , ACTIVE, DESTROYED
258 break;
259 }
260}
261
262void AudioFlinger::EffectModule::process()
263{
264 Mutex::Autolock _l(mLock);
265
266 if (mState == DESTROYED || mEffectInterface == NULL ||
267 mConfig.inputCfg.buffer.raw == NULL ||
268 mConfig.outputCfg.buffer.raw == NULL) {
269 return;
270 }
271
272 if (isProcessEnabled()) {
273 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
274 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
275 ditherAndClamp(mConfig.inputCfg.buffer.s32,
276 mConfig.inputCfg.buffer.s32,
277 mConfig.inputCfg.buffer.frameCount/2);
278 }
279
280 // do the actual processing in the effect engine
281 int ret = (*mEffectInterface)->process(mEffectInterface,
282 &mConfig.inputCfg.buffer,
283 &mConfig.outputCfg.buffer);
284
285 // force transition to IDLE state when engine is ready
286 if (mState == STOPPED && ret == -ENODATA) {
287 mDisableWaitCnt = 1;
288 }
289
290 // clear auxiliary effect input buffer for next accumulation
291 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
292 memset(mConfig.inputCfg.buffer.raw, 0,
293 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
294 }
295 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
296 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
297 // If an insert effect is idle and input buffer is different from output buffer,
298 // accumulate input onto output
299 sp<EffectChain> chain = mChain.promote();
300 if (chain != 0 && chain->activeTrackCnt() != 0) {
301 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
302 int16_t *in = mConfig.inputCfg.buffer.s16;
303 int16_t *out = mConfig.outputCfg.buffer.s16;
304 for (size_t i = 0; i < frameCnt; i++) {
305 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
306 }
307 }
308 }
309}
310
311void AudioFlinger::EffectModule::reset_l()
312{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700313 if (mStatus != NO_ERROR || mEffectInterface == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800314 return;
315 }
316 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
317}
318
319status_t AudioFlinger::EffectModule::configure()
320{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700321 status_t status;
322 sp<ThreadBase> thread;
323 uint32_t size;
324 audio_channel_mask_t channelMask;
325
Eric Laurentca7cc822012-11-19 14:55:58 -0800326 if (mEffectInterface == NULL) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700327 status = NO_INIT;
328 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800329 }
330
Eric Laurentd0ebb532013-04-02 16:41:41 -0700331 thread = mThread.promote();
Eric Laurentca7cc822012-11-19 14:55:58 -0800332 if (thread == 0) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700333 status = DEAD_OBJECT;
334 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800335 }
336
337 // TODO: handle configuration of effects replacing track process
Eric Laurentd0ebb532013-04-02 16:41:41 -0700338 channelMask = thread->channelMask();
Ricardo Garciad11da702015-05-28 12:14:12 -0700339 mConfig.outputCfg.channels = channelMask;
Eric Laurentca7cc822012-11-19 14:55:58 -0800340
341 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
342 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
343 } else {
344 mConfig.inputCfg.channels = channelMask;
Ricardo Garciad11da702015-05-28 12:14:12 -0700345 // TODO: Update this logic when multichannel effects are implemented.
346 // For offloaded tracks consider mono output as stereo for proper effect initialization
347 if (channelMask == AUDIO_CHANNEL_OUT_MONO) {
348 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
349 mConfig.outputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
350 ALOGV("Overriding effect input and output as STEREO");
351 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800352 }
Ricardo Garciad11da702015-05-28 12:14:12 -0700353
Eric Laurentca7cc822012-11-19 14:55:58 -0800354 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
355 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
356 mConfig.inputCfg.samplingRate = thread->sampleRate();
357 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
358 mConfig.inputCfg.bufferProvider.cookie = NULL;
359 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
360 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
361 mConfig.outputCfg.bufferProvider.cookie = NULL;
362 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
363 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
364 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
365 // Insert effect:
366 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
367 // always overwrites output buffer: input buffer == output buffer
368 // - in other sessions:
369 // last effect in the chain accumulates in output buffer: input buffer != output buffer
370 // other effect: overwrites output buffer: input buffer == output buffer
371 // Auxiliary effect:
372 // accumulates in output buffer: input buffer != output buffer
373 // Therefore: accumulate <=> input buffer != output buffer
374 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
375 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
376 } else {
377 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
378 }
379 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
380 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
381 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
382 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
383
384 ALOGV("configure() %p thread %p buffer %p framecount %d",
385 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
386
387 status_t cmdStatus;
Eric Laurentd0ebb532013-04-02 16:41:41 -0700388 size = sizeof(int);
389 status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurentca7cc822012-11-19 14:55:58 -0800390 EFFECT_CMD_SET_CONFIG,
391 sizeof(effect_config_t),
392 &mConfig,
393 &size,
394 &cmdStatus);
395 if (status == 0) {
396 status = cmdStatus;
397 }
398
399 if (status == 0 &&
400 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
401 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
402 effect_param_t *p = (effect_param_t *)buf32;
403
404 p->psize = sizeof(uint32_t);
405 p->vsize = sizeof(uint32_t);
406 size = sizeof(int);
407 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
408
409 uint32_t latency = 0;
410 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
411 if (pbt != NULL) {
412 latency = pbt->latency_l();
413 }
414
415 *((int32_t *)p->data + 1)= latency;
416 (*mEffectInterface)->command(mEffectInterface,
417 EFFECT_CMD_SET_PARAM,
418 sizeof(effect_param_t) + 8,
419 &buf32,
420 &size,
421 &cmdStatus);
422 }
423
424 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
425 (1000 * mConfig.outputCfg.buffer.frameCount);
426
Eric Laurentd0ebb532013-04-02 16:41:41 -0700427exit:
428 mStatus = status;
Eric Laurentca7cc822012-11-19 14:55:58 -0800429 return status;
430}
431
432status_t AudioFlinger::EffectModule::init()
433{
434 Mutex::Autolock _l(mLock);
435 if (mEffectInterface == NULL) {
436 return NO_INIT;
437 }
438 status_t cmdStatus;
439 uint32_t size = sizeof(status_t);
440 status_t status = (*mEffectInterface)->command(mEffectInterface,
441 EFFECT_CMD_INIT,
442 0,
443 NULL,
444 &size,
445 &cmdStatus);
446 if (status == 0) {
447 status = cmdStatus;
448 }
449 return status;
450}
451
Eric Laurent1b928682014-10-02 19:41:47 -0700452void AudioFlinger::EffectModule::addEffectToHal_l()
453{
454 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
455 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
456 sp<ThreadBase> thread = mThread.promote();
457 if (thread != 0) {
458 audio_stream_t *stream = thread->stream();
459 if (stream != NULL) {
460 stream->add_audio_effect(stream, mEffectInterface);
461 }
462 }
463 }
464}
465
Eric Laurentca7cc822012-11-19 14:55:58 -0800466status_t AudioFlinger::EffectModule::start()
467{
468 Mutex::Autolock _l(mLock);
469 return start_l();
470}
471
472status_t AudioFlinger::EffectModule::start_l()
473{
474 if (mEffectInterface == NULL) {
475 return NO_INIT;
476 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700477 if (mStatus != NO_ERROR) {
478 return mStatus;
479 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800480 status_t cmdStatus;
481 uint32_t size = sizeof(status_t);
482 status_t status = (*mEffectInterface)->command(mEffectInterface,
483 EFFECT_CMD_ENABLE,
484 0,
485 NULL,
486 &size,
487 &cmdStatus);
488 if (status == 0) {
489 status = cmdStatus;
490 }
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700491 if (status == 0) {
Eric Laurent1b928682014-10-02 19:41:47 -0700492 addEffectToHal_l();
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700493 sp<EffectChain> chain = mChain.promote();
494 if (chain != 0) {
495 chain->forceVolume();
496 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800497 }
498 return status;
499}
500
501status_t AudioFlinger::EffectModule::stop()
502{
503 Mutex::Autolock _l(mLock);
504 return stop_l();
505}
506
507status_t AudioFlinger::EffectModule::stop_l()
508{
509 if (mEffectInterface == NULL) {
510 return NO_INIT;
511 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700512 if (mStatus != NO_ERROR) {
513 return mStatus;
514 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800515 status_t cmdStatus = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800516 uint32_t size = sizeof(status_t);
517 status_t status = (*mEffectInterface)->command(mEffectInterface,
518 EFFECT_CMD_DISABLE,
519 0,
520 NULL,
521 &size,
522 &cmdStatus);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800523 if (status == NO_ERROR) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800524 status = cmdStatus;
525 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800526 if (status == NO_ERROR) {
527 status = remove_effect_from_hal_l();
528 }
529 return status;
530}
531
Eric Laurentbc7f3472016-12-01 15:28:29 -0800532// must be called with EffectChain::mLock held
533void AudioFlinger::EffectModule::release_l()
534{
535 if (mEffectInterface != NULL) {
536 remove_effect_from_hal_l();
537 // release effect engine
538 EffectRelease(mEffectInterface);
539 mEffectInterface = NULL;
540 }
541}
542
Eric Laurentbfb1b832013-01-07 09:53:42 -0800543status_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];
Eric Laurentbc7f3472016-12-01 15:28:29 -0800635 if (h != NULL && !h->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800636 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];
Eric Laurentbc7f3472016-12-01 15:28:29 -0800688 if (h != NULL && !h->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800689 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)) {
744 status_t cmdStatus;
745 uint32_t volume[2];
746 uint32_t *pVolume = NULL;
747 uint32_t size = sizeof(volume);
748 volume[0] = *left;
749 volume[1] = *right;
750 if (controller) {
751 pVolume = volume;
752 }
753 status = (*mEffectInterface)->command(mEffectInterface,
754 EFFECT_CMD_SET_VOLUME,
755 size,
756 volume,
757 &size,
758 pVolume);
759 if (controller && status == NO_ERROR && size == sizeof(volume)) {
760 *left = volume[0];
761 *right = volume[1];
762 }
763 }
764 return status;
765}
766
767status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
768{
769 if (device == AUDIO_DEVICE_NONE) {
770 return NO_ERROR;
771 }
772
773 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700774 if (mStatus != NO_ERROR) {
775 return mStatus;
776 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800777 status_t status = NO_ERROR;
Eric Laurent7e1139c2013-06-06 18:29:01 -0700778 if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800779 status_t cmdStatus;
780 uint32_t size = sizeof(status_t);
781 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
782 EFFECT_CMD_SET_INPUT_DEVICE;
783 status = (*mEffectInterface)->command(mEffectInterface,
784 cmd,
785 sizeof(uint32_t),
786 &device,
787 &size,
788 &cmdStatus);
789 }
790 return status;
791}
792
793status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
794{
795 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700796 if (mStatus != NO_ERROR) {
797 return mStatus;
798 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800799 status_t status = NO_ERROR;
800 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
801 status_t cmdStatus;
802 uint32_t size = sizeof(status_t);
803 status = (*mEffectInterface)->command(mEffectInterface,
804 EFFECT_CMD_SET_AUDIO_MODE,
805 sizeof(audio_mode_t),
806 &mode,
807 &size,
808 &cmdStatus);
809 if (status == NO_ERROR) {
810 status = cmdStatus;
811 }
812 }
813 return status;
814}
815
816status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
817{
818 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700819 if (mStatus != NO_ERROR) {
820 return mStatus;
821 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800822 status_t status = NO_ERROR;
823 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
824 uint32_t size = 0;
825 status = (*mEffectInterface)->command(mEffectInterface,
826 EFFECT_CMD_SET_AUDIO_SOURCE,
827 sizeof(audio_source_t),
828 &source,
829 &size,
830 NULL);
831 }
832 return status;
833}
834
835void AudioFlinger::EffectModule::setSuspended(bool suspended)
836{
837 Mutex::Autolock _l(mLock);
838 mSuspended = suspended;
839}
840
841bool AudioFlinger::EffectModule::suspended() const
842{
843 Mutex::Autolock _l(mLock);
844 return mSuspended;
845}
846
847bool AudioFlinger::EffectModule::purgeHandles()
848{
849 bool enabled = false;
850 Mutex::Autolock _l(mLock);
851 for (size_t i = 0; i < mHandles.size(); i++) {
852 EffectHandle *handle = mHandles[i];
Eric Laurentbc7f3472016-12-01 15:28:29 -0800853 if (handle != NULL && !handle->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800854 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) {
1000 char *str = s.lockBuffer(len);
1001 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];
Eric Laurentbc7f3472016-12-01 15:28:29 -08001080 if (handle != NULL && !handle->disconnected()) {
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),
Eric Laurentbc7f3472016-12-01 15:28:29 -08001106 mPriority(priority), mHasControl(false), mEnabled(false), mDisconnected(false)
Eric Laurentca7cc822012-11-19 14:55:58 -08001107{
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) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001117 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE +
1118 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);
Eric Laurentca7cc822012-11-19 14:55:58 -08001129 disconnect(false);
1130}
1131
Glenn Kastene75da402013-11-20 13:54:52 -08001132status_t AudioFlinger::EffectHandle::initCheck()
1133{
1134 return mClient == 0 || mCblkMemory != 0 ? OK : NO_MEMORY;
1135}
1136
Eric Laurentca7cc822012-11-19 14:55:58 -08001137status_t AudioFlinger::EffectHandle::enable()
1138{
Eric Laurentbc7f3472016-12-01 15:28:29 -08001139 AutoMutex _l(mLock);
Eric Laurentca7cc822012-11-19 14:55:58 -08001140 ALOGV("enable %p", this);
Eric Laurentbc7f3472016-12-01 15:28:29 -08001141 sp<EffectModule> effect = mEffect.promote();
1142 if (effect == 0 || mDisconnected) {
1143 return DEAD_OBJECT;
1144 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001145 if (!mHasControl) {
1146 return INVALID_OPERATION;
1147 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001148
1149 if (mEnabled) {
1150 return NO_ERROR;
1151 }
1152
1153 mEnabled = true;
1154
Eric Laurentbc7f3472016-12-01 15:28:29 -08001155 sp<ThreadBase> thread = effect->thread().promote();
Eric Laurentca7cc822012-11-19 14:55:58 -08001156 if (thread != 0) {
Eric Laurentbc7f3472016-12-01 15:28:29 -08001157 thread->checkSuspendOnEffectEnabled(effect, true, effect->sessionId());
Eric Laurentca7cc822012-11-19 14:55:58 -08001158 }
1159
1160 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
Eric Laurentbc7f3472016-12-01 15:28:29 -08001161 if (effect->suspended()) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001162 return NO_ERROR;
1163 }
1164
Eric Laurentbc7f3472016-12-01 15:28:29 -08001165 status_t status = effect->setEnabled(true);
Eric Laurentca7cc822012-11-19 14:55:58 -08001166 if (status != NO_ERROR) {
1167 if (thread != 0) {
Eric Laurentbc7f3472016-12-01 15:28:29 -08001168 thread->checkSuspendOnEffectEnabled(effect, false, effect->sessionId());
Eric Laurentca7cc822012-11-19 14:55:58 -08001169 }
1170 mEnabled = false;
Eric Laurent813e2a72013-08-31 12:59:48 -07001171 } else {
Eric Laurent59fe0102013-09-27 18:48:26 -07001172 if (thread != 0) {
1173 if (thread->type() == ThreadBase::OFFLOAD) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001174 PlaybackThread *t = (PlaybackThread *)thread.get();
Eric Laurent59fe0102013-09-27 18:48:26 -07001175 Mutex::Autolock _l(t->mLock);
1176 t->broadcast_l();
Eric Laurent813e2a72013-08-31 12:59:48 -07001177 }
Eric Laurentbc7f3472016-12-01 15:28:29 -08001178 if (!effect->isOffloadable()) {
Eric Laurent59fe0102013-09-27 18:48:26 -07001179 if (thread->type() == ThreadBase::OFFLOAD) {
1180 PlaybackThread *t = (PlaybackThread *)thread.get();
1181 t->invalidateTracks(AUDIO_STREAM_MUSIC);
1182 }
Eric Laurentbc7f3472016-12-01 15:28:29 -08001183 if (effect->sessionId() == AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent59fe0102013-09-27 18:48:26 -07001184 thread->mAudioFlinger->onNonOffloadableGlobalEffectEnable();
1185 }
Eric Laurent813e2a72013-08-31 12:59:48 -07001186 }
1187 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001188 }
1189 return status;
1190}
1191
1192status_t AudioFlinger::EffectHandle::disable()
1193{
1194 ALOGV("disable %p", this);
Eric Laurentbc7f3472016-12-01 15:28:29 -08001195 AutoMutex _l(mLock);
1196 sp<EffectModule> effect = mEffect.promote();
1197 if (effect == 0 || mDisconnected) {
1198 return DEAD_OBJECT;
1199 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001200 if (!mHasControl) {
1201 return INVALID_OPERATION;
1202 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001203
1204 if (!mEnabled) {
1205 return NO_ERROR;
1206 }
1207 mEnabled = false;
1208
Eric Laurentbc7f3472016-12-01 15:28:29 -08001209 if (effect->suspended()) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001210 return NO_ERROR;
1211 }
1212
Eric Laurentbc7f3472016-12-01 15:28:29 -08001213 status_t status = effect->setEnabled(false);
Eric Laurentca7cc822012-11-19 14:55:58 -08001214
Eric Laurentbc7f3472016-12-01 15:28:29 -08001215 sp<ThreadBase> thread = effect->thread().promote();
Eric Laurentca7cc822012-11-19 14:55:58 -08001216 if (thread != 0) {
Eric Laurentbc7f3472016-12-01 15:28:29 -08001217 thread->checkSuspendOnEffectEnabled(effect, false, effect->sessionId());
Eric Laurent59fe0102013-09-27 18:48:26 -07001218 if (thread->type() == ThreadBase::OFFLOAD) {
1219 PlaybackThread *t = (PlaybackThread *)thread.get();
1220 Mutex::Autolock _l(t->mLock);
1221 t->broadcast_l();
1222 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001223 }
1224
1225 return status;
1226}
1227
1228void AudioFlinger::EffectHandle::disconnect()
1229{
Eric Laurentbc7f3472016-12-01 15:28:29 -08001230 ALOGV("%s %p", __FUNCTION__, this);
Eric Laurentca7cc822012-11-19 14:55:58 -08001231 disconnect(true);
1232}
1233
1234void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
1235{
Eric Laurentbc7f3472016-12-01 15:28:29 -08001236 AutoMutex _l(mLock);
1237 ALOGV("disconnect(%s) %p", unpinIfLast ? "true" : "false", this);
1238 if (mDisconnected) {
1239 if (unpinIfLast) {
1240 android_errorWriteLog(0x534e4554, "32707507");
1241 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001242 return;
1243 }
Eric Laurentbc7f3472016-12-01 15:28:29 -08001244 mDisconnected = true;
1245 sp<ThreadBase> thread;
1246 {
1247 sp<EffectModule> effect = mEffect.promote();
1248 if (effect != 0) {
1249 thread = effect->thread().promote();
1250 }
1251 }
1252 if (thread != 0) {
1253 thread->disconnectEffectHandle(this, unpinIfLast);
1254 } else {
1255 ALOGW("%s Effect handle %p disconnected after thread destruction", __FUNCTION__, this);
1256 // try to cleanup as much as we can
1257 sp<EffectModule> effect = mEffect.promote();
1258 if (effect != 0) {
1259 effect->disconnectHandle(this, unpinIfLast);
Eric Laurentca7cc822012-11-19 14:55:58 -08001260 }
1261 }
1262
Eric Laurentca7cc822012-11-19 14:55:58 -08001263 if (mClient != 0) {
1264 if (mCblk != NULL) {
1265 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
1266 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
1267 }
1268 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Eric Laurent021cf962014-05-13 10:18:14 -07001269 // Client destructor must run with AudioFlinger client mutex locked
1270 Mutex::Autolock _l(mClient->audioFlinger()->mClientLock);
Eric Laurentca7cc822012-11-19 14:55:58 -08001271 mClient.clear();
1272 }
1273}
1274
1275status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
1276 uint32_t cmdSize,
1277 void *pCmdData,
1278 uint32_t *replySize,
1279 void *pReplyData)
1280{
1281 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
Eric Laurentbc7f3472016-12-01 15:28:29 -08001282 cmdCode, mHasControl, mEffect.unsafe_get());
Eric Laurentca7cc822012-11-19 14:55:58 -08001283
Eric Laurentbc7f3472016-12-01 15:28:29 -08001284 if (cmdCode == EFFECT_CMD_ENABLE) {
1285 if (*replySize < sizeof(int)) {
1286 android_errorWriteLog(0x534e4554, "32095713");
1287 return BAD_VALUE;
1288 }
1289 *(int *)pReplyData = NO_ERROR;
1290 *replySize = sizeof(int);
1291 return enable();
1292 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1293 if (*replySize < sizeof(int)) {
1294 android_errorWriteLog(0x534e4554, "32095713");
1295 return BAD_VALUE;
1296 }
1297 *(int *)pReplyData = NO_ERROR;
1298 *replySize = sizeof(int);
1299 return disable();
1300 }
1301
1302 AutoMutex _l(mLock);
1303 sp<EffectModule> effect = mEffect.promote();
1304 if (effect == 0 || mDisconnected) {
1305 return DEAD_OBJECT;
1306 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001307 // only get parameter command is permitted for applications not controlling the effect
1308 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1309 return INVALID_OPERATION;
1310 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001311 if (mClient == 0) {
1312 return INVALID_OPERATION;
1313 }
1314
1315 // handle commands that are not forwarded transparently to effect engine
1316 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
Eric Laurentbc7f3472016-12-01 15:28:29 -08001317 if (*replySize < sizeof(int)) {
1318 android_errorWriteLog(0x534e4554, "32095713");
1319 return BAD_VALUE;
1320 }
1321 *(int *)pReplyData = NO_ERROR;
1322 *replySize = sizeof(int);
1323
Eric Laurentca7cc822012-11-19 14:55:58 -08001324 // No need to trylock() here as this function is executed in the binder thread serving a
1325 // particular client process: no risk to block the whole media server process or mixer
1326 // threads if we are stuck here
1327 Mutex::Autolock _l(mCblk->lock);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001328 // keep local copy of index in case of client corruption b/32220769
1329 const uint32_t clientIndex = mCblk->clientIndex;
1330 const uint32_t serverIndex = mCblk->serverIndex;
1331 if (clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1332 serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001333 mCblk->serverIndex = 0;
1334 mCblk->clientIndex = 0;
1335 return BAD_VALUE;
1336 }
1337 status_t status = NO_ERROR;
Andy Hungdd79ccd2016-11-15 17:19:58 -08001338 effect_param_t *param = NULL;
1339 for (uint32_t index = serverIndex; index < clientIndex;) {
1340 int *p = (int *)(mBuffer + index);
1341 const int size = *p++;
1342 if (size < 0
1343 || size > EFFECT_PARAM_BUFFER_SIZE
1344 || ((uint8_t *)p + size) > mBuffer + clientIndex) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001345 ALOGW("command(): invalid parameter block size");
Andy Hungdd79ccd2016-11-15 17:19:58 -08001346 status = BAD_VALUE;
Eric Laurentca7cc822012-11-19 14:55:58 -08001347 break;
1348 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001349
1350 // copy to local memory in case of client corruption b/32220769
1351 param = (effect_param_t *)realloc(param, size);
1352 if (param == NULL) {
1353 ALOGW("command(): out of memory");
1354 status = NO_MEMORY;
1355 break;
Eric Laurentca7cc822012-11-19 14:55:58 -08001356 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001357 memcpy(param, p, size);
1358
1359 int reply = 0;
1360 uint32_t rsize = sizeof(reply);
Eric Laurentbc7f3472016-12-01 15:28:29 -08001361 status_t ret = effect->command(EFFECT_CMD_SET_PARAM,
Andy Hungdd79ccd2016-11-15 17:19:58 -08001362 size,
1363 param,
Eric Laurentca7cc822012-11-19 14:55:58 -08001364 &rsize,
1365 &reply);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001366
1367 // verify shared memory: server index shouldn't change; client index can't go back.
1368 if (serverIndex != mCblk->serverIndex
1369 || clientIndex > mCblk->clientIndex) {
1370 android_errorWriteLog(0x534e4554, "32220769");
1371 status = BAD_VALUE;
1372 break;
1373 }
1374
Eric Laurentca7cc822012-11-19 14:55:58 -08001375 // stop at first error encountered
1376 if (ret != NO_ERROR) {
1377 status = ret;
1378 *(int *)pReplyData = reply;
1379 break;
1380 } else if (reply != NO_ERROR) {
1381 *(int *)pReplyData = reply;
1382 break;
1383 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001384 index += size;
Eric Laurentca7cc822012-11-19 14:55:58 -08001385 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001386 free(param);
Eric Laurentca7cc822012-11-19 14:55:58 -08001387 mCblk->serverIndex = 0;
1388 mCblk->clientIndex = 0;
1389 return status;
Eric Laurentca7cc822012-11-19 14:55:58 -08001390 }
1391
Eric Laurentbc7f3472016-12-01 15:28:29 -08001392 return effect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
Eric Laurentca7cc822012-11-19 14:55:58 -08001393}
1394
1395void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1396{
1397 ALOGV("setControl %p control %d", this, hasControl);
1398
1399 mHasControl = hasControl;
1400 mEnabled = enabled;
1401
1402 if (signal && mEffectClient != 0) {
1403 mEffectClient->controlStatusChanged(hasControl);
1404 }
1405}
1406
1407void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1408 uint32_t cmdSize,
1409 void *pCmdData,
1410 uint32_t replySize,
1411 void *pReplyData)
1412{
1413 if (mEffectClient != 0) {
1414 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1415 }
1416}
1417
1418
1419
1420void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1421{
1422 if (mEffectClient != 0) {
1423 mEffectClient->enableStatusChanged(enabled);
1424 }
1425}
1426
1427status_t AudioFlinger::EffectHandle::onTransact(
1428 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1429{
1430 return BnEffect::onTransact(code, data, reply, flags);
1431}
1432
1433
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001434void AudioFlinger::EffectHandle::dumpToBuffer(char* buffer, size_t size)
Eric Laurentca7cc822012-11-19 14:55:58 -08001435{
1436 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1437
Marco Nelissenb2208842014-02-07 14:00:50 -08001438 snprintf(buffer, size, "\t\t\t%5d %5d %3s %3s %5u %5u\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001439 (mClient == 0) ? getpid_cached : mClient->pid(),
1440 mPriority,
Marco Nelissenb2208842014-02-07 14:00:50 -08001441 mHasControl ? "yes" : "no",
1442 locked ? "yes" : "no",
Eric Laurentca7cc822012-11-19 14:55:58 -08001443 mCblk ? mCblk->clientIndex : 0,
1444 mCblk ? mCblk->serverIndex : 0
1445 );
1446
1447 if (locked) {
1448 mCblk->lock.unlock();
1449 }
1450}
1451
1452#undef LOG_TAG
1453#define LOG_TAG "AudioFlinger::EffectChain"
1454
1455AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
1456 int sessionId)
1457 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1458 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001459 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX), mForceVolume(false)
Eric Laurentca7cc822012-11-19 14:55:58 -08001460{
1461 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1462 if (thread == NULL) {
1463 return;
1464 }
1465 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1466 thread->frameCount();
1467}
1468
1469AudioFlinger::EffectChain::~EffectChain()
1470{
1471 if (mOwnInBuffer) {
1472 delete mInBuffer;
1473 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001474}
1475
1476// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1477sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1478 effect_descriptor_t *descriptor)
1479{
1480 size_t size = mEffects.size();
1481
1482 for (size_t i = 0; i < size; i++) {
1483 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1484 return mEffects[i];
1485 }
1486 }
1487 return 0;
1488}
1489
1490// getEffectFromId_l() must be called with ThreadBase::mLock held
1491sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1492{
1493 size_t size = mEffects.size();
1494
1495 for (size_t i = 0; i < size; i++) {
1496 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1497 if (id == 0 || mEffects[i]->id() == id) {
1498 return mEffects[i];
1499 }
1500 }
1501 return 0;
1502}
1503
1504// getEffectFromType_l() must be called with ThreadBase::mLock held
1505sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1506 const effect_uuid_t *type)
1507{
1508 size_t size = mEffects.size();
1509
1510 for (size_t i = 0; i < size; i++) {
1511 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1512 return mEffects[i];
1513 }
1514 }
1515 return 0;
1516}
1517
1518void AudioFlinger::EffectChain::clearInputBuffer()
1519{
1520 Mutex::Autolock _l(mLock);
1521 sp<ThreadBase> thread = mThread.promote();
1522 if (thread == 0) {
1523 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1524 return;
1525 }
1526 clearInputBuffer_l(thread);
1527}
1528
1529// Must be called with EffectChain::mLock locked
1530void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1531{
Ricardo Garcia322bab22014-08-06 11:43:46 -07001532 // TODO: This will change in the future, depending on multichannel
1533 // and sample format changes for effects.
1534 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1535 // (4 bytes frame size)
Ricardo Garcia726b6a72014-08-11 12:04:54 -07001536 const size_t frameSize =
1537 audio_bytes_per_sample(AUDIO_FORMAT_PCM_16_BIT) * min(FCC_2, thread->channelCount());
Ricardo Garcia322bab22014-08-06 11:43:46 -07001538 memset(mInBuffer, 0, thread->frameCount() * frameSize);
Eric Laurentca7cc822012-11-19 14:55:58 -08001539}
1540
1541// Must be called with EffectChain::mLock locked
1542void AudioFlinger::EffectChain::process_l()
1543{
1544 sp<ThreadBase> thread = mThread.promote();
1545 if (thread == 0) {
1546 ALOGW("process_l(): cannot promote mixer thread");
1547 return;
1548 }
1549 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1550 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001551 // never process effects when:
1552 // - on an OFFLOAD thread
1553 // - no more tracks are on the session and the effect tail has been rendered
1554 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001555 if (!isGlobalSession) {
1556 bool tracksOnSession = (trackCnt() != 0);
1557
1558 if (!tracksOnSession && mTailBufferCount == 0) {
1559 doProcess = false;
1560 }
1561
1562 if (activeTrackCnt() == 0) {
1563 // if no track is active and the effect tail has not been rendered,
1564 // the input buffer must be cleared here as the mixer process will not do it
1565 if (tracksOnSession || mTailBufferCount > 0) {
1566 clearInputBuffer_l(thread);
1567 if (mTailBufferCount > 0) {
1568 mTailBufferCount--;
1569 }
1570 }
1571 }
1572 }
1573
1574 size_t size = mEffects.size();
1575 if (doProcess) {
1576 for (size_t i = 0; i < size; i++) {
1577 mEffects[i]->process();
1578 }
1579 }
1580 for (size_t i = 0; i < size; i++) {
1581 mEffects[i]->updateState();
1582 }
1583}
1584
Eric Laurentbc7f3472016-12-01 15:28:29 -08001585// createEffect_l() must be called with ThreadBase::mLock held
1586status_t AudioFlinger::EffectChain::createEffect_l(sp<EffectModule>& effect,
1587 ThreadBase *thread,
1588 effect_descriptor_t *desc,
1589 int id,
1590 int sessionId,
1591 bool pinned)
1592{
1593 Mutex::Autolock _l(mLock);
1594 effect = new EffectModule(thread, this, desc, id, sessionId, pinned);
1595 status_t lStatus = effect->status();
1596 if (lStatus == NO_ERROR) {
1597 lStatus = addEffect_ll(effect);
1598 }
1599 if (lStatus != NO_ERROR) {
1600 effect.clear();
1601 }
1602 return lStatus;
1603}
1604
1605// addEffect_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001606status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1607{
Eric Laurentbc7f3472016-12-01 15:28:29 -08001608 Mutex::Autolock _l(mLock);
1609 return addEffect_ll(effect);
1610}
1611// addEffect_l() must be called with ThreadBase::mLock and EffectChain::mLock held
1612status_t AudioFlinger::EffectChain::addEffect_ll(const sp<EffectModule>& effect)
1613{
Eric Laurentca7cc822012-11-19 14:55:58 -08001614 effect_descriptor_t desc = effect->desc();
1615 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1616
Eric Laurentca7cc822012-11-19 14:55:58 -08001617 effect->setChain(this);
1618 sp<ThreadBase> thread = mThread.promote();
1619 if (thread == 0) {
1620 return NO_INIT;
1621 }
1622 effect->setThread(thread);
1623
1624 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1625 // Auxiliary effects are inserted at the beginning of mEffects vector as
1626 // they are processed first and accumulated in chain input buffer
1627 mEffects.insertAt(effect, 0);
1628
1629 // the input buffer for auxiliary effect contains mono samples in
1630 // 32 bit format. This is to avoid saturation in AudoMixer
1631 // accumulation stage. Saturation is done in EffectModule::process() before
1632 // calling the process in effect engine
1633 size_t numSamples = thread->frameCount();
1634 int32_t *buffer = new int32_t[numSamples];
1635 memset(buffer, 0, numSamples * sizeof(int32_t));
1636 effect->setInBuffer((int16_t *)buffer);
1637 // auxiliary effects output samples to chain input buffer for further processing
1638 // by insert effects
1639 effect->setOutBuffer(mInBuffer);
1640 } else {
1641 // Insert effects are inserted at the end of mEffects vector as they are processed
1642 // after track and auxiliary effects.
1643 // Insert effect order as a function of indicated preference:
1644 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1645 // another effect is present
1646 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1647 // last effect claiming first position
1648 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1649 // first effect claiming last position
1650 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1651 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1652 // already present
1653
1654 size_t size = mEffects.size();
1655 size_t idx_insert = size;
1656 ssize_t idx_insert_first = -1;
1657 ssize_t idx_insert_last = -1;
1658
1659 for (size_t i = 0; i < size; i++) {
1660 effect_descriptor_t d = mEffects[i]->desc();
1661 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1662 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1663 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1664 // check invalid effect chaining combinations
1665 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1666 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1667 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1668 desc.name, d.name);
1669 return INVALID_OPERATION;
1670 }
1671 // remember position of first insert effect and by default
1672 // select this as insert position for new effect
1673 if (idx_insert == size) {
1674 idx_insert = i;
1675 }
1676 // remember position of last insert effect claiming
1677 // first position
1678 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1679 idx_insert_first = i;
1680 }
1681 // remember position of first insert effect claiming
1682 // last position
1683 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1684 idx_insert_last == -1) {
1685 idx_insert_last = i;
1686 }
1687 }
1688 }
1689
1690 // modify idx_insert from first position if needed
1691 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1692 if (idx_insert_last != -1) {
1693 idx_insert = idx_insert_last;
1694 } else {
1695 idx_insert = size;
1696 }
1697 } else {
1698 if (idx_insert_first != -1) {
1699 idx_insert = idx_insert_first + 1;
1700 }
1701 }
1702
1703 // always read samples from chain input buffer
1704 effect->setInBuffer(mInBuffer);
1705
1706 // if last effect in the chain, output samples to chain
1707 // output buffer, otherwise to chain input buffer
1708 if (idx_insert == size) {
1709 if (idx_insert != 0) {
1710 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1711 mEffects[idx_insert-1]->configure();
1712 }
1713 effect->setOutBuffer(mOutBuffer);
1714 } else {
1715 effect->setOutBuffer(mInBuffer);
1716 }
1717 mEffects.insertAt(effect, idx_insert);
1718
1719 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this,
1720 idx_insert);
1721 }
1722 effect->configure();
1723 return NO_ERROR;
1724}
1725
Eric Laurentbc7f3472016-12-01 15:28:29 -08001726// removeEffect_l() must be called with ThreadBase::mLock held
1727size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect,
1728 bool release)
Eric Laurentca7cc822012-11-19 14:55:58 -08001729{
1730 Mutex::Autolock _l(mLock);
1731 size_t size = mEffects.size();
1732 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1733
1734 for (size_t i = 0; i < size; i++) {
1735 if (effect == mEffects[i]) {
1736 // calling stop here will remove pre-processing effect from the audio HAL.
1737 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1738 // the middle of a read from audio HAL
1739 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1740 mEffects[i]->state() == EffectModule::STOPPING) {
1741 mEffects[i]->stop();
1742 }
Eric Laurentbc7f3472016-12-01 15:28:29 -08001743 if (release) {
1744 mEffects[i]->release_l();
1745 }
1746
Eric Laurentca7cc822012-11-19 14:55:58 -08001747 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1748 delete[] effect->inBuffer();
1749 } else {
1750 if (i == size - 1 && i != 0) {
1751 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1752 mEffects[i - 1]->configure();
1753 }
1754 }
1755 mEffects.removeAt(i);
1756 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(),
1757 this, i);
Eric Laurentbc7f3472016-12-01 15:28:29 -08001758
Eric Laurentca7cc822012-11-19 14:55:58 -08001759 break;
1760 }
1761 }
1762
1763 return mEffects.size();
1764}
1765
Eric Laurentbc7f3472016-12-01 15:28:29 -08001766// setDevice_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001767void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1768{
1769 size_t size = mEffects.size();
1770 for (size_t i = 0; i < size; i++) {
1771 mEffects[i]->setDevice(device);
1772 }
1773}
1774
Eric Laurentbc7f3472016-12-01 15:28:29 -08001775// setMode_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001776void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1777{
1778 size_t size = mEffects.size();
1779 for (size_t i = 0; i < size; i++) {
1780 mEffects[i]->setMode(mode);
1781 }
1782}
1783
Eric Laurentbc7f3472016-12-01 15:28:29 -08001784// setAudioSource_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001785void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1786{
1787 size_t size = mEffects.size();
1788 for (size_t i = 0; i < size; i++) {
1789 mEffects[i]->setAudioSource(source);
1790 }
1791}
1792
1793// setVolume_l() must be called with PlaybackThread::mLock held
1794bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
1795{
1796 uint32_t newLeft = *left;
1797 uint32_t newRight = *right;
1798 bool hasControl = false;
1799 int ctrlIdx = -1;
1800 size_t size = mEffects.size();
1801
1802 // first update volume controller
1803 for (size_t i = size; i > 0; i--) {
1804 if (mEffects[i - 1]->isProcessEnabled() &&
1805 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1806 ctrlIdx = i - 1;
1807 hasControl = true;
1808 break;
1809 }
1810 }
1811
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001812 if (!isVolumeForced() && ctrlIdx == mVolumeCtrlIdx &&
1813 *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001814 if (hasControl) {
1815 *left = mNewLeftVolume;
1816 *right = mNewRightVolume;
1817 }
1818 return hasControl;
1819 }
1820
1821 mVolumeCtrlIdx = ctrlIdx;
1822 mLeftVolume = newLeft;
1823 mRightVolume = newRight;
1824
1825 // second get volume update from volume controller
1826 if (ctrlIdx >= 0) {
1827 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1828 mNewLeftVolume = newLeft;
1829 mNewRightVolume = newRight;
1830 }
1831 // then indicate volume to all other effects in chain.
1832 // Pass altered volume to effects before volume controller
1833 // and requested volume to effects after controller
1834 uint32_t lVol = newLeft;
1835 uint32_t rVol = newRight;
1836
1837 for (size_t i = 0; i < size; i++) {
1838 if ((int)i == ctrlIdx) {
1839 continue;
1840 }
1841 // this also works for ctrlIdx == -1 when there is no volume controller
1842 if ((int)i > ctrlIdx) {
1843 lVol = *left;
1844 rVol = *right;
1845 }
1846 mEffects[i]->setVolume(&lVol, &rVol, false);
1847 }
1848 *left = newLeft;
1849 *right = newRight;
1850
1851 return hasControl;
1852}
1853
Eric Laurent1b928682014-10-02 19:41:47 -07001854void AudioFlinger::EffectChain::syncHalEffectsState()
1855{
1856 Mutex::Autolock _l(mLock);
1857 for (size_t i = 0; i < mEffects.size(); i++) {
1858 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1859 mEffects[i]->state() == EffectModule::STOPPING) {
1860 mEffects[i]->addEffectToHal_l();
1861 }
1862 }
1863}
1864
Eric Laurentca7cc822012-11-19 14:55:58 -08001865void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1866{
1867 const size_t SIZE = 256;
1868 char buffer[SIZE];
1869 String8 result;
1870
Marco Nelissenb2208842014-02-07 14:00:50 -08001871 size_t numEffects = mEffects.size();
1872 snprintf(buffer, SIZE, " %d effects for session %d\n", numEffects, mSessionId);
Eric Laurentca7cc822012-11-19 14:55:58 -08001873 result.append(buffer);
1874
Marco Nelissenb2208842014-02-07 14:00:50 -08001875 if (numEffects) {
1876 bool locked = AudioFlinger::dumpTryLock(mLock);
1877 // failed to lock - AudioFlinger is probably deadlocked
1878 if (!locked) {
1879 result.append("\tCould not lock mutex:\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001880 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001881
Marco Nelissenb2208842014-02-07 14:00:50 -08001882 result.append("\tIn buffer Out buffer Active tracks:\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001883 snprintf(buffer, SIZE, "\t%p %p %d\n",
1884 mInBuffer,
1885 mOutBuffer,
Marco Nelissenb2208842014-02-07 14:00:50 -08001886 mActiveTrackCnt);
1887 result.append(buffer);
1888 write(fd, result.string(), result.size());
1889
1890 for (size_t i = 0; i < numEffects; ++i) {
1891 sp<EffectModule> effect = mEffects[i];
1892 if (effect != 0) {
1893 effect->dump(fd, args);
1894 }
1895 }
1896
1897 if (locked) {
1898 mLock.unlock();
1899 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001900 }
1901}
1902
1903// must be called with ThreadBase::mLock held
1904void AudioFlinger::EffectChain::setEffectSuspended_l(
1905 const effect_uuid_t *type, bool suspend)
1906{
1907 sp<SuspendedEffectDesc> desc;
1908 // use effect type UUID timelow as key as there is no real risk of identical
1909 // timeLow fields among effect type UUIDs.
1910 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1911 if (suspend) {
1912 if (index >= 0) {
1913 desc = mSuspendedEffects.valueAt(index);
1914 } else {
1915 desc = new SuspendedEffectDesc();
1916 desc->mType = *type;
1917 mSuspendedEffects.add(type->timeLow, desc);
1918 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1919 }
1920 if (desc->mRefCount++ == 0) {
1921 sp<EffectModule> effect = getEffectIfEnabled(type);
1922 if (effect != 0) {
1923 desc->mEffect = effect;
1924 effect->setSuspended(true);
1925 effect->setEnabled(false);
1926 }
1927 }
1928 } else {
1929 if (index < 0) {
1930 return;
1931 }
1932 desc = mSuspendedEffects.valueAt(index);
1933 if (desc->mRefCount <= 0) {
1934 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1935 desc->mRefCount = 1;
1936 }
1937 if (--desc->mRefCount == 0) {
1938 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1939 if (desc->mEffect != 0) {
1940 sp<EffectModule> effect = desc->mEffect.promote();
1941 if (effect != 0) {
1942 effect->setSuspended(false);
1943 effect->lock();
1944 EffectHandle *handle = effect->controlHandle_l();
Eric Laurentbc7f3472016-12-01 15:28:29 -08001945 if (handle != NULL && !handle->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001946 effect->setEnabled_l(handle->enabled());
1947 }
1948 effect->unlock();
1949 }
1950 desc->mEffect.clear();
1951 }
1952 mSuspendedEffects.removeItemsAt(index);
1953 }
1954 }
1955}
1956
1957// must be called with ThreadBase::mLock held
1958void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1959{
1960 sp<SuspendedEffectDesc> desc;
1961
1962 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1963 if (suspend) {
1964 if (index >= 0) {
1965 desc = mSuspendedEffects.valueAt(index);
1966 } else {
1967 desc = new SuspendedEffectDesc();
1968 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1969 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1970 }
1971 if (desc->mRefCount++ == 0) {
1972 Vector< sp<EffectModule> > effects;
1973 getSuspendEligibleEffects(effects);
1974 for (size_t i = 0; i < effects.size(); i++) {
1975 setEffectSuspended_l(&effects[i]->desc().type, true);
1976 }
1977 }
1978 } else {
1979 if (index < 0) {
1980 return;
1981 }
1982 desc = mSuspendedEffects.valueAt(index);
1983 if (desc->mRefCount <= 0) {
1984 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
1985 desc->mRefCount = 1;
1986 }
1987 if (--desc->mRefCount == 0) {
1988 Vector<const effect_uuid_t *> types;
1989 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
1990 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
1991 continue;
1992 }
1993 types.add(&mSuspendedEffects.valueAt(i)->mType);
1994 }
1995 for (size_t i = 0; i < types.size(); i++) {
1996 setEffectSuspended_l(types[i], false);
1997 }
1998 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
1999 mSuspendedEffects.keyAt(index));
2000 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
2001 }
2002 }
2003}
2004
2005
2006// The volume effect is used for automated tests only
2007#ifndef OPENSL_ES_H_
2008static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
2009 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
2010const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
2011#endif //OPENSL_ES_H_
2012
2013bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
2014{
2015 // auxiliary effects and visualizer are never suspended on output mix
2016 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
2017 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
2018 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
2019 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
2020 return false;
2021 }
2022 return true;
2023}
2024
2025void AudioFlinger::EffectChain::getSuspendEligibleEffects(
2026 Vector< sp<AudioFlinger::EffectModule> > &effects)
2027{
2028 effects.clear();
2029 for (size_t i = 0; i < mEffects.size(); i++) {
2030 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
2031 effects.add(mEffects[i]);
2032 }
2033 }
2034}
2035
2036sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
2037 const effect_uuid_t *type)
2038{
2039 sp<EffectModule> effect = getEffectFromType_l(type);
2040 return effect != 0 && effect->isEnabled() ? effect : 0;
2041}
2042
2043void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
2044 bool enabled)
2045{
2046 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
2047 if (enabled) {
2048 if (index < 0) {
2049 // if the effect is not suspend check if all effects are suspended
2050 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
2051 if (index < 0) {
2052 return;
2053 }
2054 if (!isEffectEligibleForSuspend(effect->desc())) {
2055 return;
2056 }
2057 setEffectSuspended_l(&effect->desc().type, enabled);
2058 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
2059 if (index < 0) {
2060 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
2061 return;
2062 }
2063 }
2064 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
2065 effect->desc().type.timeLow);
2066 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2067 // if effect is requested to suspended but was not yet enabled, supend it now.
2068 if (desc->mEffect == 0) {
2069 desc->mEffect = effect;
2070 effect->setEnabled(false);
2071 effect->setSuspended(true);
2072 }
2073 } else {
2074 if (index < 0) {
2075 return;
2076 }
2077 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
2078 effect->desc().type.timeLow);
2079 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2080 desc->mEffect.clear();
2081 effect->setSuspended(false);
2082 }
2083}
2084
Eric Laurent5baf2af2013-09-12 17:37:00 -07002085bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07002086{
2087 Mutex::Autolock _l(mLock);
2088 size_t size = mEffects.size();
2089 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07002090 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07002091 return true;
2092 }
2093 }
2094 return false;
2095}
2096
Eric Laurentaaa44472014-09-12 17:41:50 -07002097void AudioFlinger::EffectChain::setThread(const sp<ThreadBase>& thread)
2098{
2099 Mutex::Autolock _l(mLock);
2100 mThread = thread;
2101 for (size_t i = 0; i < mEffects.size(); i++) {
2102 mEffects[i]->setThread(thread);
2103 }
2104}
2105
Glenn Kasten63238ef2015-03-02 15:50:29 -08002106} // namespace android