blob: 03a4f36d8bc157f102897a6480336025939dc547 [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,
62 int sessionId)
63 : mPinned(sessionId > AUDIO_SESSION_OUTPUT_MIX),
64 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
65 mDescriptor(*desc),
66 // mConfig is set by configure() and not used before then
67 mEffectInterface(NULL),
68 mStatus(NO_INIT), mState(IDLE),
69 // mMaxDisableWaitCnt is set by configure() and not used before then
70 // mDisableWaitCnt is set by process() and updateState() and not used before then
Eric Laurentaaa44472014-09-12 17:41:50 -070071 mSuspended(false),
72 mAudioFlinger(thread->mAudioFlinger)
Eric Laurentca7cc822012-11-19 14:55:58 -080073{
74 ALOGV("Constructor %p", this);
75 int lStatus;
76
77 // create effect engine from effect factory
78 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
79
80 if (mStatus != NO_ERROR) {
81 return;
82 }
83 lStatus = init();
84 if (lStatus < 0) {
85 mStatus = lStatus;
86 goto Error;
87 }
88
89 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
90 return;
91Error:
92 EffectRelease(mEffectInterface);
93 mEffectInterface = NULL;
94 ALOGV("Constructor Error %d", mStatus);
95}
96
97AudioFlinger::EffectModule::~EffectModule()
98{
99 ALOGV("Destructor %p", this);
100 if (mEffectInterface != NULL) {
Eric Laurentbfb1b832013-01-07 09:53:42 -0800101 remove_effect_from_hal_l();
Eric Laurentca7cc822012-11-19 14:55:58 -0800102 // release effect engine
103 EffectRelease(mEffectInterface);
104 }
105}
106
107status_t AudioFlinger::EffectModule::addHandle(EffectHandle *handle)
108{
109 status_t status;
110
111 Mutex::Autolock _l(mLock);
112 int priority = handle->priority();
113 size_t size = mHandles.size();
114 EffectHandle *controlHandle = NULL;
115 size_t i;
116 for (i = 0; i < size; i++) {
117 EffectHandle *h = mHandles[i];
118 if (h == NULL || h->destroyed_l()) {
119 continue;
120 }
121 // first non destroyed handle is considered in control
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700122 if (controlHandle == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800123 controlHandle = h;
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700124 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800125 if (h->priority() <= priority) {
126 break;
127 }
128 }
129 // if inserted in first place, move effect control from previous owner to this handle
130 if (i == 0) {
131 bool enabled = false;
132 if (controlHandle != NULL) {
133 enabled = controlHandle->enabled();
134 controlHandle->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
135 }
136 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
137 status = NO_ERROR;
138 } else {
139 status = ALREADY_EXISTS;
140 }
141 ALOGV("addHandle() %p added handle %p in position %d", this, handle, i);
142 mHandles.insertAt(handle, i);
143 return status;
144}
145
146size_t AudioFlinger::EffectModule::removeHandle(EffectHandle *handle)
147{
148 Mutex::Autolock _l(mLock);
149 size_t size = mHandles.size();
150 size_t i;
151 for (i = 0; i < size; i++) {
152 if (mHandles[i] == handle) {
153 break;
154 }
155 }
156 if (i == size) {
157 return size;
158 }
159 ALOGV("removeHandle() %p removed handle %p in position %d", this, handle, i);
160
161 mHandles.removeAt(i);
162 // if removed from first place, move effect control from this handle to next in line
163 if (i == 0) {
164 EffectHandle *h = controlHandle_l();
165 if (h != NULL) {
166 h->setControl(true /*hasControl*/, true /*signal*/ , handle->enabled() /*enabled*/);
167 }
168 }
169
170 // Prevent calls to process() and other functions on effect interface from now on.
171 // The effect engine will be released by the destructor when the last strong reference on
172 // this object is released which can happen after next process is called.
173 if (mHandles.size() == 0 && !mPinned) {
174 mState = DESTROYED;
175 }
176
177 return mHandles.size();
178}
179
180// must be called with EffectModule::mLock held
181AudioFlinger::EffectHandle *AudioFlinger::EffectModule::controlHandle_l()
182{
183 // the first valid handle in the list has control over the module
184 for (size_t i = 0; i < mHandles.size(); i++) {
185 EffectHandle *h = mHandles[i];
186 if (h != NULL && !h->destroyed_l()) {
187 return h;
188 }
189 }
190
191 return NULL;
192}
193
194size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast)
195{
196 ALOGV("disconnect() %p handle %p", this, handle);
197 // keep a strong reference on this EffectModule to avoid calling the
198 // destructor before we exit
199 sp<EffectModule> keep(this);
200 {
Eric Laurentaaa44472014-09-12 17:41:50 -0700201 if (removeHandle(handle) == 0) {
202 if (!isPinned() || unpinIfLast) {
203 sp<ThreadBase> thread = mThread.promote();
204 if (thread != 0) {
205 Mutex::Autolock _l(thread->mLock);
206 thread->removeEffect_l(this);
207 }
208 sp<AudioFlinger> af = mAudioFlinger.promote();
209 if (af != 0) {
210 af->updateOrphanEffectChains(this);
211 }
212 AudioSystem::unregisterEffect(mId);
213 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800214 }
215 }
216 return mHandles.size();
217}
218
219void AudioFlinger::EffectModule::updateState() {
220 Mutex::Autolock _l(mLock);
221
222 switch (mState) {
223 case RESTART:
224 reset_l();
225 // FALL THROUGH
226
227 case STARTING:
228 // clear auxiliary effect input buffer for next accumulation
229 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
230 memset(mConfig.inputCfg.buffer.raw,
231 0,
232 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
233 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700234 if (start_l() == NO_ERROR) {
235 mState = ACTIVE;
236 } else {
237 mState = IDLE;
238 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800239 break;
240 case STOPPING:
Eric Laurentd0ebb532013-04-02 16:41:41 -0700241 if (stop_l() == NO_ERROR) {
242 mDisableWaitCnt = mMaxDisableWaitCnt;
243 } else {
244 mDisableWaitCnt = 1; // will cause immediate transition to IDLE
245 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800246 mState = STOPPED;
247 break;
248 case STOPPED:
249 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
250 // turn off sequence.
251 if (--mDisableWaitCnt == 0) {
252 reset_l();
253 mState = IDLE;
254 }
255 break;
256 default: //IDLE , ACTIVE, DESTROYED
257 break;
258 }
259}
260
261void AudioFlinger::EffectModule::process()
262{
263 Mutex::Autolock _l(mLock);
264
265 if (mState == DESTROYED || mEffectInterface == NULL ||
266 mConfig.inputCfg.buffer.raw == NULL ||
267 mConfig.outputCfg.buffer.raw == NULL) {
268 return;
269 }
270
271 if (isProcessEnabled()) {
272 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
273 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
274 ditherAndClamp(mConfig.inputCfg.buffer.s32,
275 mConfig.inputCfg.buffer.s32,
276 mConfig.inputCfg.buffer.frameCount/2);
277 }
278
279 // do the actual processing in the effect engine
280 int ret = (*mEffectInterface)->process(mEffectInterface,
281 &mConfig.inputCfg.buffer,
282 &mConfig.outputCfg.buffer);
283
284 // force transition to IDLE state when engine is ready
285 if (mState == STOPPED && ret == -ENODATA) {
286 mDisableWaitCnt = 1;
287 }
288
289 // clear auxiliary effect input buffer for next accumulation
290 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
291 memset(mConfig.inputCfg.buffer.raw, 0,
292 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
293 }
294 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
295 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
296 // If an insert effect is idle and input buffer is different from output buffer,
297 // accumulate input onto output
298 sp<EffectChain> chain = mChain.promote();
299 if (chain != 0 && chain->activeTrackCnt() != 0) {
300 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
301 int16_t *in = mConfig.inputCfg.buffer.s16;
302 int16_t *out = mConfig.outputCfg.buffer.s16;
303 for (size_t i = 0; i < frameCnt; i++) {
304 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
305 }
306 }
307 }
308}
309
310void AudioFlinger::EffectModule::reset_l()
311{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700312 if (mStatus != NO_ERROR || mEffectInterface == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800313 return;
314 }
315 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
316}
317
318status_t AudioFlinger::EffectModule::configure()
319{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700320 status_t status;
321 sp<ThreadBase> thread;
322 uint32_t size;
323 audio_channel_mask_t channelMask;
324
Eric Laurentca7cc822012-11-19 14:55:58 -0800325 if (mEffectInterface == NULL) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700326 status = NO_INIT;
327 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800328 }
329
Eric Laurentd0ebb532013-04-02 16:41:41 -0700330 thread = mThread.promote();
Eric Laurentca7cc822012-11-19 14:55:58 -0800331 if (thread == 0) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700332 status = DEAD_OBJECT;
333 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800334 }
335
336 // TODO: handle configuration of effects replacing track process
Eric Laurentd0ebb532013-04-02 16:41:41 -0700337 channelMask = thread->channelMask();
Eric Laurentca7cc822012-11-19 14:55:58 -0800338
339 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
340 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
341 } else {
342 mConfig.inputCfg.channels = channelMask;
343 }
344 mConfig.outputCfg.channels = channelMask;
345 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
346 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
347 mConfig.inputCfg.samplingRate = thread->sampleRate();
348 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
349 mConfig.inputCfg.bufferProvider.cookie = NULL;
350 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
351 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
352 mConfig.outputCfg.bufferProvider.cookie = NULL;
353 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
354 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
355 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
356 // Insert effect:
357 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
358 // always overwrites output buffer: input buffer == output buffer
359 // - in other sessions:
360 // last effect in the chain accumulates in output buffer: input buffer != output buffer
361 // other effect: overwrites output buffer: input buffer == output buffer
362 // Auxiliary effect:
363 // accumulates in output buffer: input buffer != output buffer
364 // Therefore: accumulate <=> input buffer != output buffer
365 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
366 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
367 } else {
368 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
369 }
370 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
371 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
372 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
373 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
374
375 ALOGV("configure() %p thread %p buffer %p framecount %d",
376 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
377
378 status_t cmdStatus;
Eric Laurentd0ebb532013-04-02 16:41:41 -0700379 size = sizeof(int);
380 status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurentca7cc822012-11-19 14:55:58 -0800381 EFFECT_CMD_SET_CONFIG,
382 sizeof(effect_config_t),
383 &mConfig,
384 &size,
385 &cmdStatus);
386 if (status == 0) {
387 status = cmdStatus;
388 }
389
390 if (status == 0 &&
391 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
392 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
393 effect_param_t *p = (effect_param_t *)buf32;
394
395 p->psize = sizeof(uint32_t);
396 p->vsize = sizeof(uint32_t);
397 size = sizeof(int);
398 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
399
400 uint32_t latency = 0;
401 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
402 if (pbt != NULL) {
403 latency = pbt->latency_l();
404 }
405
406 *((int32_t *)p->data + 1)= latency;
407 (*mEffectInterface)->command(mEffectInterface,
408 EFFECT_CMD_SET_PARAM,
409 sizeof(effect_param_t) + 8,
410 &buf32,
411 &size,
412 &cmdStatus);
413 }
414
415 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
416 (1000 * mConfig.outputCfg.buffer.frameCount);
417
Eric Laurentd0ebb532013-04-02 16:41:41 -0700418exit:
419 mStatus = status;
Eric Laurentca7cc822012-11-19 14:55:58 -0800420 return status;
421}
422
423status_t AudioFlinger::EffectModule::init()
424{
425 Mutex::Autolock _l(mLock);
426 if (mEffectInterface == NULL) {
427 return NO_INIT;
428 }
429 status_t cmdStatus;
430 uint32_t size = sizeof(status_t);
431 status_t status = (*mEffectInterface)->command(mEffectInterface,
432 EFFECT_CMD_INIT,
433 0,
434 NULL,
435 &size,
436 &cmdStatus);
437 if (status == 0) {
438 status = cmdStatus;
439 }
440 return status;
441}
442
Eric Laurent1b928682014-10-02 19:41:47 -0700443void AudioFlinger::EffectModule::addEffectToHal_l()
444{
445 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
446 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
447 sp<ThreadBase> thread = mThread.promote();
448 if (thread != 0) {
449 audio_stream_t *stream = thread->stream();
450 if (stream != NULL) {
451 stream->add_audio_effect(stream, mEffectInterface);
452 }
453 }
454 }
455}
456
Eric Laurentca7cc822012-11-19 14:55:58 -0800457status_t AudioFlinger::EffectModule::start()
458{
459 Mutex::Autolock _l(mLock);
460 return start_l();
461}
462
463status_t AudioFlinger::EffectModule::start_l()
464{
465 if (mEffectInterface == NULL) {
466 return NO_INIT;
467 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700468 if (mStatus != NO_ERROR) {
469 return mStatus;
470 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800471 status_t cmdStatus;
472 uint32_t size = sizeof(status_t);
473 status_t status = (*mEffectInterface)->command(mEffectInterface,
474 EFFECT_CMD_ENABLE,
475 0,
476 NULL,
477 &size,
478 &cmdStatus);
479 if (status == 0) {
480 status = cmdStatus;
481 }
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700482 if (status == 0) {
Eric Laurent1b928682014-10-02 19:41:47 -0700483 addEffectToHal_l();
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700484 sp<EffectChain> chain = mChain.promote();
485 if (chain != 0) {
486 chain->forceVolume();
487 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800488 }
489 return status;
490}
491
492status_t AudioFlinger::EffectModule::stop()
493{
494 Mutex::Autolock _l(mLock);
495 return stop_l();
496}
497
498status_t AudioFlinger::EffectModule::stop_l()
499{
500 if (mEffectInterface == NULL) {
501 return NO_INIT;
502 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700503 if (mStatus != NO_ERROR) {
504 return mStatus;
505 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800506 status_t cmdStatus = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800507 uint32_t size = sizeof(status_t);
508 status_t status = (*mEffectInterface)->command(mEffectInterface,
509 EFFECT_CMD_DISABLE,
510 0,
511 NULL,
512 &size,
513 &cmdStatus);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800514 if (status == NO_ERROR) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800515 status = cmdStatus;
516 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800517 if (status == NO_ERROR) {
518 status = remove_effect_from_hal_l();
519 }
520 return status;
521}
522
523status_t AudioFlinger::EffectModule::remove_effect_from_hal_l()
524{
525 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
526 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800527 sp<ThreadBase> thread = mThread.promote();
528 if (thread != 0) {
529 audio_stream_t *stream = thread->stream();
530 if (stream != NULL) {
531 stream->remove_audio_effect(stream, mEffectInterface);
532 }
533 }
534 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800535 return NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800536}
537
Andy Hunge4a1d912016-08-17 14:11:13 -0700538// round up delta valid if value and divisor are positive.
539template <typename T>
540static T roundUpDelta(const T &value, const T &divisor) {
541 T remainder = value % divisor;
542 return remainder == 0 ? 0 : divisor - remainder;
543}
544
Eric Laurentca7cc822012-11-19 14:55:58 -0800545status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
546 uint32_t cmdSize,
547 void *pCmdData,
548 uint32_t *replySize,
549 void *pReplyData)
550{
551 Mutex::Autolock _l(mLock);
552 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
553
554 if (mState == DESTROYED || mEffectInterface == NULL) {
555 return NO_INIT;
556 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700557 if (mStatus != NO_ERROR) {
558 return mStatus;
559 }
Andy Hung110bc952016-06-20 15:22:52 -0700560 if (cmdCode == EFFECT_CMD_GET_PARAM &&
561 (*replySize < sizeof(effect_param_t) ||
562 ((effect_param_t *)pCmdData)->psize > *replySize - sizeof(effect_param_t))) {
563 android_errorWriteLog(0x534e4554, "29251553");
564 return -EINVAL;
565 }
Andy Hung3d34cc72016-11-04 19:40:53 -0700566 if (cmdCode == EFFECT_CMD_GET_PARAM &&
567 (sizeof(effect_param_t) > cmdSize ||
568 ((effect_param_t *)pCmdData)->psize > cmdSize
569 - sizeof(effect_param_t))) {
570 android_errorWriteLog(0x534e4554, "32438594");
571 return -EINVAL;
572 }
ragoe2759072016-11-22 18:02:48 -0800573 if (cmdCode == EFFECT_CMD_GET_PARAM &&
574 (sizeof(effect_param_t) > *replySize
575 || ((effect_param_t *)pCmdData)->psize > *replySize
576 - sizeof(effect_param_t)
577 || ((effect_param_t *)pCmdData)->vsize > *replySize
578 - sizeof(effect_param_t)
579 - ((effect_param_t *)pCmdData)->psize
580 || roundUpDelta(((effect_param_t *)pCmdData)->psize, (uint32_t)sizeof(int)) >
581 *replySize
582 - sizeof(effect_param_t)
583 - ((effect_param_t *)pCmdData)->psize
584 - ((effect_param_t *)pCmdData)->vsize)) {
585 ALOGV("\tLVM_ERROR : EFFECT_CMD_GET_PARAM: reply size inconsistent");
586 android_errorWriteLog(0x534e4554, "32705438");
587 return -EINVAL;
588 }
Andy Hunge4a1d912016-08-17 14:11:13 -0700589 if ((cmdCode == EFFECT_CMD_SET_PARAM
590 || cmdCode == EFFECT_CMD_SET_PARAM_DEFERRED) && // DEFERRED not generally used
591 (sizeof(effect_param_t) > cmdSize
592 || ((effect_param_t *)pCmdData)->psize > cmdSize
593 - sizeof(effect_param_t)
594 || ((effect_param_t *)pCmdData)->vsize > cmdSize
595 - sizeof(effect_param_t)
596 - ((effect_param_t *)pCmdData)->psize
597 || roundUpDelta(((effect_param_t *)pCmdData)->psize, (uint32_t)sizeof(int)) >
598 cmdSize
599 - sizeof(effect_param_t)
600 - ((effect_param_t *)pCmdData)->psize
601 - ((effect_param_t *)pCmdData)->vsize)) {
602 android_errorWriteLog(0x534e4554, "30204301");
603 return -EINVAL;
604 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800605 status_t status = (*mEffectInterface)->command(mEffectInterface,
606 cmdCode,
607 cmdSize,
608 pCmdData,
609 replySize,
610 pReplyData);
611 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
612 uint32_t size = (replySize == NULL) ? 0 : *replySize;
613 for (size_t i = 1; i < mHandles.size(); i++) {
614 EffectHandle *h = mHandles[i];
615 if (h != NULL && !h->destroyed_l()) {
616 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
617 }
618 }
619 }
620 return status;
621}
622
623status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
624{
625 Mutex::Autolock _l(mLock);
626 return setEnabled_l(enabled);
627}
628
629// must be called with EffectModule::mLock held
630status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
631{
632
633 ALOGV("setEnabled %p enabled %d", this, enabled);
634
635 if (enabled != isEnabled()) {
636 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
637 if (enabled && status != NO_ERROR) {
638 return status;
639 }
640
641 switch (mState) {
642 // going from disabled to enabled
643 case IDLE:
644 mState = STARTING;
645 break;
646 case STOPPED:
647 mState = RESTART;
648 break;
649 case STOPPING:
650 mState = ACTIVE;
651 break;
652
653 // going from enabled to disabled
654 case RESTART:
655 mState = STOPPED;
656 break;
657 case STARTING:
658 mState = IDLE;
659 break;
660 case ACTIVE:
661 mState = STOPPING;
662 break;
663 case DESTROYED:
664 return NO_ERROR; // simply ignore as we are being destroyed
665 }
666 for (size_t i = 1; i < mHandles.size(); i++) {
667 EffectHandle *h = mHandles[i];
668 if (h != NULL && !h->destroyed_l()) {
669 h->setEnabled(enabled);
670 }
671 }
672 }
673 return NO_ERROR;
674}
675
676bool AudioFlinger::EffectModule::isEnabled() const
677{
678 switch (mState) {
679 case RESTART:
680 case STARTING:
681 case ACTIVE:
682 return true;
683 case IDLE:
684 case STOPPING:
685 case STOPPED:
686 case DESTROYED:
687 default:
688 return false;
689 }
690}
691
692bool AudioFlinger::EffectModule::isProcessEnabled() const
693{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700694 if (mStatus != NO_ERROR) {
695 return false;
696 }
697
Eric Laurentca7cc822012-11-19 14:55:58 -0800698 switch (mState) {
699 case RESTART:
700 case ACTIVE:
701 case STOPPING:
702 case STOPPED:
703 return true;
704 case IDLE:
705 case STARTING:
706 case DESTROYED:
707 default:
708 return false;
709 }
710}
711
712status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
713{
714 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700715 if (mStatus != NO_ERROR) {
716 return mStatus;
717 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800718 status_t status = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800719 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
720 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
721 if (isProcessEnabled() &&
722 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
723 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
724 status_t cmdStatus;
725 uint32_t volume[2];
726 uint32_t *pVolume = NULL;
727 uint32_t size = sizeof(volume);
728 volume[0] = *left;
729 volume[1] = *right;
730 if (controller) {
731 pVolume = volume;
732 }
733 status = (*mEffectInterface)->command(mEffectInterface,
734 EFFECT_CMD_SET_VOLUME,
735 size,
736 volume,
737 &size,
738 pVolume);
739 if (controller && status == NO_ERROR && size == sizeof(volume)) {
740 *left = volume[0];
741 *right = volume[1];
742 }
743 }
744 return status;
745}
746
747status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
748{
749 if (device == AUDIO_DEVICE_NONE) {
750 return NO_ERROR;
751 }
752
753 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700754 if (mStatus != NO_ERROR) {
755 return mStatus;
756 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800757 status_t status = NO_ERROR;
Eric Laurent7e1139c2013-06-06 18:29:01 -0700758 if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800759 status_t cmdStatus;
760 uint32_t size = sizeof(status_t);
761 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
762 EFFECT_CMD_SET_INPUT_DEVICE;
763 status = (*mEffectInterface)->command(mEffectInterface,
764 cmd,
765 sizeof(uint32_t),
766 &device,
767 &size,
768 &cmdStatus);
769 }
770 return status;
771}
772
773status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
774{
775 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700776 if (mStatus != NO_ERROR) {
777 return mStatus;
778 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800779 status_t status = NO_ERROR;
780 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
781 status_t cmdStatus;
782 uint32_t size = sizeof(status_t);
783 status = (*mEffectInterface)->command(mEffectInterface,
784 EFFECT_CMD_SET_AUDIO_MODE,
785 sizeof(audio_mode_t),
786 &mode,
787 &size,
788 &cmdStatus);
789 if (status == NO_ERROR) {
790 status = cmdStatus;
791 }
792 }
793 return status;
794}
795
796status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
797{
798 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700799 if (mStatus != NO_ERROR) {
800 return mStatus;
801 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800802 status_t status = NO_ERROR;
803 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
804 uint32_t size = 0;
805 status = (*mEffectInterface)->command(mEffectInterface,
806 EFFECT_CMD_SET_AUDIO_SOURCE,
807 sizeof(audio_source_t),
808 &source,
809 &size,
810 NULL);
811 }
812 return status;
813}
814
815void AudioFlinger::EffectModule::setSuspended(bool suspended)
816{
817 Mutex::Autolock _l(mLock);
818 mSuspended = suspended;
819}
820
821bool AudioFlinger::EffectModule::suspended() const
822{
823 Mutex::Autolock _l(mLock);
824 return mSuspended;
825}
826
827bool AudioFlinger::EffectModule::purgeHandles()
828{
829 bool enabled = false;
830 Mutex::Autolock _l(mLock);
831 for (size_t i = 0; i < mHandles.size(); i++) {
832 EffectHandle *handle = mHandles[i];
833 if (handle != NULL && !handle->destroyed_l()) {
834 handle->effect().clear();
835 if (handle->hasControl()) {
836 enabled = handle->enabled();
837 }
838 }
839 }
840 return enabled;
841}
842
Eric Laurent5baf2af2013-09-12 17:37:00 -0700843status_t AudioFlinger::EffectModule::setOffloaded(bool offloaded, audio_io_handle_t io)
844{
845 Mutex::Autolock _l(mLock);
846 if (mStatus != NO_ERROR) {
847 return mStatus;
848 }
849 status_t status = NO_ERROR;
850 if ((mDescriptor.flags & EFFECT_FLAG_OFFLOAD_SUPPORTED) != 0) {
851 status_t cmdStatus;
852 uint32_t size = sizeof(status_t);
853 effect_offload_param_t cmd;
854
855 cmd.isOffload = offloaded;
856 cmd.ioHandle = io;
857 status = (*mEffectInterface)->command(mEffectInterface,
858 EFFECT_CMD_OFFLOAD,
859 sizeof(effect_offload_param_t),
860 &cmd,
861 &size,
862 &cmdStatus);
863 if (status == NO_ERROR) {
864 status = cmdStatus;
865 }
866 mOffloaded = (status == NO_ERROR) ? offloaded : false;
867 } else {
868 if (offloaded) {
869 status = INVALID_OPERATION;
870 }
871 mOffloaded = false;
872 }
873 ALOGV("setOffloaded() offloaded %d io %d status %d", offloaded, io, status);
874 return status;
875}
876
877bool AudioFlinger::EffectModule::isOffloaded() const
878{
879 Mutex::Autolock _l(mLock);
880 return mOffloaded;
881}
882
Marco Nelissenb2208842014-02-07 14:00:50 -0800883String8 effectFlagsToString(uint32_t flags) {
884 String8 s;
885
886 s.append("conn. mode: ");
887 switch (flags & EFFECT_FLAG_TYPE_MASK) {
888 case EFFECT_FLAG_TYPE_INSERT: s.append("insert"); break;
889 case EFFECT_FLAG_TYPE_AUXILIARY: s.append("auxiliary"); break;
890 case EFFECT_FLAG_TYPE_REPLACE: s.append("replace"); break;
891 case EFFECT_FLAG_TYPE_PRE_PROC: s.append("preproc"); break;
892 case EFFECT_FLAG_TYPE_POST_PROC: s.append("postproc"); break;
893 default: s.append("unknown/reserved"); break;
894 }
895 s.append(", ");
896
897 s.append("insert pref: ");
898 switch (flags & EFFECT_FLAG_INSERT_MASK) {
899 case EFFECT_FLAG_INSERT_ANY: s.append("any"); break;
900 case EFFECT_FLAG_INSERT_FIRST: s.append("first"); break;
901 case EFFECT_FLAG_INSERT_LAST: s.append("last"); break;
902 case EFFECT_FLAG_INSERT_EXCLUSIVE: s.append("exclusive"); break;
903 default: s.append("unknown/reserved"); break;
904 }
905 s.append(", ");
906
907 s.append("volume mgmt: ");
908 switch (flags & EFFECT_FLAG_VOLUME_MASK) {
909 case EFFECT_FLAG_VOLUME_NONE: s.append("none"); break;
910 case EFFECT_FLAG_VOLUME_CTRL: s.append("implements control"); break;
911 case EFFECT_FLAG_VOLUME_IND: s.append("requires indication"); break;
912 default: s.append("unknown/reserved"); break;
913 }
914 s.append(", ");
915
916 uint32_t devind = flags & EFFECT_FLAG_DEVICE_MASK;
917 if (devind) {
918 s.append("device indication: ");
919 switch (devind) {
920 case EFFECT_FLAG_DEVICE_IND: s.append("requires updates"); break;
921 default: s.append("unknown/reserved"); break;
922 }
923 s.append(", ");
924 }
925
926 s.append("input mode: ");
927 switch (flags & EFFECT_FLAG_INPUT_MASK) {
928 case EFFECT_FLAG_INPUT_DIRECT: s.append("direct"); break;
929 case EFFECT_FLAG_INPUT_PROVIDER: s.append("provider"); break;
930 case EFFECT_FLAG_INPUT_BOTH: s.append("direct+provider"); break;
931 default: s.append("not set"); break;
932 }
933 s.append(", ");
934
935 s.append("output mode: ");
936 switch (flags & EFFECT_FLAG_OUTPUT_MASK) {
937 case EFFECT_FLAG_OUTPUT_DIRECT: s.append("direct"); break;
938 case EFFECT_FLAG_OUTPUT_PROVIDER: s.append("provider"); break;
939 case EFFECT_FLAG_OUTPUT_BOTH: s.append("direct+provider"); break;
940 default: s.append("not set"); break;
941 }
942 s.append(", ");
943
944 uint32_t accel = flags & EFFECT_FLAG_HW_ACC_MASK;
945 if (accel) {
946 s.append("hardware acceleration: ");
947 switch (accel) {
948 case EFFECT_FLAG_HW_ACC_SIMPLE: s.append("non-tunneled"); break;
949 case EFFECT_FLAG_HW_ACC_TUNNEL: s.append("tunneled"); break;
950 default: s.append("unknown/reserved"); break;
951 }
952 s.append(", ");
953 }
954
955 uint32_t modeind = flags & EFFECT_FLAG_AUDIO_MODE_MASK;
956 if (modeind) {
957 s.append("mode indication: ");
958 switch (modeind) {
959 case EFFECT_FLAG_AUDIO_MODE_IND: s.append("required"); break;
960 default: s.append("unknown/reserved"); break;
961 }
962 s.append(", ");
963 }
964
965 uint32_t srcind = flags & EFFECT_FLAG_AUDIO_SOURCE_MASK;
966 if (srcind) {
967 s.append("source indication: ");
968 switch (srcind) {
969 case EFFECT_FLAG_AUDIO_SOURCE_IND: s.append("required"); break;
970 default: s.append("unknown/reserved"); break;
971 }
972 s.append(", ");
973 }
974
975 if (flags & EFFECT_FLAG_OFFLOAD_MASK) {
976 s.append("offloadable, ");
977 }
978
979 int len = s.length();
980 if (s.length() > 2) {
981 char *str = s.lockBuffer(len);
982 s.unlockBuffer(len - 2);
983 }
984 return s;
985}
986
987
Glenn Kasten0f11b512014-01-31 16:18:54 -0800988void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args __unused)
Eric Laurentca7cc822012-11-19 14:55:58 -0800989{
990 const size_t SIZE = 256;
991 char buffer[SIZE];
992 String8 result;
993
994 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
995 result.append(buffer);
996
997 bool locked = AudioFlinger::dumpTryLock(mLock);
998 // failed to lock - AudioFlinger is probably deadlocked
999 if (!locked) {
1000 result.append("\t\tCould not lock Fx mutex:\n");
1001 }
1002
1003 result.append("\t\tSession Status State Engine:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001004 snprintf(buffer, SIZE, "\t\t%05d %03d %03d %p\n",
1005 mSessionId, mStatus, mState, mEffectInterface);
Eric Laurentca7cc822012-11-19 14:55:58 -08001006 result.append(buffer);
1007
1008 result.append("\t\tDescriptor:\n");
1009 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
1010 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
1011 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
1012 mDescriptor.uuid.node[2],
1013 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
1014 result.append(buffer);
1015 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
1016 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
1017 mDescriptor.type.timeHiAndVersion,
1018 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
1019 mDescriptor.type.node[2],
1020 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
1021 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001022 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X (%s)\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001023 mDescriptor.apiVersion,
Marco Nelissenb2208842014-02-07 14:00:50 -08001024 mDescriptor.flags,
1025 effectFlagsToString(mDescriptor.flags).string());
Eric Laurentca7cc822012-11-19 14:55:58 -08001026 result.append(buffer);
1027 snprintf(buffer, SIZE, "\t\t- name: %s\n",
1028 mDescriptor.name);
1029 result.append(buffer);
1030 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
1031 mDescriptor.implementor);
1032 result.append(buffer);
1033
1034 result.append("\t\t- Input configuration:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001035 result.append("\t\t\tFrames Smp rate Channels Format Buffer\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001036 snprintf(buffer, SIZE, "\t\t\t%05zu %05d %08x %6d (%s) %p\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001037 mConfig.inputCfg.buffer.frameCount,
1038 mConfig.inputCfg.samplingRate,
1039 mConfig.inputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -08001040 mConfig.inputCfg.format,
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001041 formatToString((audio_format_t)mConfig.inputCfg.format),
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001042 mConfig.inputCfg.buffer.raw);
Eric Laurentca7cc822012-11-19 14:55:58 -08001043 result.append(buffer);
1044
1045 result.append("\t\t- Output configuration:\n");
1046 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001047 snprintf(buffer, SIZE, "\t\t\t%p %05zu %05d %08x %d (%s)\n",
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001048 mConfig.outputCfg.buffer.raw,
Eric Laurentca7cc822012-11-19 14:55:58 -08001049 mConfig.outputCfg.buffer.frameCount,
1050 mConfig.outputCfg.samplingRate,
1051 mConfig.outputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -08001052 mConfig.outputCfg.format,
1053 formatToString((audio_format_t)mConfig.outputCfg.format));
Eric Laurentca7cc822012-11-19 14:55:58 -08001054 result.append(buffer);
1055
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001056 snprintf(buffer, SIZE, "\t\t%zu Clients:\n", mHandles.size());
Eric Laurentca7cc822012-11-19 14:55:58 -08001057 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001058 result.append("\t\t\t Pid Priority Ctrl Locked client server\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001059 for (size_t i = 0; i < mHandles.size(); ++i) {
1060 EffectHandle *handle = mHandles[i];
1061 if (handle != NULL && !handle->destroyed_l()) {
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001062 handle->dumpToBuffer(buffer, SIZE);
Eric Laurentca7cc822012-11-19 14:55:58 -08001063 result.append(buffer);
1064 }
1065 }
1066
Eric Laurentca7cc822012-11-19 14:55:58 -08001067 write(fd, result.string(), result.length());
1068
1069 if (locked) {
1070 mLock.unlock();
1071 }
1072}
1073
1074// ----------------------------------------------------------------------------
1075// EffectHandle implementation
1076// ----------------------------------------------------------------------------
1077
1078#undef LOG_TAG
1079#define LOG_TAG "AudioFlinger::EffectHandle"
1080
1081AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
1082 const sp<AudioFlinger::Client>& client,
1083 const sp<IEffectClient>& effectClient,
1084 int32_t priority)
1085 : BnEffect(),
1086 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
1087 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
1088{
1089 ALOGV("constructor %p", this);
1090
1091 if (client == 0) {
1092 return;
1093 }
1094 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
1095 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
Glenn Kastene75da402013-11-20 13:54:52 -08001096 if (mCblkMemory == 0 ||
1097 (mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer())) == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001098 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE +
1099 sizeof(effect_param_cblk_t));
Glenn Kastene75da402013-11-20 13:54:52 -08001100 mCblkMemory.clear();
Eric Laurentca7cc822012-11-19 14:55:58 -08001101 return;
1102 }
Glenn Kastene75da402013-11-20 13:54:52 -08001103 new(mCblk) effect_param_cblk_t();
1104 mBuffer = (uint8_t *)mCblk + bufOffset;
Eric Laurentca7cc822012-11-19 14:55:58 -08001105}
1106
1107AudioFlinger::EffectHandle::~EffectHandle()
1108{
1109 ALOGV("Destructor %p", this);
1110
1111 if (mEffect == 0) {
1112 mDestroyed = true;
1113 return;
1114 }
1115 mEffect->lock();
1116 mDestroyed = true;
1117 mEffect->unlock();
1118 disconnect(false);
1119}
1120
Glenn Kastene75da402013-11-20 13:54:52 -08001121status_t AudioFlinger::EffectHandle::initCheck()
1122{
1123 return mClient == 0 || mCblkMemory != 0 ? OK : NO_MEMORY;
1124}
1125
Eric Laurentca7cc822012-11-19 14:55:58 -08001126status_t AudioFlinger::EffectHandle::enable()
1127{
1128 ALOGV("enable %p", this);
1129 if (!mHasControl) {
1130 return INVALID_OPERATION;
1131 }
1132 if (mEffect == 0) {
1133 return DEAD_OBJECT;
1134 }
1135
1136 if (mEnabled) {
1137 return NO_ERROR;
1138 }
1139
1140 mEnabled = true;
1141
1142 sp<ThreadBase> thread = mEffect->thread().promote();
1143 if (thread != 0) {
1144 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
1145 }
1146
1147 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
1148 if (mEffect->suspended()) {
1149 return NO_ERROR;
1150 }
1151
1152 status_t status = mEffect->setEnabled(true);
1153 if (status != NO_ERROR) {
1154 if (thread != 0) {
1155 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1156 }
1157 mEnabled = false;
Eric Laurent813e2a72013-08-31 12:59:48 -07001158 } else {
Eric Laurent59fe0102013-09-27 18:48:26 -07001159 if (thread != 0) {
1160 if (thread->type() == ThreadBase::OFFLOAD) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001161 PlaybackThread *t = (PlaybackThread *)thread.get();
Eric Laurent59fe0102013-09-27 18:48:26 -07001162 Mutex::Autolock _l(t->mLock);
1163 t->broadcast_l();
Eric Laurent813e2a72013-08-31 12:59:48 -07001164 }
Eric Laurent59fe0102013-09-27 18:48:26 -07001165 if (!mEffect->isOffloadable()) {
1166 if (thread->type() == ThreadBase::OFFLOAD) {
1167 PlaybackThread *t = (PlaybackThread *)thread.get();
1168 t->invalidateTracks(AUDIO_STREAM_MUSIC);
1169 }
1170 if (mEffect->sessionId() == AUDIO_SESSION_OUTPUT_MIX) {
1171 thread->mAudioFlinger->onNonOffloadableGlobalEffectEnable();
1172 }
Eric Laurent813e2a72013-08-31 12:59:48 -07001173 }
1174 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001175 }
1176 return status;
1177}
1178
1179status_t AudioFlinger::EffectHandle::disable()
1180{
1181 ALOGV("disable %p", this);
1182 if (!mHasControl) {
1183 return INVALID_OPERATION;
1184 }
1185 if (mEffect == 0) {
1186 return DEAD_OBJECT;
1187 }
1188
1189 if (!mEnabled) {
1190 return NO_ERROR;
1191 }
1192 mEnabled = false;
1193
1194 if (mEffect->suspended()) {
1195 return NO_ERROR;
1196 }
1197
1198 status_t status = mEffect->setEnabled(false);
1199
1200 sp<ThreadBase> thread = mEffect->thread().promote();
1201 if (thread != 0) {
1202 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
Eric Laurent59fe0102013-09-27 18:48:26 -07001203 if (thread->type() == ThreadBase::OFFLOAD) {
1204 PlaybackThread *t = (PlaybackThread *)thread.get();
1205 Mutex::Autolock _l(t->mLock);
1206 t->broadcast_l();
1207 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001208 }
1209
1210 return status;
1211}
1212
1213void AudioFlinger::EffectHandle::disconnect()
1214{
1215 disconnect(true);
1216}
1217
1218void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
1219{
1220 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1221 if (mEffect == 0) {
1222 return;
1223 }
1224 // restore suspended effects if the disconnected handle was enabled and the last one.
1225 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
1226 sp<ThreadBase> thread = mEffect->thread().promote();
1227 if (thread != 0) {
1228 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1229 }
1230 }
1231
1232 // release sp on module => module destructor can be called now
1233 mEffect.clear();
1234 if (mClient != 0) {
1235 if (mCblk != NULL) {
1236 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
1237 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
1238 }
1239 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Eric Laurent021cf962014-05-13 10:18:14 -07001240 // Client destructor must run with AudioFlinger client mutex locked
1241 Mutex::Autolock _l(mClient->audioFlinger()->mClientLock);
Eric Laurentca7cc822012-11-19 14:55:58 -08001242 mClient.clear();
1243 }
1244}
1245
1246status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
1247 uint32_t cmdSize,
1248 void *pCmdData,
1249 uint32_t *replySize,
1250 void *pReplyData)
1251{
1252 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
1253 cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
1254
1255 // only get parameter command is permitted for applications not controlling the effect
1256 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1257 return INVALID_OPERATION;
1258 }
1259 if (mEffect == 0) {
1260 return DEAD_OBJECT;
1261 }
1262 if (mClient == 0) {
1263 return INVALID_OPERATION;
1264 }
1265
1266 // handle commands that are not forwarded transparently to effect engine
1267 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
1268 // No need to trylock() here as this function is executed in the binder thread serving a
1269 // particular client process: no risk to block the whole media server process or mixer
1270 // threads if we are stuck here
1271 Mutex::Autolock _l(mCblk->lock);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001272
1273 // keep local copy of index in case of client corruption b/32220769
1274 const uint32_t clientIndex = mCblk->clientIndex;
1275 const uint32_t serverIndex = mCblk->serverIndex;
1276 if (clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1277 serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001278 mCblk->serverIndex = 0;
1279 mCblk->clientIndex = 0;
1280 return BAD_VALUE;
1281 }
1282 status_t status = NO_ERROR;
Andy Hungdd79ccd2016-11-15 17:19:58 -08001283 effect_param_t *param = NULL;
1284 for (uint32_t index = serverIndex; index < clientIndex;) {
1285 int *p = (int *)(mBuffer + index);
1286 const int size = *p++;
1287 if (size < 0
1288 || size > EFFECT_PARAM_BUFFER_SIZE
1289 || ((uint8_t *)p + size) > mBuffer + clientIndex) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001290 ALOGW("command(): invalid parameter block size");
Andy Hungdd79ccd2016-11-15 17:19:58 -08001291 status = BAD_VALUE;
Eric Laurentca7cc822012-11-19 14:55:58 -08001292 break;
1293 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001294
1295 // copy to local memory in case of client corruption b/32220769
1296 param = (effect_param_t *)realloc(param, size);
1297 if (param == NULL) {
1298 ALOGW("command(): out of memory");
1299 status = NO_MEMORY;
1300 break;
Eric Laurentca7cc822012-11-19 14:55:58 -08001301 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001302 memcpy(param, p, size);
1303
1304 int reply = 0;
1305 uint32_t rsize = sizeof(reply);
Eric Laurentca7cc822012-11-19 14:55:58 -08001306 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
Andy Hungdd79ccd2016-11-15 17:19:58 -08001307 size,
1308 param,
Eric Laurentca7cc822012-11-19 14:55:58 -08001309 &rsize,
1310 &reply);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001311
1312 // verify shared memory: server index shouldn't change; client index can't go back.
1313 if (serverIndex != mCblk->serverIndex
1314 || clientIndex > mCblk->clientIndex) {
1315 android_errorWriteLog(0x534e4554, "32220769");
1316 status = BAD_VALUE;
1317 break;
1318 }
1319
Eric Laurentca7cc822012-11-19 14:55:58 -08001320 // stop at first error encountered
1321 if (ret != NO_ERROR) {
1322 status = ret;
1323 *(int *)pReplyData = reply;
1324 break;
1325 } else if (reply != NO_ERROR) {
1326 *(int *)pReplyData = reply;
1327 break;
1328 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001329 index += size;
Eric Laurentca7cc822012-11-19 14:55:58 -08001330 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001331 free(param);
Eric Laurentca7cc822012-11-19 14:55:58 -08001332 mCblk->serverIndex = 0;
1333 mCblk->clientIndex = 0;
1334 return status;
1335 } else if (cmdCode == EFFECT_CMD_ENABLE) {
1336 *(int *)pReplyData = NO_ERROR;
1337 return enable();
1338 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1339 *(int *)pReplyData = NO_ERROR;
1340 return disable();
1341 }
1342
1343 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1344}
1345
1346void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1347{
1348 ALOGV("setControl %p control %d", this, hasControl);
1349
1350 mHasControl = hasControl;
1351 mEnabled = enabled;
1352
1353 if (signal && mEffectClient != 0) {
1354 mEffectClient->controlStatusChanged(hasControl);
1355 }
1356}
1357
1358void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1359 uint32_t cmdSize,
1360 void *pCmdData,
1361 uint32_t replySize,
1362 void *pReplyData)
1363{
1364 if (mEffectClient != 0) {
1365 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1366 }
1367}
1368
1369
1370
1371void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1372{
1373 if (mEffectClient != 0) {
1374 mEffectClient->enableStatusChanged(enabled);
1375 }
1376}
1377
1378status_t AudioFlinger::EffectHandle::onTransact(
1379 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1380{
1381 return BnEffect::onTransact(code, data, reply, flags);
1382}
1383
1384
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001385void AudioFlinger::EffectHandle::dumpToBuffer(char* buffer, size_t size)
Eric Laurentca7cc822012-11-19 14:55:58 -08001386{
1387 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1388
Marco Nelissenb2208842014-02-07 14:00:50 -08001389 snprintf(buffer, size, "\t\t\t%5d %5d %3s %3s %5u %5u\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001390 (mClient == 0) ? getpid_cached : mClient->pid(),
1391 mPriority,
Marco Nelissenb2208842014-02-07 14:00:50 -08001392 mHasControl ? "yes" : "no",
1393 locked ? "yes" : "no",
Eric Laurentca7cc822012-11-19 14:55:58 -08001394 mCblk ? mCblk->clientIndex : 0,
1395 mCblk ? mCblk->serverIndex : 0
1396 );
1397
1398 if (locked) {
1399 mCblk->lock.unlock();
1400 }
1401}
1402
1403#undef LOG_TAG
1404#define LOG_TAG "AudioFlinger::EffectChain"
1405
1406AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
1407 int sessionId)
1408 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1409 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001410 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX), mForceVolume(false)
Eric Laurentca7cc822012-11-19 14:55:58 -08001411{
1412 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1413 if (thread == NULL) {
1414 return;
1415 }
1416 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1417 thread->frameCount();
1418}
1419
1420AudioFlinger::EffectChain::~EffectChain()
1421{
1422 if (mOwnInBuffer) {
1423 delete mInBuffer;
1424 }
1425
1426}
1427
1428// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1429sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1430 effect_descriptor_t *descriptor)
1431{
1432 size_t size = mEffects.size();
1433
1434 for (size_t i = 0; i < size; i++) {
1435 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1436 return mEffects[i];
1437 }
1438 }
1439 return 0;
1440}
1441
1442// getEffectFromId_l() must be called with ThreadBase::mLock held
1443sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1444{
1445 size_t size = mEffects.size();
1446
1447 for (size_t i = 0; i < size; i++) {
1448 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1449 if (id == 0 || mEffects[i]->id() == id) {
1450 return mEffects[i];
1451 }
1452 }
1453 return 0;
1454}
1455
1456// getEffectFromType_l() must be called with ThreadBase::mLock held
1457sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1458 const effect_uuid_t *type)
1459{
1460 size_t size = mEffects.size();
1461
1462 for (size_t i = 0; i < size; i++) {
1463 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1464 return mEffects[i];
1465 }
1466 }
1467 return 0;
1468}
1469
1470void AudioFlinger::EffectChain::clearInputBuffer()
1471{
1472 Mutex::Autolock _l(mLock);
1473 sp<ThreadBase> thread = mThread.promote();
1474 if (thread == 0) {
1475 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1476 return;
1477 }
1478 clearInputBuffer_l(thread);
1479}
1480
1481// Must be called with EffectChain::mLock locked
1482void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1483{
Ricardo Garcia322bab22014-08-06 11:43:46 -07001484 // TODO: This will change in the future, depending on multichannel
1485 // and sample format changes for effects.
1486 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1487 // (4 bytes frame size)
Ricardo Garcia726b6a72014-08-11 12:04:54 -07001488 const size_t frameSize =
1489 audio_bytes_per_sample(AUDIO_FORMAT_PCM_16_BIT) * min(FCC_2, thread->channelCount());
Ricardo Garcia322bab22014-08-06 11:43:46 -07001490 memset(mInBuffer, 0, thread->frameCount() * frameSize);
Eric Laurentca7cc822012-11-19 14:55:58 -08001491}
1492
1493// Must be called with EffectChain::mLock locked
1494void AudioFlinger::EffectChain::process_l()
1495{
1496 sp<ThreadBase> thread = mThread.promote();
1497 if (thread == 0) {
1498 ALOGW("process_l(): cannot promote mixer thread");
1499 return;
1500 }
1501 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1502 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001503 // never process effects when:
1504 // - on an OFFLOAD thread
1505 // - no more tracks are on the session and the effect tail has been rendered
1506 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001507 if (!isGlobalSession) {
1508 bool tracksOnSession = (trackCnt() != 0);
1509
1510 if (!tracksOnSession && mTailBufferCount == 0) {
1511 doProcess = false;
1512 }
1513
1514 if (activeTrackCnt() == 0) {
1515 // if no track is active and the effect tail has not been rendered,
1516 // the input buffer must be cleared here as the mixer process will not do it
1517 if (tracksOnSession || mTailBufferCount > 0) {
1518 clearInputBuffer_l(thread);
1519 if (mTailBufferCount > 0) {
1520 mTailBufferCount--;
1521 }
1522 }
1523 }
1524 }
1525
1526 size_t size = mEffects.size();
1527 if (doProcess) {
1528 for (size_t i = 0; i < size; i++) {
1529 mEffects[i]->process();
1530 }
1531 }
1532 for (size_t i = 0; i < size; i++) {
1533 mEffects[i]->updateState();
1534 }
1535}
1536
1537// addEffect_l() must be called with PlaybackThread::mLock held
1538status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1539{
1540 effect_descriptor_t desc = effect->desc();
1541 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1542
1543 Mutex::Autolock _l(mLock);
1544 effect->setChain(this);
1545 sp<ThreadBase> thread = mThread.promote();
1546 if (thread == 0) {
1547 return NO_INIT;
1548 }
1549 effect->setThread(thread);
1550
1551 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1552 // Auxiliary effects are inserted at the beginning of mEffects vector as
1553 // they are processed first and accumulated in chain input buffer
1554 mEffects.insertAt(effect, 0);
1555
1556 // the input buffer for auxiliary effect contains mono samples in
1557 // 32 bit format. This is to avoid saturation in AudoMixer
1558 // accumulation stage. Saturation is done in EffectModule::process() before
1559 // calling the process in effect engine
1560 size_t numSamples = thread->frameCount();
1561 int32_t *buffer = new int32_t[numSamples];
1562 memset(buffer, 0, numSamples * sizeof(int32_t));
1563 effect->setInBuffer((int16_t *)buffer);
1564 // auxiliary effects output samples to chain input buffer for further processing
1565 // by insert effects
1566 effect->setOutBuffer(mInBuffer);
1567 } else {
1568 // Insert effects are inserted at the end of mEffects vector as they are processed
1569 // after track and auxiliary effects.
1570 // Insert effect order as a function of indicated preference:
1571 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1572 // another effect is present
1573 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1574 // last effect claiming first position
1575 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1576 // first effect claiming last position
1577 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1578 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1579 // already present
1580
1581 size_t size = mEffects.size();
1582 size_t idx_insert = size;
1583 ssize_t idx_insert_first = -1;
1584 ssize_t idx_insert_last = -1;
1585
1586 for (size_t i = 0; i < size; i++) {
1587 effect_descriptor_t d = mEffects[i]->desc();
1588 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1589 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1590 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1591 // check invalid effect chaining combinations
1592 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1593 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1594 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1595 desc.name, d.name);
1596 return INVALID_OPERATION;
1597 }
1598 // remember position of first insert effect and by default
1599 // select this as insert position for new effect
1600 if (idx_insert == size) {
1601 idx_insert = i;
1602 }
1603 // remember position of last insert effect claiming
1604 // first position
1605 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1606 idx_insert_first = i;
1607 }
1608 // remember position of first insert effect claiming
1609 // last position
1610 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1611 idx_insert_last == -1) {
1612 idx_insert_last = i;
1613 }
1614 }
1615 }
1616
1617 // modify idx_insert from first position if needed
1618 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1619 if (idx_insert_last != -1) {
1620 idx_insert = idx_insert_last;
1621 } else {
1622 idx_insert = size;
1623 }
1624 } else {
1625 if (idx_insert_first != -1) {
1626 idx_insert = idx_insert_first + 1;
1627 }
1628 }
1629
1630 // always read samples from chain input buffer
1631 effect->setInBuffer(mInBuffer);
1632
1633 // if last effect in the chain, output samples to chain
1634 // output buffer, otherwise to chain input buffer
1635 if (idx_insert == size) {
1636 if (idx_insert != 0) {
1637 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1638 mEffects[idx_insert-1]->configure();
1639 }
1640 effect->setOutBuffer(mOutBuffer);
1641 } else {
1642 effect->setOutBuffer(mInBuffer);
1643 }
1644 mEffects.insertAt(effect, idx_insert);
1645
1646 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this,
1647 idx_insert);
1648 }
1649 effect->configure();
1650 return NO_ERROR;
1651}
1652
1653// removeEffect_l() must be called with PlaybackThread::mLock held
1654size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
1655{
1656 Mutex::Autolock _l(mLock);
1657 size_t size = mEffects.size();
1658 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1659
1660 for (size_t i = 0; i < size; i++) {
1661 if (effect == mEffects[i]) {
1662 // calling stop here will remove pre-processing effect from the audio HAL.
1663 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1664 // the middle of a read from audio HAL
1665 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1666 mEffects[i]->state() == EffectModule::STOPPING) {
1667 mEffects[i]->stop();
1668 }
1669 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1670 delete[] effect->inBuffer();
1671 } else {
1672 if (i == size - 1 && i != 0) {
1673 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1674 mEffects[i - 1]->configure();
1675 }
1676 }
1677 mEffects.removeAt(i);
1678 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(),
1679 this, i);
1680 break;
1681 }
1682 }
1683
1684 return mEffects.size();
1685}
1686
1687// setDevice_l() must be called with PlaybackThread::mLock held
1688void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1689{
1690 size_t size = mEffects.size();
1691 for (size_t i = 0; i < size; i++) {
1692 mEffects[i]->setDevice(device);
1693 }
1694}
1695
1696// setMode_l() must be called with PlaybackThread::mLock held
1697void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1698{
1699 size_t size = mEffects.size();
1700 for (size_t i = 0; i < size; i++) {
1701 mEffects[i]->setMode(mode);
1702 }
1703}
1704
1705// setAudioSource_l() must be called with PlaybackThread::mLock held
1706void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1707{
1708 size_t size = mEffects.size();
1709 for (size_t i = 0; i < size; i++) {
1710 mEffects[i]->setAudioSource(source);
1711 }
1712}
1713
1714// setVolume_l() must be called with PlaybackThread::mLock held
1715bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
1716{
1717 uint32_t newLeft = *left;
1718 uint32_t newRight = *right;
1719 bool hasControl = false;
1720 int ctrlIdx = -1;
1721 size_t size = mEffects.size();
1722
1723 // first update volume controller
1724 for (size_t i = size; i > 0; i--) {
1725 if (mEffects[i - 1]->isProcessEnabled() &&
1726 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1727 ctrlIdx = i - 1;
1728 hasControl = true;
1729 break;
1730 }
1731 }
1732
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001733 if (!isVolumeForced() && ctrlIdx == mVolumeCtrlIdx &&
1734 *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001735 if (hasControl) {
1736 *left = mNewLeftVolume;
1737 *right = mNewRightVolume;
1738 }
1739 return hasControl;
1740 }
1741
1742 mVolumeCtrlIdx = ctrlIdx;
1743 mLeftVolume = newLeft;
1744 mRightVolume = newRight;
1745
1746 // second get volume update from volume controller
1747 if (ctrlIdx >= 0) {
1748 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1749 mNewLeftVolume = newLeft;
1750 mNewRightVolume = newRight;
1751 }
1752 // then indicate volume to all other effects in chain.
1753 // Pass altered volume to effects before volume controller
1754 // and requested volume to effects after controller
1755 uint32_t lVol = newLeft;
1756 uint32_t rVol = newRight;
1757
1758 for (size_t i = 0; i < size; i++) {
1759 if ((int)i == ctrlIdx) {
1760 continue;
1761 }
1762 // this also works for ctrlIdx == -1 when there is no volume controller
1763 if ((int)i > ctrlIdx) {
1764 lVol = *left;
1765 rVol = *right;
1766 }
1767 mEffects[i]->setVolume(&lVol, &rVol, false);
1768 }
1769 *left = newLeft;
1770 *right = newRight;
1771
1772 return hasControl;
1773}
1774
Eric Laurent1b928682014-10-02 19:41:47 -07001775void AudioFlinger::EffectChain::syncHalEffectsState()
1776{
1777 Mutex::Autolock _l(mLock);
1778 for (size_t i = 0; i < mEffects.size(); i++) {
1779 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1780 mEffects[i]->state() == EffectModule::STOPPING) {
1781 mEffects[i]->addEffectToHal_l();
1782 }
1783 }
1784}
1785
Eric Laurentca7cc822012-11-19 14:55:58 -08001786void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1787{
1788 const size_t SIZE = 256;
1789 char buffer[SIZE];
1790 String8 result;
1791
Marco Nelissenb2208842014-02-07 14:00:50 -08001792 size_t numEffects = mEffects.size();
1793 snprintf(buffer, SIZE, " %d effects for session %d\n", numEffects, mSessionId);
Eric Laurentca7cc822012-11-19 14:55:58 -08001794 result.append(buffer);
1795
Marco Nelissenb2208842014-02-07 14:00:50 -08001796 if (numEffects) {
1797 bool locked = AudioFlinger::dumpTryLock(mLock);
1798 // failed to lock - AudioFlinger is probably deadlocked
1799 if (!locked) {
1800 result.append("\tCould not lock mutex:\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001801 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001802
Marco Nelissenb2208842014-02-07 14:00:50 -08001803 result.append("\tIn buffer Out buffer Active tracks:\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001804 snprintf(buffer, SIZE, "\t%p %p %d\n",
1805 mInBuffer,
1806 mOutBuffer,
Marco Nelissenb2208842014-02-07 14:00:50 -08001807 mActiveTrackCnt);
1808 result.append(buffer);
1809 write(fd, result.string(), result.size());
1810
1811 for (size_t i = 0; i < numEffects; ++i) {
1812 sp<EffectModule> effect = mEffects[i];
1813 if (effect != 0) {
1814 effect->dump(fd, args);
1815 }
1816 }
1817
1818 if (locked) {
1819 mLock.unlock();
1820 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001821 }
1822}
1823
1824// must be called with ThreadBase::mLock held
1825void AudioFlinger::EffectChain::setEffectSuspended_l(
1826 const effect_uuid_t *type, bool suspend)
1827{
1828 sp<SuspendedEffectDesc> desc;
1829 // use effect type UUID timelow as key as there is no real risk of identical
1830 // timeLow fields among effect type UUIDs.
1831 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1832 if (suspend) {
1833 if (index >= 0) {
1834 desc = mSuspendedEffects.valueAt(index);
1835 } else {
1836 desc = new SuspendedEffectDesc();
1837 desc->mType = *type;
1838 mSuspendedEffects.add(type->timeLow, desc);
1839 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1840 }
1841 if (desc->mRefCount++ == 0) {
1842 sp<EffectModule> effect = getEffectIfEnabled(type);
1843 if (effect != 0) {
1844 desc->mEffect = effect;
1845 effect->setSuspended(true);
1846 effect->setEnabled(false);
1847 }
1848 }
1849 } else {
1850 if (index < 0) {
1851 return;
1852 }
1853 desc = mSuspendedEffects.valueAt(index);
1854 if (desc->mRefCount <= 0) {
1855 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1856 desc->mRefCount = 1;
1857 }
1858 if (--desc->mRefCount == 0) {
1859 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1860 if (desc->mEffect != 0) {
1861 sp<EffectModule> effect = desc->mEffect.promote();
1862 if (effect != 0) {
1863 effect->setSuspended(false);
1864 effect->lock();
1865 EffectHandle *handle = effect->controlHandle_l();
1866 if (handle != NULL && !handle->destroyed_l()) {
1867 effect->setEnabled_l(handle->enabled());
1868 }
1869 effect->unlock();
1870 }
1871 desc->mEffect.clear();
1872 }
1873 mSuspendedEffects.removeItemsAt(index);
1874 }
1875 }
1876}
1877
1878// must be called with ThreadBase::mLock held
1879void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1880{
1881 sp<SuspendedEffectDesc> desc;
1882
1883 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1884 if (suspend) {
1885 if (index >= 0) {
1886 desc = mSuspendedEffects.valueAt(index);
1887 } else {
1888 desc = new SuspendedEffectDesc();
1889 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1890 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1891 }
1892 if (desc->mRefCount++ == 0) {
1893 Vector< sp<EffectModule> > effects;
1894 getSuspendEligibleEffects(effects);
1895 for (size_t i = 0; i < effects.size(); i++) {
1896 setEffectSuspended_l(&effects[i]->desc().type, true);
1897 }
1898 }
1899 } else {
1900 if (index < 0) {
1901 return;
1902 }
1903 desc = mSuspendedEffects.valueAt(index);
1904 if (desc->mRefCount <= 0) {
1905 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
1906 desc->mRefCount = 1;
1907 }
1908 if (--desc->mRefCount == 0) {
1909 Vector<const effect_uuid_t *> types;
1910 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
1911 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
1912 continue;
1913 }
1914 types.add(&mSuspendedEffects.valueAt(i)->mType);
1915 }
1916 for (size_t i = 0; i < types.size(); i++) {
1917 setEffectSuspended_l(types[i], false);
1918 }
1919 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
1920 mSuspendedEffects.keyAt(index));
1921 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
1922 }
1923 }
1924}
1925
1926
1927// The volume effect is used for automated tests only
1928#ifndef OPENSL_ES_H_
1929static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
1930 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
1931const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
1932#endif //OPENSL_ES_H_
1933
1934bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
1935{
1936 // auxiliary effects and visualizer are never suspended on output mix
1937 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
1938 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
1939 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
1940 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
1941 return false;
1942 }
1943 return true;
1944}
1945
1946void AudioFlinger::EffectChain::getSuspendEligibleEffects(
1947 Vector< sp<AudioFlinger::EffectModule> > &effects)
1948{
1949 effects.clear();
1950 for (size_t i = 0; i < mEffects.size(); i++) {
1951 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
1952 effects.add(mEffects[i]);
1953 }
1954 }
1955}
1956
1957sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
1958 const effect_uuid_t *type)
1959{
1960 sp<EffectModule> effect = getEffectFromType_l(type);
1961 return effect != 0 && effect->isEnabled() ? effect : 0;
1962}
1963
1964void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1965 bool enabled)
1966{
1967 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1968 if (enabled) {
1969 if (index < 0) {
1970 // if the effect is not suspend check if all effects are suspended
1971 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1972 if (index < 0) {
1973 return;
1974 }
1975 if (!isEffectEligibleForSuspend(effect->desc())) {
1976 return;
1977 }
1978 setEffectSuspended_l(&effect->desc().type, enabled);
1979 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1980 if (index < 0) {
1981 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
1982 return;
1983 }
1984 }
1985 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
1986 effect->desc().type.timeLow);
1987 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
1988 // if effect is requested to suspended but was not yet enabled, supend it now.
1989 if (desc->mEffect == 0) {
1990 desc->mEffect = effect;
1991 effect->setEnabled(false);
1992 effect->setSuspended(true);
1993 }
1994 } else {
1995 if (index < 0) {
1996 return;
1997 }
1998 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
1999 effect->desc().type.timeLow);
2000 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2001 desc->mEffect.clear();
2002 effect->setSuspended(false);
2003 }
2004}
2005
Eric Laurent5baf2af2013-09-12 17:37:00 -07002006bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07002007{
2008 Mutex::Autolock _l(mLock);
2009 size_t size = mEffects.size();
2010 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07002011 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07002012 return true;
2013 }
2014 }
2015 return false;
2016}
2017
Eric Laurentaaa44472014-09-12 17:41:50 -07002018void AudioFlinger::EffectChain::setThread(const sp<ThreadBase>& thread)
2019{
2020 Mutex::Autolock _l(mLock);
2021 mThread = thread;
2022 for (size_t i = 0; i < mEffects.size(); i++) {
2023 mEffects[i]->setThread(thread);
2024 }
2025}
2026
Eric Laurentca7cc822012-11-19 14:55:58 -08002027}; // namespace android