blob: 59150984c65ef4231daa46cfb4b055fc9631789d [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 Laurent08824142017-06-15 18:43:46 -07001284 // reject commands reserved for internal use by audio framework if coming from outside
1285 // of audioserver
1286 switch(cmdCode) {
1287 case EFFECT_CMD_ENABLE:
1288 case EFFECT_CMD_DISABLE:
1289 case EFFECT_CMD_SET_PARAM:
1290 case EFFECT_CMD_SET_PARAM_DEFERRED:
1291 case EFFECT_CMD_SET_PARAM_COMMIT:
1292 case EFFECT_CMD_GET_PARAM:
1293 break;
1294 default:
1295 if (cmdCode >= EFFECT_CMD_FIRST_PROPRIETARY) {
1296 break;
1297 }
1298 android_errorWriteLog(0x534e4554, "62019992");
1299 return BAD_VALUE;
1300 }
1301
Eric Laurentbc7f3472016-12-01 15:28:29 -08001302 if (cmdCode == EFFECT_CMD_ENABLE) {
1303 if (*replySize < sizeof(int)) {
1304 android_errorWriteLog(0x534e4554, "32095713");
1305 return BAD_VALUE;
1306 }
1307 *(int *)pReplyData = NO_ERROR;
1308 *replySize = sizeof(int);
1309 return enable();
1310 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1311 if (*replySize < sizeof(int)) {
1312 android_errorWriteLog(0x534e4554, "32095713");
1313 return BAD_VALUE;
1314 }
1315 *(int *)pReplyData = NO_ERROR;
1316 *replySize = sizeof(int);
1317 return disable();
1318 }
1319
1320 AutoMutex _l(mLock);
1321 sp<EffectModule> effect = mEffect.promote();
1322 if (effect == 0 || mDisconnected) {
1323 return DEAD_OBJECT;
1324 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001325 // only get parameter command is permitted for applications not controlling the effect
1326 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1327 return INVALID_OPERATION;
1328 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001329 if (mClient == 0) {
1330 return INVALID_OPERATION;
1331 }
1332
1333 // handle commands that are not forwarded transparently to effect engine
1334 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
Eric Laurentbc7f3472016-12-01 15:28:29 -08001335 if (*replySize < sizeof(int)) {
1336 android_errorWriteLog(0x534e4554, "32095713");
1337 return BAD_VALUE;
1338 }
1339 *(int *)pReplyData = NO_ERROR;
1340 *replySize = sizeof(int);
1341
Eric Laurentca7cc822012-11-19 14:55:58 -08001342 // No need to trylock() here as this function is executed in the binder thread serving a
1343 // particular client process: no risk to block the whole media server process or mixer
1344 // threads if we are stuck here
1345 Mutex::Autolock _l(mCblk->lock);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001346 // keep local copy of index in case of client corruption b/32220769
1347 const uint32_t clientIndex = mCblk->clientIndex;
1348 const uint32_t serverIndex = mCblk->serverIndex;
1349 if (clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1350 serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001351 mCblk->serverIndex = 0;
1352 mCblk->clientIndex = 0;
1353 return BAD_VALUE;
1354 }
1355 status_t status = NO_ERROR;
Andy Hungdd79ccd2016-11-15 17:19:58 -08001356 effect_param_t *param = NULL;
1357 for (uint32_t index = serverIndex; index < clientIndex;) {
1358 int *p = (int *)(mBuffer + index);
1359 const int size = *p++;
1360 if (size < 0
1361 || size > EFFECT_PARAM_BUFFER_SIZE
1362 || ((uint8_t *)p + size) > mBuffer + clientIndex) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001363 ALOGW("command(): invalid parameter block size");
Andy Hungdd79ccd2016-11-15 17:19:58 -08001364 status = BAD_VALUE;
Eric Laurentca7cc822012-11-19 14:55:58 -08001365 break;
1366 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001367
1368 // copy to local memory in case of client corruption b/32220769
1369 param = (effect_param_t *)realloc(param, size);
1370 if (param == NULL) {
1371 ALOGW("command(): out of memory");
1372 status = NO_MEMORY;
1373 break;
Eric Laurentca7cc822012-11-19 14:55:58 -08001374 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001375 memcpy(param, p, size);
1376
1377 int reply = 0;
1378 uint32_t rsize = sizeof(reply);
Eric Laurentbc7f3472016-12-01 15:28:29 -08001379 status_t ret = effect->command(EFFECT_CMD_SET_PARAM,
Andy Hungdd79ccd2016-11-15 17:19:58 -08001380 size,
1381 param,
Eric Laurentca7cc822012-11-19 14:55:58 -08001382 &rsize,
1383 &reply);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001384
1385 // verify shared memory: server index shouldn't change; client index can't go back.
1386 if (serverIndex != mCblk->serverIndex
1387 || clientIndex > mCblk->clientIndex) {
1388 android_errorWriteLog(0x534e4554, "32220769");
1389 status = BAD_VALUE;
1390 break;
1391 }
1392
Eric Laurentca7cc822012-11-19 14:55:58 -08001393 // stop at first error encountered
1394 if (ret != NO_ERROR) {
1395 status = ret;
1396 *(int *)pReplyData = reply;
1397 break;
1398 } else if (reply != NO_ERROR) {
1399 *(int *)pReplyData = reply;
1400 break;
1401 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001402 index += size;
Eric Laurentca7cc822012-11-19 14:55:58 -08001403 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001404 free(param);
Eric Laurentca7cc822012-11-19 14:55:58 -08001405 mCblk->serverIndex = 0;
1406 mCblk->clientIndex = 0;
1407 return status;
Eric Laurentca7cc822012-11-19 14:55:58 -08001408 }
1409
Eric Laurentbc7f3472016-12-01 15:28:29 -08001410 return effect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
Eric Laurentca7cc822012-11-19 14:55:58 -08001411}
1412
1413void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1414{
1415 ALOGV("setControl %p control %d", this, hasControl);
1416
1417 mHasControl = hasControl;
1418 mEnabled = enabled;
1419
1420 if (signal && mEffectClient != 0) {
1421 mEffectClient->controlStatusChanged(hasControl);
1422 }
1423}
1424
1425void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1426 uint32_t cmdSize,
1427 void *pCmdData,
1428 uint32_t replySize,
1429 void *pReplyData)
1430{
1431 if (mEffectClient != 0) {
1432 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1433 }
1434}
1435
1436
1437
1438void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1439{
1440 if (mEffectClient != 0) {
1441 mEffectClient->enableStatusChanged(enabled);
1442 }
1443}
1444
1445status_t AudioFlinger::EffectHandle::onTransact(
1446 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1447{
1448 return BnEffect::onTransact(code, data, reply, flags);
1449}
1450
1451
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001452void AudioFlinger::EffectHandle::dumpToBuffer(char* buffer, size_t size)
Eric Laurentca7cc822012-11-19 14:55:58 -08001453{
1454 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1455
Marco Nelissenb2208842014-02-07 14:00:50 -08001456 snprintf(buffer, size, "\t\t\t%5d %5d %3s %3s %5u %5u\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001457 (mClient == 0) ? getpid_cached : mClient->pid(),
1458 mPriority,
Marco Nelissenb2208842014-02-07 14:00:50 -08001459 mHasControl ? "yes" : "no",
1460 locked ? "yes" : "no",
Eric Laurentca7cc822012-11-19 14:55:58 -08001461 mCblk ? mCblk->clientIndex : 0,
1462 mCblk ? mCblk->serverIndex : 0
1463 );
1464
1465 if (locked) {
1466 mCblk->lock.unlock();
1467 }
1468}
1469
1470#undef LOG_TAG
1471#define LOG_TAG "AudioFlinger::EffectChain"
1472
1473AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
1474 int sessionId)
1475 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1476 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001477 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX), mForceVolume(false)
Eric Laurentca7cc822012-11-19 14:55:58 -08001478{
1479 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1480 if (thread == NULL) {
1481 return;
1482 }
1483 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1484 thread->frameCount();
1485}
1486
1487AudioFlinger::EffectChain::~EffectChain()
1488{
1489 if (mOwnInBuffer) {
1490 delete mInBuffer;
1491 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001492}
1493
1494// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1495sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1496 effect_descriptor_t *descriptor)
1497{
1498 size_t size = mEffects.size();
1499
1500 for (size_t i = 0; i < size; i++) {
1501 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1502 return mEffects[i];
1503 }
1504 }
1505 return 0;
1506}
1507
1508// getEffectFromId_l() must be called with ThreadBase::mLock held
1509sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1510{
1511 size_t size = mEffects.size();
1512
1513 for (size_t i = 0; i < size; i++) {
1514 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1515 if (id == 0 || mEffects[i]->id() == id) {
1516 return mEffects[i];
1517 }
1518 }
1519 return 0;
1520}
1521
1522// getEffectFromType_l() must be called with ThreadBase::mLock held
1523sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1524 const effect_uuid_t *type)
1525{
1526 size_t size = mEffects.size();
1527
1528 for (size_t i = 0; i < size; i++) {
1529 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1530 return mEffects[i];
1531 }
1532 }
1533 return 0;
1534}
1535
1536void AudioFlinger::EffectChain::clearInputBuffer()
1537{
1538 Mutex::Autolock _l(mLock);
1539 sp<ThreadBase> thread = mThread.promote();
1540 if (thread == 0) {
1541 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1542 return;
1543 }
1544 clearInputBuffer_l(thread);
1545}
1546
1547// Must be called with EffectChain::mLock locked
1548void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1549{
Ricardo Garcia322bab22014-08-06 11:43:46 -07001550 // TODO: This will change in the future, depending on multichannel
1551 // and sample format changes for effects.
1552 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1553 // (4 bytes frame size)
Ricardo Garcia726b6a72014-08-11 12:04:54 -07001554 const size_t frameSize =
1555 audio_bytes_per_sample(AUDIO_FORMAT_PCM_16_BIT) * min(FCC_2, thread->channelCount());
Ricardo Garcia322bab22014-08-06 11:43:46 -07001556 memset(mInBuffer, 0, thread->frameCount() * frameSize);
Eric Laurentca7cc822012-11-19 14:55:58 -08001557}
1558
1559// Must be called with EffectChain::mLock locked
1560void AudioFlinger::EffectChain::process_l()
1561{
1562 sp<ThreadBase> thread = mThread.promote();
1563 if (thread == 0) {
1564 ALOGW("process_l(): cannot promote mixer thread");
1565 return;
1566 }
1567 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1568 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001569 // never process effects when:
1570 // - on an OFFLOAD thread
1571 // - no more tracks are on the session and the effect tail has been rendered
1572 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001573 if (!isGlobalSession) {
1574 bool tracksOnSession = (trackCnt() != 0);
1575
1576 if (!tracksOnSession && mTailBufferCount == 0) {
1577 doProcess = false;
1578 }
1579
1580 if (activeTrackCnt() == 0) {
1581 // if no track is active and the effect tail has not been rendered,
1582 // the input buffer must be cleared here as the mixer process will not do it
1583 if (tracksOnSession || mTailBufferCount > 0) {
1584 clearInputBuffer_l(thread);
1585 if (mTailBufferCount > 0) {
1586 mTailBufferCount--;
1587 }
1588 }
1589 }
1590 }
1591
1592 size_t size = mEffects.size();
1593 if (doProcess) {
1594 for (size_t i = 0; i < size; i++) {
1595 mEffects[i]->process();
1596 }
1597 }
1598 for (size_t i = 0; i < size; i++) {
1599 mEffects[i]->updateState();
1600 }
1601}
1602
Eric Laurentbc7f3472016-12-01 15:28:29 -08001603// createEffect_l() must be called with ThreadBase::mLock held
1604status_t AudioFlinger::EffectChain::createEffect_l(sp<EffectModule>& effect,
1605 ThreadBase *thread,
1606 effect_descriptor_t *desc,
1607 int id,
1608 int sessionId,
1609 bool pinned)
1610{
1611 Mutex::Autolock _l(mLock);
1612 effect = new EffectModule(thread, this, desc, id, sessionId, pinned);
1613 status_t lStatus = effect->status();
1614 if (lStatus == NO_ERROR) {
1615 lStatus = addEffect_ll(effect);
1616 }
1617 if (lStatus != NO_ERROR) {
1618 effect.clear();
1619 }
1620 return lStatus;
1621}
1622
1623// addEffect_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001624status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1625{
Eric Laurentbc7f3472016-12-01 15:28:29 -08001626 Mutex::Autolock _l(mLock);
1627 return addEffect_ll(effect);
1628}
1629// addEffect_l() must be called with ThreadBase::mLock and EffectChain::mLock held
1630status_t AudioFlinger::EffectChain::addEffect_ll(const sp<EffectModule>& effect)
1631{
Eric Laurentca7cc822012-11-19 14:55:58 -08001632 effect_descriptor_t desc = effect->desc();
1633 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1634
Eric Laurentca7cc822012-11-19 14:55:58 -08001635 effect->setChain(this);
1636 sp<ThreadBase> thread = mThread.promote();
1637 if (thread == 0) {
1638 return NO_INIT;
1639 }
1640 effect->setThread(thread);
1641
1642 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1643 // Auxiliary effects are inserted at the beginning of mEffects vector as
1644 // they are processed first and accumulated in chain input buffer
1645 mEffects.insertAt(effect, 0);
1646
1647 // the input buffer for auxiliary effect contains mono samples in
1648 // 32 bit format. This is to avoid saturation in AudoMixer
1649 // accumulation stage. Saturation is done in EffectModule::process() before
1650 // calling the process in effect engine
1651 size_t numSamples = thread->frameCount();
1652 int32_t *buffer = new int32_t[numSamples];
1653 memset(buffer, 0, numSamples * sizeof(int32_t));
1654 effect->setInBuffer((int16_t *)buffer);
1655 // auxiliary effects output samples to chain input buffer for further processing
1656 // by insert effects
1657 effect->setOutBuffer(mInBuffer);
1658 } else {
1659 // Insert effects are inserted at the end of mEffects vector as they are processed
1660 // after track and auxiliary effects.
1661 // Insert effect order as a function of indicated preference:
1662 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1663 // another effect is present
1664 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1665 // last effect claiming first position
1666 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1667 // first effect claiming last position
1668 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1669 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1670 // already present
1671
1672 size_t size = mEffects.size();
1673 size_t idx_insert = size;
1674 ssize_t idx_insert_first = -1;
1675 ssize_t idx_insert_last = -1;
1676
1677 for (size_t i = 0; i < size; i++) {
1678 effect_descriptor_t d = mEffects[i]->desc();
1679 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1680 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1681 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1682 // check invalid effect chaining combinations
1683 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1684 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1685 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1686 desc.name, d.name);
1687 return INVALID_OPERATION;
1688 }
1689 // remember position of first insert effect and by default
1690 // select this as insert position for new effect
1691 if (idx_insert == size) {
1692 idx_insert = i;
1693 }
1694 // remember position of last insert effect claiming
1695 // first position
1696 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1697 idx_insert_first = i;
1698 }
1699 // remember position of first insert effect claiming
1700 // last position
1701 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1702 idx_insert_last == -1) {
1703 idx_insert_last = i;
1704 }
1705 }
1706 }
1707
1708 // modify idx_insert from first position if needed
1709 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1710 if (idx_insert_last != -1) {
1711 idx_insert = idx_insert_last;
1712 } else {
1713 idx_insert = size;
1714 }
1715 } else {
1716 if (idx_insert_first != -1) {
1717 idx_insert = idx_insert_first + 1;
1718 }
1719 }
1720
1721 // always read samples from chain input buffer
1722 effect->setInBuffer(mInBuffer);
1723
1724 // if last effect in the chain, output samples to chain
1725 // output buffer, otherwise to chain input buffer
1726 if (idx_insert == size) {
1727 if (idx_insert != 0) {
1728 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1729 mEffects[idx_insert-1]->configure();
1730 }
1731 effect->setOutBuffer(mOutBuffer);
1732 } else {
1733 effect->setOutBuffer(mInBuffer);
1734 }
1735 mEffects.insertAt(effect, idx_insert);
1736
1737 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this,
1738 idx_insert);
1739 }
1740 effect->configure();
1741 return NO_ERROR;
1742}
1743
Eric Laurentbc7f3472016-12-01 15:28:29 -08001744// removeEffect_l() must be called with ThreadBase::mLock held
1745size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect,
1746 bool release)
Eric Laurentca7cc822012-11-19 14:55:58 -08001747{
1748 Mutex::Autolock _l(mLock);
1749 size_t size = mEffects.size();
1750 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1751
1752 for (size_t i = 0; i < size; i++) {
1753 if (effect == mEffects[i]) {
1754 // calling stop here will remove pre-processing effect from the audio HAL.
1755 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1756 // the middle of a read from audio HAL
1757 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1758 mEffects[i]->state() == EffectModule::STOPPING) {
1759 mEffects[i]->stop();
1760 }
Eric Laurentbc7f3472016-12-01 15:28:29 -08001761 if (release) {
1762 mEffects[i]->release_l();
1763 }
1764
Eric Laurentca7cc822012-11-19 14:55:58 -08001765 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1766 delete[] effect->inBuffer();
1767 } else {
1768 if (i == size - 1 && i != 0) {
1769 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1770 mEffects[i - 1]->configure();
1771 }
1772 }
1773 mEffects.removeAt(i);
1774 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(),
1775 this, i);
Eric Laurentbc7f3472016-12-01 15:28:29 -08001776
Eric Laurentca7cc822012-11-19 14:55:58 -08001777 break;
1778 }
1779 }
1780
1781 return mEffects.size();
1782}
1783
Eric Laurentbc7f3472016-12-01 15:28:29 -08001784// setDevice_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001785void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1786{
1787 size_t size = mEffects.size();
1788 for (size_t i = 0; i < size; i++) {
1789 mEffects[i]->setDevice(device);
1790 }
1791}
1792
Eric Laurentbc7f3472016-12-01 15:28:29 -08001793// setMode_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001794void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1795{
1796 size_t size = mEffects.size();
1797 for (size_t i = 0; i < size; i++) {
1798 mEffects[i]->setMode(mode);
1799 }
1800}
1801
Eric Laurentbc7f3472016-12-01 15:28:29 -08001802// setAudioSource_l() must be called with ThreadBase::mLock held
Eric Laurentca7cc822012-11-19 14:55:58 -08001803void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1804{
1805 size_t size = mEffects.size();
1806 for (size_t i = 0; i < size; i++) {
1807 mEffects[i]->setAudioSource(source);
1808 }
1809}
1810
1811// setVolume_l() must be called with PlaybackThread::mLock held
1812bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
1813{
1814 uint32_t newLeft = *left;
1815 uint32_t newRight = *right;
1816 bool hasControl = false;
1817 int ctrlIdx = -1;
1818 size_t size = mEffects.size();
1819
1820 // first update volume controller
1821 for (size_t i = size; i > 0; i--) {
1822 if (mEffects[i - 1]->isProcessEnabled() &&
1823 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1824 ctrlIdx = i - 1;
1825 hasControl = true;
1826 break;
1827 }
1828 }
1829
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001830 if (!isVolumeForced() && ctrlIdx == mVolumeCtrlIdx &&
1831 *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001832 if (hasControl) {
1833 *left = mNewLeftVolume;
1834 *right = mNewRightVolume;
1835 }
1836 return hasControl;
1837 }
1838
1839 mVolumeCtrlIdx = ctrlIdx;
1840 mLeftVolume = newLeft;
1841 mRightVolume = newRight;
1842
1843 // second get volume update from volume controller
1844 if (ctrlIdx >= 0) {
1845 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1846 mNewLeftVolume = newLeft;
1847 mNewRightVolume = newRight;
1848 }
1849 // then indicate volume to all other effects in chain.
1850 // Pass altered volume to effects before volume controller
1851 // and requested volume to effects after controller
1852 uint32_t lVol = newLeft;
1853 uint32_t rVol = newRight;
1854
1855 for (size_t i = 0; i < size; i++) {
1856 if ((int)i == ctrlIdx) {
1857 continue;
1858 }
1859 // this also works for ctrlIdx == -1 when there is no volume controller
1860 if ((int)i > ctrlIdx) {
1861 lVol = *left;
1862 rVol = *right;
1863 }
1864 mEffects[i]->setVolume(&lVol, &rVol, false);
1865 }
1866 *left = newLeft;
1867 *right = newRight;
1868
1869 return hasControl;
1870}
1871
Eric Laurent1b928682014-10-02 19:41:47 -07001872void AudioFlinger::EffectChain::syncHalEffectsState()
1873{
1874 Mutex::Autolock _l(mLock);
1875 for (size_t i = 0; i < mEffects.size(); i++) {
1876 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1877 mEffects[i]->state() == EffectModule::STOPPING) {
1878 mEffects[i]->addEffectToHal_l();
1879 }
1880 }
1881}
1882
Eric Laurentca7cc822012-11-19 14:55:58 -08001883void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1884{
1885 const size_t SIZE = 256;
1886 char buffer[SIZE];
1887 String8 result;
1888
Marco Nelissenb2208842014-02-07 14:00:50 -08001889 size_t numEffects = mEffects.size();
1890 snprintf(buffer, SIZE, " %d effects for session %d\n", numEffects, mSessionId);
Eric Laurentca7cc822012-11-19 14:55:58 -08001891 result.append(buffer);
1892
Marco Nelissenb2208842014-02-07 14:00:50 -08001893 if (numEffects) {
1894 bool locked = AudioFlinger::dumpTryLock(mLock);
1895 // failed to lock - AudioFlinger is probably deadlocked
1896 if (!locked) {
1897 result.append("\tCould not lock mutex:\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001898 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001899
Marco Nelissenb2208842014-02-07 14:00:50 -08001900 result.append("\tIn buffer Out buffer Active tracks:\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001901 snprintf(buffer, SIZE, "\t%p %p %d\n",
1902 mInBuffer,
1903 mOutBuffer,
Marco Nelissenb2208842014-02-07 14:00:50 -08001904 mActiveTrackCnt);
1905 result.append(buffer);
1906 write(fd, result.string(), result.size());
1907
1908 for (size_t i = 0; i < numEffects; ++i) {
1909 sp<EffectModule> effect = mEffects[i];
1910 if (effect != 0) {
1911 effect->dump(fd, args);
1912 }
1913 }
1914
1915 if (locked) {
1916 mLock.unlock();
1917 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001918 }
1919}
1920
1921// must be called with ThreadBase::mLock held
1922void AudioFlinger::EffectChain::setEffectSuspended_l(
1923 const effect_uuid_t *type, bool suspend)
1924{
1925 sp<SuspendedEffectDesc> desc;
1926 // use effect type UUID timelow as key as there is no real risk of identical
1927 // timeLow fields among effect type UUIDs.
1928 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1929 if (suspend) {
1930 if (index >= 0) {
1931 desc = mSuspendedEffects.valueAt(index);
1932 } else {
1933 desc = new SuspendedEffectDesc();
1934 desc->mType = *type;
1935 mSuspendedEffects.add(type->timeLow, desc);
1936 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1937 }
1938 if (desc->mRefCount++ == 0) {
1939 sp<EffectModule> effect = getEffectIfEnabled(type);
1940 if (effect != 0) {
1941 desc->mEffect = effect;
1942 effect->setSuspended(true);
1943 effect->setEnabled(false);
1944 }
1945 }
1946 } else {
1947 if (index < 0) {
1948 return;
1949 }
1950 desc = mSuspendedEffects.valueAt(index);
1951 if (desc->mRefCount <= 0) {
1952 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1953 desc->mRefCount = 1;
1954 }
1955 if (--desc->mRefCount == 0) {
1956 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1957 if (desc->mEffect != 0) {
1958 sp<EffectModule> effect = desc->mEffect.promote();
1959 if (effect != 0) {
1960 effect->setSuspended(false);
1961 effect->lock();
1962 EffectHandle *handle = effect->controlHandle_l();
Eric Laurentbc7f3472016-12-01 15:28:29 -08001963 if (handle != NULL && !handle->disconnected()) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001964 effect->setEnabled_l(handle->enabled());
1965 }
1966 effect->unlock();
1967 }
1968 desc->mEffect.clear();
1969 }
1970 mSuspendedEffects.removeItemsAt(index);
1971 }
1972 }
1973}
1974
1975// must be called with ThreadBase::mLock held
1976void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1977{
1978 sp<SuspendedEffectDesc> desc;
1979
1980 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1981 if (suspend) {
1982 if (index >= 0) {
1983 desc = mSuspendedEffects.valueAt(index);
1984 } else {
1985 desc = new SuspendedEffectDesc();
1986 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1987 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1988 }
1989 if (desc->mRefCount++ == 0) {
1990 Vector< sp<EffectModule> > effects;
1991 getSuspendEligibleEffects(effects);
1992 for (size_t i = 0; i < effects.size(); i++) {
1993 setEffectSuspended_l(&effects[i]->desc().type, true);
1994 }
1995 }
1996 } else {
1997 if (index < 0) {
1998 return;
1999 }
2000 desc = mSuspendedEffects.valueAt(index);
2001 if (desc->mRefCount <= 0) {
2002 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
2003 desc->mRefCount = 1;
2004 }
2005 if (--desc->mRefCount == 0) {
2006 Vector<const effect_uuid_t *> types;
2007 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
2008 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
2009 continue;
2010 }
2011 types.add(&mSuspendedEffects.valueAt(i)->mType);
2012 }
2013 for (size_t i = 0; i < types.size(); i++) {
2014 setEffectSuspended_l(types[i], false);
2015 }
2016 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
2017 mSuspendedEffects.keyAt(index));
2018 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
2019 }
2020 }
2021}
2022
2023
2024// The volume effect is used for automated tests only
2025#ifndef OPENSL_ES_H_
2026static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
2027 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
2028const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
2029#endif //OPENSL_ES_H_
2030
2031bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
2032{
2033 // auxiliary effects and visualizer are never suspended on output mix
2034 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
2035 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
2036 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
2037 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
2038 return false;
2039 }
2040 return true;
2041}
2042
2043void AudioFlinger::EffectChain::getSuspendEligibleEffects(
2044 Vector< sp<AudioFlinger::EffectModule> > &effects)
2045{
2046 effects.clear();
2047 for (size_t i = 0; i < mEffects.size(); i++) {
2048 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
2049 effects.add(mEffects[i]);
2050 }
2051 }
2052}
2053
2054sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
2055 const effect_uuid_t *type)
2056{
2057 sp<EffectModule> effect = getEffectFromType_l(type);
2058 return effect != 0 && effect->isEnabled() ? effect : 0;
2059}
2060
2061void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
2062 bool enabled)
2063{
2064 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
2065 if (enabled) {
2066 if (index < 0) {
2067 // if the effect is not suspend check if all effects are suspended
2068 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
2069 if (index < 0) {
2070 return;
2071 }
2072 if (!isEffectEligibleForSuspend(effect->desc())) {
2073 return;
2074 }
2075 setEffectSuspended_l(&effect->desc().type, enabled);
2076 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
2077 if (index < 0) {
2078 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
2079 return;
2080 }
2081 }
2082 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
2083 effect->desc().type.timeLow);
2084 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2085 // if effect is requested to suspended but was not yet enabled, supend it now.
2086 if (desc->mEffect == 0) {
2087 desc->mEffect = effect;
2088 effect->setEnabled(false);
2089 effect->setSuspended(true);
2090 }
2091 } else {
2092 if (index < 0) {
2093 return;
2094 }
2095 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
2096 effect->desc().type.timeLow);
2097 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2098 desc->mEffect.clear();
2099 effect->setSuspended(false);
2100 }
2101}
2102
Eric Laurent5baf2af2013-09-12 17:37:00 -07002103bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07002104{
2105 Mutex::Autolock _l(mLock);
2106 size_t size = mEffects.size();
2107 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07002108 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07002109 return true;
2110 }
2111 }
2112 return false;
2113}
2114
Eric Laurentaaa44472014-09-12 17:41:50 -07002115void AudioFlinger::EffectChain::setThread(const sp<ThreadBase>& thread)
2116{
2117 Mutex::Autolock _l(mLock);
2118 mThread = thread;
2119 for (size_t i = 0; i < mEffects.size(); i++) {
2120 mEffects[i]->setThread(thread);
2121 }
2122}
2123
Glenn Kasten63238ef2015-03-02 15:50:29 -08002124} // namespace android