blob: 4678880222626066962a5a5a66a9ccdaa326581b [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
443status_t AudioFlinger::EffectModule::start()
444{
445 Mutex::Autolock _l(mLock);
446 return start_l();
447}
448
449status_t AudioFlinger::EffectModule::start_l()
450{
451 if (mEffectInterface == NULL) {
452 return NO_INIT;
453 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700454 if (mStatus != NO_ERROR) {
455 return mStatus;
456 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800457 status_t cmdStatus;
458 uint32_t size = sizeof(status_t);
459 status_t status = (*mEffectInterface)->command(mEffectInterface,
460 EFFECT_CMD_ENABLE,
461 0,
462 NULL,
463 &size,
464 &cmdStatus);
465 if (status == 0) {
466 status = cmdStatus;
467 }
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700468 if (status == 0) {
469 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
470 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
471 sp<ThreadBase> thread = mThread.promote();
472 if (thread != 0) {
473 audio_stream_t *stream = thread->stream();
474 if (stream != NULL) {
475 stream->add_audio_effect(stream, mEffectInterface);
476 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800477 }
478 }
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700479 sp<EffectChain> chain = mChain.promote();
480 if (chain != 0) {
481 chain->forceVolume();
482 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800483 }
484 return status;
485}
486
487status_t AudioFlinger::EffectModule::stop()
488{
489 Mutex::Autolock _l(mLock);
490 return stop_l();
491}
492
493status_t AudioFlinger::EffectModule::stop_l()
494{
495 if (mEffectInterface == NULL) {
496 return NO_INIT;
497 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700498 if (mStatus != NO_ERROR) {
499 return mStatus;
500 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800501 status_t cmdStatus = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800502 uint32_t size = sizeof(status_t);
503 status_t status = (*mEffectInterface)->command(mEffectInterface,
504 EFFECT_CMD_DISABLE,
505 0,
506 NULL,
507 &size,
508 &cmdStatus);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800509 if (status == NO_ERROR) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800510 status = cmdStatus;
511 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800512 if (status == NO_ERROR) {
513 status = remove_effect_from_hal_l();
514 }
515 return status;
516}
517
518status_t AudioFlinger::EffectModule::remove_effect_from_hal_l()
519{
520 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
521 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800522 sp<ThreadBase> thread = mThread.promote();
523 if (thread != 0) {
524 audio_stream_t *stream = thread->stream();
525 if (stream != NULL) {
526 stream->remove_audio_effect(stream, mEffectInterface);
527 }
528 }
529 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800530 return NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800531}
532
533status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
534 uint32_t cmdSize,
535 void *pCmdData,
536 uint32_t *replySize,
537 void *pReplyData)
538{
539 Mutex::Autolock _l(mLock);
540 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
541
542 if (mState == DESTROYED || mEffectInterface == NULL) {
543 return NO_INIT;
544 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700545 if (mStatus != NO_ERROR) {
546 return mStatus;
547 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800548 status_t status = (*mEffectInterface)->command(mEffectInterface,
549 cmdCode,
550 cmdSize,
551 pCmdData,
552 replySize,
553 pReplyData);
554 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
555 uint32_t size = (replySize == NULL) ? 0 : *replySize;
556 for (size_t i = 1; i < mHandles.size(); i++) {
557 EffectHandle *h = mHandles[i];
558 if (h != NULL && !h->destroyed_l()) {
559 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
560 }
561 }
562 }
563 return status;
564}
565
566status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
567{
568 Mutex::Autolock _l(mLock);
569 return setEnabled_l(enabled);
570}
571
572// must be called with EffectModule::mLock held
573status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
574{
575
576 ALOGV("setEnabled %p enabled %d", this, enabled);
577
578 if (enabled != isEnabled()) {
579 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
580 if (enabled && status != NO_ERROR) {
581 return status;
582 }
583
584 switch (mState) {
585 // going from disabled to enabled
586 case IDLE:
587 mState = STARTING;
588 break;
589 case STOPPED:
590 mState = RESTART;
591 break;
592 case STOPPING:
593 mState = ACTIVE;
594 break;
595
596 // going from enabled to disabled
597 case RESTART:
598 mState = STOPPED;
599 break;
600 case STARTING:
601 mState = IDLE;
602 break;
603 case ACTIVE:
604 mState = STOPPING;
605 break;
606 case DESTROYED:
607 return NO_ERROR; // simply ignore as we are being destroyed
608 }
609 for (size_t i = 1; i < mHandles.size(); i++) {
610 EffectHandle *h = mHandles[i];
611 if (h != NULL && !h->destroyed_l()) {
612 h->setEnabled(enabled);
613 }
614 }
615 }
616 return NO_ERROR;
617}
618
619bool AudioFlinger::EffectModule::isEnabled() const
620{
621 switch (mState) {
622 case RESTART:
623 case STARTING:
624 case ACTIVE:
625 return true;
626 case IDLE:
627 case STOPPING:
628 case STOPPED:
629 case DESTROYED:
630 default:
631 return false;
632 }
633}
634
635bool AudioFlinger::EffectModule::isProcessEnabled() const
636{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700637 if (mStatus != NO_ERROR) {
638 return false;
639 }
640
Eric Laurentca7cc822012-11-19 14:55:58 -0800641 switch (mState) {
642 case RESTART:
643 case ACTIVE:
644 case STOPPING:
645 case STOPPED:
646 return true;
647 case IDLE:
648 case STARTING:
649 case DESTROYED:
650 default:
651 return false;
652 }
653}
654
655status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
656{
657 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700658 if (mStatus != NO_ERROR) {
659 return mStatus;
660 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800661 status_t status = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800662 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
663 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
664 if (isProcessEnabled() &&
665 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
666 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
667 status_t cmdStatus;
668 uint32_t volume[2];
669 uint32_t *pVolume = NULL;
670 uint32_t size = sizeof(volume);
671 volume[0] = *left;
672 volume[1] = *right;
673 if (controller) {
674 pVolume = volume;
675 }
676 status = (*mEffectInterface)->command(mEffectInterface,
677 EFFECT_CMD_SET_VOLUME,
678 size,
679 volume,
680 &size,
681 pVolume);
682 if (controller && status == NO_ERROR && size == sizeof(volume)) {
683 *left = volume[0];
684 *right = volume[1];
685 }
686 }
687 return status;
688}
689
690status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
691{
692 if (device == AUDIO_DEVICE_NONE) {
693 return NO_ERROR;
694 }
695
696 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700697 if (mStatus != NO_ERROR) {
698 return mStatus;
699 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800700 status_t status = NO_ERROR;
Eric Laurent7e1139c2013-06-06 18:29:01 -0700701 if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800702 status_t cmdStatus;
703 uint32_t size = sizeof(status_t);
704 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
705 EFFECT_CMD_SET_INPUT_DEVICE;
706 status = (*mEffectInterface)->command(mEffectInterface,
707 cmd,
708 sizeof(uint32_t),
709 &device,
710 &size,
711 &cmdStatus);
712 }
713 return status;
714}
715
716status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
717{
718 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700719 if (mStatus != NO_ERROR) {
720 return mStatus;
721 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800722 status_t status = NO_ERROR;
723 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
724 status_t cmdStatus;
725 uint32_t size = sizeof(status_t);
726 status = (*mEffectInterface)->command(mEffectInterface,
727 EFFECT_CMD_SET_AUDIO_MODE,
728 sizeof(audio_mode_t),
729 &mode,
730 &size,
731 &cmdStatus);
732 if (status == NO_ERROR) {
733 status = cmdStatus;
734 }
735 }
736 return status;
737}
738
739status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
740{
741 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700742 if (mStatus != NO_ERROR) {
743 return mStatus;
744 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800745 status_t status = NO_ERROR;
746 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
747 uint32_t size = 0;
748 status = (*mEffectInterface)->command(mEffectInterface,
749 EFFECT_CMD_SET_AUDIO_SOURCE,
750 sizeof(audio_source_t),
751 &source,
752 &size,
753 NULL);
754 }
755 return status;
756}
757
758void AudioFlinger::EffectModule::setSuspended(bool suspended)
759{
760 Mutex::Autolock _l(mLock);
761 mSuspended = suspended;
762}
763
764bool AudioFlinger::EffectModule::suspended() const
765{
766 Mutex::Autolock _l(mLock);
767 return mSuspended;
768}
769
770bool AudioFlinger::EffectModule::purgeHandles()
771{
772 bool enabled = false;
773 Mutex::Autolock _l(mLock);
774 for (size_t i = 0; i < mHandles.size(); i++) {
775 EffectHandle *handle = mHandles[i];
776 if (handle != NULL && !handle->destroyed_l()) {
777 handle->effect().clear();
778 if (handle->hasControl()) {
779 enabled = handle->enabled();
780 }
781 }
782 }
783 return enabled;
784}
785
Eric Laurent5baf2af2013-09-12 17:37:00 -0700786status_t AudioFlinger::EffectModule::setOffloaded(bool offloaded, audio_io_handle_t io)
787{
788 Mutex::Autolock _l(mLock);
789 if (mStatus != NO_ERROR) {
790 return mStatus;
791 }
792 status_t status = NO_ERROR;
793 if ((mDescriptor.flags & EFFECT_FLAG_OFFLOAD_SUPPORTED) != 0) {
794 status_t cmdStatus;
795 uint32_t size = sizeof(status_t);
796 effect_offload_param_t cmd;
797
798 cmd.isOffload = offloaded;
799 cmd.ioHandle = io;
800 status = (*mEffectInterface)->command(mEffectInterface,
801 EFFECT_CMD_OFFLOAD,
802 sizeof(effect_offload_param_t),
803 &cmd,
804 &size,
805 &cmdStatus);
806 if (status == NO_ERROR) {
807 status = cmdStatus;
808 }
809 mOffloaded = (status == NO_ERROR) ? offloaded : false;
810 } else {
811 if (offloaded) {
812 status = INVALID_OPERATION;
813 }
814 mOffloaded = false;
815 }
816 ALOGV("setOffloaded() offloaded %d io %d status %d", offloaded, io, status);
817 return status;
818}
819
820bool AudioFlinger::EffectModule::isOffloaded() const
821{
822 Mutex::Autolock _l(mLock);
823 return mOffloaded;
824}
825
Marco Nelissenb2208842014-02-07 14:00:50 -0800826String8 effectFlagsToString(uint32_t flags) {
827 String8 s;
828
829 s.append("conn. mode: ");
830 switch (flags & EFFECT_FLAG_TYPE_MASK) {
831 case EFFECT_FLAG_TYPE_INSERT: s.append("insert"); break;
832 case EFFECT_FLAG_TYPE_AUXILIARY: s.append("auxiliary"); break;
833 case EFFECT_FLAG_TYPE_REPLACE: s.append("replace"); break;
834 case EFFECT_FLAG_TYPE_PRE_PROC: s.append("preproc"); break;
835 case EFFECT_FLAG_TYPE_POST_PROC: s.append("postproc"); break;
836 default: s.append("unknown/reserved"); break;
837 }
838 s.append(", ");
839
840 s.append("insert pref: ");
841 switch (flags & EFFECT_FLAG_INSERT_MASK) {
842 case EFFECT_FLAG_INSERT_ANY: s.append("any"); break;
843 case EFFECT_FLAG_INSERT_FIRST: s.append("first"); break;
844 case EFFECT_FLAG_INSERT_LAST: s.append("last"); break;
845 case EFFECT_FLAG_INSERT_EXCLUSIVE: s.append("exclusive"); break;
846 default: s.append("unknown/reserved"); break;
847 }
848 s.append(", ");
849
850 s.append("volume mgmt: ");
851 switch (flags & EFFECT_FLAG_VOLUME_MASK) {
852 case EFFECT_FLAG_VOLUME_NONE: s.append("none"); break;
853 case EFFECT_FLAG_VOLUME_CTRL: s.append("implements control"); break;
854 case EFFECT_FLAG_VOLUME_IND: s.append("requires indication"); break;
855 default: s.append("unknown/reserved"); break;
856 }
857 s.append(", ");
858
859 uint32_t devind = flags & EFFECT_FLAG_DEVICE_MASK;
860 if (devind) {
861 s.append("device indication: ");
862 switch (devind) {
863 case EFFECT_FLAG_DEVICE_IND: s.append("requires updates"); break;
864 default: s.append("unknown/reserved"); break;
865 }
866 s.append(", ");
867 }
868
869 s.append("input mode: ");
870 switch (flags & EFFECT_FLAG_INPUT_MASK) {
871 case EFFECT_FLAG_INPUT_DIRECT: s.append("direct"); break;
872 case EFFECT_FLAG_INPUT_PROVIDER: s.append("provider"); break;
873 case EFFECT_FLAG_INPUT_BOTH: s.append("direct+provider"); break;
874 default: s.append("not set"); break;
875 }
876 s.append(", ");
877
878 s.append("output mode: ");
879 switch (flags & EFFECT_FLAG_OUTPUT_MASK) {
880 case EFFECT_FLAG_OUTPUT_DIRECT: s.append("direct"); break;
881 case EFFECT_FLAG_OUTPUT_PROVIDER: s.append("provider"); break;
882 case EFFECT_FLAG_OUTPUT_BOTH: s.append("direct+provider"); break;
883 default: s.append("not set"); break;
884 }
885 s.append(", ");
886
887 uint32_t accel = flags & EFFECT_FLAG_HW_ACC_MASK;
888 if (accel) {
889 s.append("hardware acceleration: ");
890 switch (accel) {
891 case EFFECT_FLAG_HW_ACC_SIMPLE: s.append("non-tunneled"); break;
892 case EFFECT_FLAG_HW_ACC_TUNNEL: s.append("tunneled"); break;
893 default: s.append("unknown/reserved"); break;
894 }
895 s.append(", ");
896 }
897
898 uint32_t modeind = flags & EFFECT_FLAG_AUDIO_MODE_MASK;
899 if (modeind) {
900 s.append("mode indication: ");
901 switch (modeind) {
902 case EFFECT_FLAG_AUDIO_MODE_IND: s.append("required"); break;
903 default: s.append("unknown/reserved"); break;
904 }
905 s.append(", ");
906 }
907
908 uint32_t srcind = flags & EFFECT_FLAG_AUDIO_SOURCE_MASK;
909 if (srcind) {
910 s.append("source indication: ");
911 switch (srcind) {
912 case EFFECT_FLAG_AUDIO_SOURCE_IND: s.append("required"); break;
913 default: s.append("unknown/reserved"); break;
914 }
915 s.append(", ");
916 }
917
918 if (flags & EFFECT_FLAG_OFFLOAD_MASK) {
919 s.append("offloadable, ");
920 }
921
922 int len = s.length();
923 if (s.length() > 2) {
924 char *str = s.lockBuffer(len);
925 s.unlockBuffer(len - 2);
926 }
927 return s;
928}
929
930
Glenn Kasten0f11b512014-01-31 16:18:54 -0800931void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args __unused)
Eric Laurentca7cc822012-11-19 14:55:58 -0800932{
933 const size_t SIZE = 256;
934 char buffer[SIZE];
935 String8 result;
936
937 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
938 result.append(buffer);
939
940 bool locked = AudioFlinger::dumpTryLock(mLock);
941 // failed to lock - AudioFlinger is probably deadlocked
942 if (!locked) {
943 result.append("\t\tCould not lock Fx mutex:\n");
944 }
945
946 result.append("\t\tSession Status State Engine:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000947 snprintf(buffer, SIZE, "\t\t%05d %03d %03d %p\n",
948 mSessionId, mStatus, mState, mEffectInterface);
Eric Laurentca7cc822012-11-19 14:55:58 -0800949 result.append(buffer);
950
951 result.append("\t\tDescriptor:\n");
952 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
953 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
954 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
955 mDescriptor.uuid.node[2],
956 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
957 result.append(buffer);
958 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
959 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
960 mDescriptor.type.timeHiAndVersion,
961 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
962 mDescriptor.type.node[2],
963 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
964 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -0800965 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X (%s)\n",
Eric Laurentca7cc822012-11-19 14:55:58 -0800966 mDescriptor.apiVersion,
Marco Nelissenb2208842014-02-07 14:00:50 -0800967 mDescriptor.flags,
968 effectFlagsToString(mDescriptor.flags).string());
Eric Laurentca7cc822012-11-19 14:55:58 -0800969 result.append(buffer);
970 snprintf(buffer, SIZE, "\t\t- name: %s\n",
971 mDescriptor.name);
972 result.append(buffer);
973 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
974 mDescriptor.implementor);
975 result.append(buffer);
976
977 result.append("\t\t- Input configuration:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000978 result.append("\t\t\tFrames Smp rate Channels Format Buffer\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +0000979 snprintf(buffer, SIZE, "\t\t\t%05zu %05d %08x %6d (%s) %p\n",
Eric Laurentca7cc822012-11-19 14:55:58 -0800980 mConfig.inputCfg.buffer.frameCount,
981 mConfig.inputCfg.samplingRate,
982 mConfig.inputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -0800983 mConfig.inputCfg.format,
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +0000984 formatToString((audio_format_t)mConfig.inputCfg.format),
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000985 mConfig.inputCfg.buffer.raw);
Eric Laurentca7cc822012-11-19 14:55:58 -0800986 result.append(buffer);
987
988 result.append("\t\t- Output configuration:\n");
989 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +0000990 snprintf(buffer, SIZE, "\t\t\t%p %05zu %05d %08x %d (%s)\n",
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000991 mConfig.outputCfg.buffer.raw,
Eric Laurentca7cc822012-11-19 14:55:58 -0800992 mConfig.outputCfg.buffer.frameCount,
993 mConfig.outputCfg.samplingRate,
994 mConfig.outputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -0800995 mConfig.outputCfg.format,
996 formatToString((audio_format_t)mConfig.outputCfg.format));
Eric Laurentca7cc822012-11-19 14:55:58 -0800997 result.append(buffer);
998
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000999 snprintf(buffer, SIZE, "\t\t%zu Clients:\n", mHandles.size());
Eric Laurentca7cc822012-11-19 14:55:58 -08001000 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001001 result.append("\t\t\t Pid Priority Ctrl Locked client server\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001002 for (size_t i = 0; i < mHandles.size(); ++i) {
1003 EffectHandle *handle = mHandles[i];
1004 if (handle != NULL && !handle->destroyed_l()) {
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001005 handle->dumpToBuffer(buffer, SIZE);
Eric Laurentca7cc822012-11-19 14:55:58 -08001006 result.append(buffer);
1007 }
1008 }
1009
Eric Laurentca7cc822012-11-19 14:55:58 -08001010 write(fd, result.string(), result.length());
1011
1012 if (locked) {
1013 mLock.unlock();
1014 }
1015}
1016
1017// ----------------------------------------------------------------------------
1018// EffectHandle implementation
1019// ----------------------------------------------------------------------------
1020
1021#undef LOG_TAG
1022#define LOG_TAG "AudioFlinger::EffectHandle"
1023
1024AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
1025 const sp<AudioFlinger::Client>& client,
1026 const sp<IEffectClient>& effectClient,
1027 int32_t priority)
1028 : BnEffect(),
1029 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
1030 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
1031{
1032 ALOGV("constructor %p", this);
1033
1034 if (client == 0) {
1035 return;
1036 }
1037 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
1038 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
Glenn Kastene75da402013-11-20 13:54:52 -08001039 if (mCblkMemory == 0 ||
1040 (mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer())) == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001041 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE +
1042 sizeof(effect_param_cblk_t));
Glenn Kastene75da402013-11-20 13:54:52 -08001043 mCblkMemory.clear();
Eric Laurentca7cc822012-11-19 14:55:58 -08001044 return;
1045 }
Glenn Kastene75da402013-11-20 13:54:52 -08001046 new(mCblk) effect_param_cblk_t();
1047 mBuffer = (uint8_t *)mCblk + bufOffset;
Eric Laurentca7cc822012-11-19 14:55:58 -08001048}
1049
1050AudioFlinger::EffectHandle::~EffectHandle()
1051{
1052 ALOGV("Destructor %p", this);
1053
1054 if (mEffect == 0) {
1055 mDestroyed = true;
1056 return;
1057 }
1058 mEffect->lock();
1059 mDestroyed = true;
1060 mEffect->unlock();
1061 disconnect(false);
1062}
1063
Glenn Kastene75da402013-11-20 13:54:52 -08001064status_t AudioFlinger::EffectHandle::initCheck()
1065{
1066 return mClient == 0 || mCblkMemory != 0 ? OK : NO_MEMORY;
1067}
1068
Eric Laurentca7cc822012-11-19 14:55:58 -08001069status_t AudioFlinger::EffectHandle::enable()
1070{
1071 ALOGV("enable %p", this);
1072 if (!mHasControl) {
1073 return INVALID_OPERATION;
1074 }
1075 if (mEffect == 0) {
1076 return DEAD_OBJECT;
1077 }
1078
1079 if (mEnabled) {
1080 return NO_ERROR;
1081 }
1082
1083 mEnabled = true;
1084
1085 sp<ThreadBase> thread = mEffect->thread().promote();
1086 if (thread != 0) {
1087 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
1088 }
1089
1090 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
1091 if (mEffect->suspended()) {
1092 return NO_ERROR;
1093 }
1094
1095 status_t status = mEffect->setEnabled(true);
1096 if (status != NO_ERROR) {
1097 if (thread != 0) {
1098 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1099 }
1100 mEnabled = false;
Eric Laurent813e2a72013-08-31 12:59:48 -07001101 } else {
Eric Laurent59fe0102013-09-27 18:48:26 -07001102 if (thread != 0) {
1103 if (thread->type() == ThreadBase::OFFLOAD) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001104 PlaybackThread *t = (PlaybackThread *)thread.get();
Eric Laurent59fe0102013-09-27 18:48:26 -07001105 Mutex::Autolock _l(t->mLock);
1106 t->broadcast_l();
Eric Laurent813e2a72013-08-31 12:59:48 -07001107 }
Eric Laurent59fe0102013-09-27 18:48:26 -07001108 if (!mEffect->isOffloadable()) {
1109 if (thread->type() == ThreadBase::OFFLOAD) {
1110 PlaybackThread *t = (PlaybackThread *)thread.get();
1111 t->invalidateTracks(AUDIO_STREAM_MUSIC);
1112 }
1113 if (mEffect->sessionId() == AUDIO_SESSION_OUTPUT_MIX) {
1114 thread->mAudioFlinger->onNonOffloadableGlobalEffectEnable();
1115 }
Eric Laurent813e2a72013-08-31 12:59:48 -07001116 }
1117 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001118 }
1119 return status;
1120}
1121
1122status_t AudioFlinger::EffectHandle::disable()
1123{
1124 ALOGV("disable %p", this);
1125 if (!mHasControl) {
1126 return INVALID_OPERATION;
1127 }
1128 if (mEffect == 0) {
1129 return DEAD_OBJECT;
1130 }
1131
1132 if (!mEnabled) {
1133 return NO_ERROR;
1134 }
1135 mEnabled = false;
1136
1137 if (mEffect->suspended()) {
1138 return NO_ERROR;
1139 }
1140
1141 status_t status = mEffect->setEnabled(false);
1142
1143 sp<ThreadBase> thread = mEffect->thread().promote();
1144 if (thread != 0) {
1145 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
Eric Laurent59fe0102013-09-27 18:48:26 -07001146 if (thread->type() == ThreadBase::OFFLOAD) {
1147 PlaybackThread *t = (PlaybackThread *)thread.get();
1148 Mutex::Autolock _l(t->mLock);
1149 t->broadcast_l();
1150 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001151 }
1152
1153 return status;
1154}
1155
1156void AudioFlinger::EffectHandle::disconnect()
1157{
1158 disconnect(true);
1159}
1160
1161void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
1162{
1163 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1164 if (mEffect == 0) {
1165 return;
1166 }
1167 // restore suspended effects if the disconnected handle was enabled and the last one.
1168 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
1169 sp<ThreadBase> thread = mEffect->thread().promote();
1170 if (thread != 0) {
1171 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1172 }
1173 }
1174
1175 // release sp on module => module destructor can be called now
1176 mEffect.clear();
1177 if (mClient != 0) {
1178 if (mCblk != NULL) {
1179 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
1180 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
1181 }
1182 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Eric Laurent021cf962014-05-13 10:18:14 -07001183 // Client destructor must run with AudioFlinger client mutex locked
1184 Mutex::Autolock _l(mClient->audioFlinger()->mClientLock);
Eric Laurentca7cc822012-11-19 14:55:58 -08001185 mClient.clear();
1186 }
1187}
1188
1189status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
1190 uint32_t cmdSize,
1191 void *pCmdData,
1192 uint32_t *replySize,
1193 void *pReplyData)
1194{
1195 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
1196 cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
1197
1198 // only get parameter command is permitted for applications not controlling the effect
1199 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1200 return INVALID_OPERATION;
1201 }
1202 if (mEffect == 0) {
1203 return DEAD_OBJECT;
1204 }
1205 if (mClient == 0) {
1206 return INVALID_OPERATION;
1207 }
1208
1209 // handle commands that are not forwarded transparently to effect engine
1210 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
1211 // No need to trylock() here as this function is executed in the binder thread serving a
1212 // particular client process: no risk to block the whole media server process or mixer
1213 // threads if we are stuck here
1214 Mutex::Autolock _l(mCblk->lock);
1215 if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1216 mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
1217 mCblk->serverIndex = 0;
1218 mCblk->clientIndex = 0;
1219 return BAD_VALUE;
1220 }
1221 status_t status = NO_ERROR;
1222 while (mCblk->serverIndex < mCblk->clientIndex) {
1223 int reply;
1224 uint32_t rsize = sizeof(int);
1225 int *p = (int *)(mBuffer + mCblk->serverIndex);
1226 int size = *p++;
1227 if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
1228 ALOGW("command(): invalid parameter block size");
1229 break;
1230 }
1231 effect_param_t *param = (effect_param_t *)p;
1232 if (param->psize == 0 || param->vsize == 0) {
1233 ALOGW("command(): null parameter or value size");
1234 mCblk->serverIndex += size;
1235 continue;
1236 }
1237 uint32_t psize = sizeof(effect_param_t) +
1238 ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
1239 param->vsize;
1240 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
1241 psize,
1242 p,
1243 &rsize,
1244 &reply);
1245 // stop at first error encountered
1246 if (ret != NO_ERROR) {
1247 status = ret;
1248 *(int *)pReplyData = reply;
1249 break;
1250 } else if (reply != NO_ERROR) {
1251 *(int *)pReplyData = reply;
1252 break;
1253 }
1254 mCblk->serverIndex += size;
1255 }
1256 mCblk->serverIndex = 0;
1257 mCblk->clientIndex = 0;
1258 return status;
1259 } else if (cmdCode == EFFECT_CMD_ENABLE) {
1260 *(int *)pReplyData = NO_ERROR;
1261 return enable();
1262 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1263 *(int *)pReplyData = NO_ERROR;
1264 return disable();
1265 }
1266
1267 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1268}
1269
1270void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1271{
1272 ALOGV("setControl %p control %d", this, hasControl);
1273
1274 mHasControl = hasControl;
1275 mEnabled = enabled;
1276
1277 if (signal && mEffectClient != 0) {
1278 mEffectClient->controlStatusChanged(hasControl);
1279 }
1280}
1281
1282void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1283 uint32_t cmdSize,
1284 void *pCmdData,
1285 uint32_t replySize,
1286 void *pReplyData)
1287{
1288 if (mEffectClient != 0) {
1289 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1290 }
1291}
1292
1293
1294
1295void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1296{
1297 if (mEffectClient != 0) {
1298 mEffectClient->enableStatusChanged(enabled);
1299 }
1300}
1301
1302status_t AudioFlinger::EffectHandle::onTransact(
1303 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1304{
1305 return BnEffect::onTransact(code, data, reply, flags);
1306}
1307
1308
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001309void AudioFlinger::EffectHandle::dumpToBuffer(char* buffer, size_t size)
Eric Laurentca7cc822012-11-19 14:55:58 -08001310{
1311 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1312
Marco Nelissenb2208842014-02-07 14:00:50 -08001313 snprintf(buffer, size, "\t\t\t%5d %5d %3s %3s %5u %5u\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001314 (mClient == 0) ? getpid_cached : mClient->pid(),
1315 mPriority,
Marco Nelissenb2208842014-02-07 14:00:50 -08001316 mHasControl ? "yes" : "no",
1317 locked ? "yes" : "no",
Eric Laurentca7cc822012-11-19 14:55:58 -08001318 mCblk ? mCblk->clientIndex : 0,
1319 mCblk ? mCblk->serverIndex : 0
1320 );
1321
1322 if (locked) {
1323 mCblk->lock.unlock();
1324 }
1325}
1326
1327#undef LOG_TAG
1328#define LOG_TAG "AudioFlinger::EffectChain"
1329
1330AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
1331 int sessionId)
1332 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1333 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001334 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX), mForceVolume(false)
Eric Laurentca7cc822012-11-19 14:55:58 -08001335{
1336 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1337 if (thread == NULL) {
1338 return;
1339 }
1340 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1341 thread->frameCount();
1342}
1343
1344AudioFlinger::EffectChain::~EffectChain()
1345{
1346 if (mOwnInBuffer) {
1347 delete mInBuffer;
1348 }
1349
1350}
1351
1352// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1353sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1354 effect_descriptor_t *descriptor)
1355{
1356 size_t size = mEffects.size();
1357
1358 for (size_t i = 0; i < size; i++) {
1359 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1360 return mEffects[i];
1361 }
1362 }
1363 return 0;
1364}
1365
1366// getEffectFromId_l() must be called with ThreadBase::mLock held
1367sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1368{
1369 size_t size = mEffects.size();
1370
1371 for (size_t i = 0; i < size; i++) {
1372 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1373 if (id == 0 || mEffects[i]->id() == id) {
1374 return mEffects[i];
1375 }
1376 }
1377 return 0;
1378}
1379
1380// getEffectFromType_l() must be called with ThreadBase::mLock held
1381sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1382 const effect_uuid_t *type)
1383{
1384 size_t size = mEffects.size();
1385
1386 for (size_t i = 0; i < size; i++) {
1387 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1388 return mEffects[i];
1389 }
1390 }
1391 return 0;
1392}
1393
1394void AudioFlinger::EffectChain::clearInputBuffer()
1395{
1396 Mutex::Autolock _l(mLock);
1397 sp<ThreadBase> thread = mThread.promote();
1398 if (thread == 0) {
1399 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1400 return;
1401 }
1402 clearInputBuffer_l(thread);
1403}
1404
1405// Must be called with EffectChain::mLock locked
1406void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1407{
Ricardo Garcia322bab22014-08-06 11:43:46 -07001408 // TODO: This will change in the future, depending on multichannel
1409 // and sample format changes for effects.
1410 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1411 // (4 bytes frame size)
Ricardo Garcia726b6a72014-08-11 12:04:54 -07001412 const size_t frameSize =
1413 audio_bytes_per_sample(AUDIO_FORMAT_PCM_16_BIT) * min(FCC_2, thread->channelCount());
Ricardo Garcia322bab22014-08-06 11:43:46 -07001414 memset(mInBuffer, 0, thread->frameCount() * frameSize);
Eric Laurentca7cc822012-11-19 14:55:58 -08001415}
1416
1417// Must be called with EffectChain::mLock locked
1418void AudioFlinger::EffectChain::process_l()
1419{
1420 sp<ThreadBase> thread = mThread.promote();
1421 if (thread == 0) {
1422 ALOGW("process_l(): cannot promote mixer thread");
1423 return;
1424 }
1425 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1426 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001427 // never process effects when:
1428 // - on an OFFLOAD thread
1429 // - no more tracks are on the session and the effect tail has been rendered
1430 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001431 if (!isGlobalSession) {
1432 bool tracksOnSession = (trackCnt() != 0);
1433
1434 if (!tracksOnSession && mTailBufferCount == 0) {
1435 doProcess = false;
1436 }
1437
1438 if (activeTrackCnt() == 0) {
1439 // if no track is active and the effect tail has not been rendered,
1440 // the input buffer must be cleared here as the mixer process will not do it
1441 if (tracksOnSession || mTailBufferCount > 0) {
1442 clearInputBuffer_l(thread);
1443 if (mTailBufferCount > 0) {
1444 mTailBufferCount--;
1445 }
1446 }
1447 }
1448 }
1449
1450 size_t size = mEffects.size();
1451 if (doProcess) {
1452 for (size_t i = 0; i < size; i++) {
1453 mEffects[i]->process();
1454 }
1455 }
1456 for (size_t i = 0; i < size; i++) {
1457 mEffects[i]->updateState();
1458 }
1459}
1460
1461// addEffect_l() must be called with PlaybackThread::mLock held
1462status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1463{
1464 effect_descriptor_t desc = effect->desc();
1465 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1466
1467 Mutex::Autolock _l(mLock);
1468 effect->setChain(this);
1469 sp<ThreadBase> thread = mThread.promote();
1470 if (thread == 0) {
1471 return NO_INIT;
1472 }
1473 effect->setThread(thread);
1474
1475 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1476 // Auxiliary effects are inserted at the beginning of mEffects vector as
1477 // they are processed first and accumulated in chain input buffer
1478 mEffects.insertAt(effect, 0);
1479
1480 // the input buffer for auxiliary effect contains mono samples in
1481 // 32 bit format. This is to avoid saturation in AudoMixer
1482 // accumulation stage. Saturation is done in EffectModule::process() before
1483 // calling the process in effect engine
1484 size_t numSamples = thread->frameCount();
1485 int32_t *buffer = new int32_t[numSamples];
1486 memset(buffer, 0, numSamples * sizeof(int32_t));
1487 effect->setInBuffer((int16_t *)buffer);
1488 // auxiliary effects output samples to chain input buffer for further processing
1489 // by insert effects
1490 effect->setOutBuffer(mInBuffer);
1491 } else {
1492 // Insert effects are inserted at the end of mEffects vector as they are processed
1493 // after track and auxiliary effects.
1494 // Insert effect order as a function of indicated preference:
1495 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1496 // another effect is present
1497 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1498 // last effect claiming first position
1499 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1500 // first effect claiming last position
1501 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1502 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1503 // already present
1504
1505 size_t size = mEffects.size();
1506 size_t idx_insert = size;
1507 ssize_t idx_insert_first = -1;
1508 ssize_t idx_insert_last = -1;
1509
1510 for (size_t i = 0; i < size; i++) {
1511 effect_descriptor_t d = mEffects[i]->desc();
1512 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1513 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1514 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1515 // check invalid effect chaining combinations
1516 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1517 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1518 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1519 desc.name, d.name);
1520 return INVALID_OPERATION;
1521 }
1522 // remember position of first insert effect and by default
1523 // select this as insert position for new effect
1524 if (idx_insert == size) {
1525 idx_insert = i;
1526 }
1527 // remember position of last insert effect claiming
1528 // first position
1529 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1530 idx_insert_first = i;
1531 }
1532 // remember position of first insert effect claiming
1533 // last position
1534 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1535 idx_insert_last == -1) {
1536 idx_insert_last = i;
1537 }
1538 }
1539 }
1540
1541 // modify idx_insert from first position if needed
1542 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1543 if (idx_insert_last != -1) {
1544 idx_insert = idx_insert_last;
1545 } else {
1546 idx_insert = size;
1547 }
1548 } else {
1549 if (idx_insert_first != -1) {
1550 idx_insert = idx_insert_first + 1;
1551 }
1552 }
1553
1554 // always read samples from chain input buffer
1555 effect->setInBuffer(mInBuffer);
1556
1557 // if last effect in the chain, output samples to chain
1558 // output buffer, otherwise to chain input buffer
1559 if (idx_insert == size) {
1560 if (idx_insert != 0) {
1561 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1562 mEffects[idx_insert-1]->configure();
1563 }
1564 effect->setOutBuffer(mOutBuffer);
1565 } else {
1566 effect->setOutBuffer(mInBuffer);
1567 }
1568 mEffects.insertAt(effect, idx_insert);
1569
1570 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this,
1571 idx_insert);
1572 }
1573 effect->configure();
1574 return NO_ERROR;
1575}
1576
1577// removeEffect_l() must be called with PlaybackThread::mLock held
1578size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
1579{
1580 Mutex::Autolock _l(mLock);
1581 size_t size = mEffects.size();
1582 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1583
1584 for (size_t i = 0; i < size; i++) {
1585 if (effect == mEffects[i]) {
1586 // calling stop here will remove pre-processing effect from the audio HAL.
1587 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1588 // the middle of a read from audio HAL
1589 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1590 mEffects[i]->state() == EffectModule::STOPPING) {
1591 mEffects[i]->stop();
1592 }
1593 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1594 delete[] effect->inBuffer();
1595 } else {
1596 if (i == size - 1 && i != 0) {
1597 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1598 mEffects[i - 1]->configure();
1599 }
1600 }
1601 mEffects.removeAt(i);
1602 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(),
1603 this, i);
1604 break;
1605 }
1606 }
1607
1608 return mEffects.size();
1609}
1610
1611// setDevice_l() must be called with PlaybackThread::mLock held
1612void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1613{
1614 size_t size = mEffects.size();
1615 for (size_t i = 0; i < size; i++) {
1616 mEffects[i]->setDevice(device);
1617 }
1618}
1619
1620// setMode_l() must be called with PlaybackThread::mLock held
1621void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1622{
1623 size_t size = mEffects.size();
1624 for (size_t i = 0; i < size; i++) {
1625 mEffects[i]->setMode(mode);
1626 }
1627}
1628
1629// setAudioSource_l() must be called with PlaybackThread::mLock held
1630void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1631{
1632 size_t size = mEffects.size();
1633 for (size_t i = 0; i < size; i++) {
1634 mEffects[i]->setAudioSource(source);
1635 }
1636}
1637
1638// setVolume_l() must be called with PlaybackThread::mLock held
1639bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
1640{
1641 uint32_t newLeft = *left;
1642 uint32_t newRight = *right;
1643 bool hasControl = false;
1644 int ctrlIdx = -1;
1645 size_t size = mEffects.size();
1646
1647 // first update volume controller
1648 for (size_t i = size; i > 0; i--) {
1649 if (mEffects[i - 1]->isProcessEnabled() &&
1650 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1651 ctrlIdx = i - 1;
1652 hasControl = true;
1653 break;
1654 }
1655 }
1656
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001657 if (!isVolumeForced() && ctrlIdx == mVolumeCtrlIdx &&
1658 *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001659 if (hasControl) {
1660 *left = mNewLeftVolume;
1661 *right = mNewRightVolume;
1662 }
1663 return hasControl;
1664 }
1665
1666 mVolumeCtrlIdx = ctrlIdx;
1667 mLeftVolume = newLeft;
1668 mRightVolume = newRight;
1669
1670 // second get volume update from volume controller
1671 if (ctrlIdx >= 0) {
1672 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1673 mNewLeftVolume = newLeft;
1674 mNewRightVolume = newRight;
1675 }
1676 // then indicate volume to all other effects in chain.
1677 // Pass altered volume to effects before volume controller
1678 // and requested volume to effects after controller
1679 uint32_t lVol = newLeft;
1680 uint32_t rVol = newRight;
1681
1682 for (size_t i = 0; i < size; i++) {
1683 if ((int)i == ctrlIdx) {
1684 continue;
1685 }
1686 // this also works for ctrlIdx == -1 when there is no volume controller
1687 if ((int)i > ctrlIdx) {
1688 lVol = *left;
1689 rVol = *right;
1690 }
1691 mEffects[i]->setVolume(&lVol, &rVol, false);
1692 }
1693 *left = newLeft;
1694 *right = newRight;
1695
1696 return hasControl;
1697}
1698
1699void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1700{
1701 const size_t SIZE = 256;
1702 char buffer[SIZE];
1703 String8 result;
1704
Marco Nelissenb2208842014-02-07 14:00:50 -08001705 size_t numEffects = mEffects.size();
1706 snprintf(buffer, SIZE, " %d effects for session %d\n", numEffects, mSessionId);
Eric Laurentca7cc822012-11-19 14:55:58 -08001707 result.append(buffer);
1708
Marco Nelissenb2208842014-02-07 14:00:50 -08001709 if (numEffects) {
1710 bool locked = AudioFlinger::dumpTryLock(mLock);
1711 // failed to lock - AudioFlinger is probably deadlocked
1712 if (!locked) {
1713 result.append("\tCould not lock mutex:\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001714 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001715
Marco Nelissenb2208842014-02-07 14:00:50 -08001716 result.append("\tIn buffer Out buffer Active tracks:\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001717 snprintf(buffer, SIZE, "\t%p %p %d\n",
1718 mInBuffer,
1719 mOutBuffer,
Marco Nelissenb2208842014-02-07 14:00:50 -08001720 mActiveTrackCnt);
1721 result.append(buffer);
1722 write(fd, result.string(), result.size());
1723
1724 for (size_t i = 0; i < numEffects; ++i) {
1725 sp<EffectModule> effect = mEffects[i];
1726 if (effect != 0) {
1727 effect->dump(fd, args);
1728 }
1729 }
1730
1731 if (locked) {
1732 mLock.unlock();
1733 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001734 }
1735}
1736
1737// must be called with ThreadBase::mLock held
1738void AudioFlinger::EffectChain::setEffectSuspended_l(
1739 const effect_uuid_t *type, bool suspend)
1740{
1741 sp<SuspendedEffectDesc> desc;
1742 // use effect type UUID timelow as key as there is no real risk of identical
1743 // timeLow fields among effect type UUIDs.
1744 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1745 if (suspend) {
1746 if (index >= 0) {
1747 desc = mSuspendedEffects.valueAt(index);
1748 } else {
1749 desc = new SuspendedEffectDesc();
1750 desc->mType = *type;
1751 mSuspendedEffects.add(type->timeLow, desc);
1752 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1753 }
1754 if (desc->mRefCount++ == 0) {
1755 sp<EffectModule> effect = getEffectIfEnabled(type);
1756 if (effect != 0) {
1757 desc->mEffect = effect;
1758 effect->setSuspended(true);
1759 effect->setEnabled(false);
1760 }
1761 }
1762 } else {
1763 if (index < 0) {
1764 return;
1765 }
1766 desc = mSuspendedEffects.valueAt(index);
1767 if (desc->mRefCount <= 0) {
1768 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1769 desc->mRefCount = 1;
1770 }
1771 if (--desc->mRefCount == 0) {
1772 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1773 if (desc->mEffect != 0) {
1774 sp<EffectModule> effect = desc->mEffect.promote();
1775 if (effect != 0) {
1776 effect->setSuspended(false);
1777 effect->lock();
1778 EffectHandle *handle = effect->controlHandle_l();
1779 if (handle != NULL && !handle->destroyed_l()) {
1780 effect->setEnabled_l(handle->enabled());
1781 }
1782 effect->unlock();
1783 }
1784 desc->mEffect.clear();
1785 }
1786 mSuspendedEffects.removeItemsAt(index);
1787 }
1788 }
1789}
1790
1791// must be called with ThreadBase::mLock held
1792void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1793{
1794 sp<SuspendedEffectDesc> desc;
1795
1796 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1797 if (suspend) {
1798 if (index >= 0) {
1799 desc = mSuspendedEffects.valueAt(index);
1800 } else {
1801 desc = new SuspendedEffectDesc();
1802 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1803 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1804 }
1805 if (desc->mRefCount++ == 0) {
1806 Vector< sp<EffectModule> > effects;
1807 getSuspendEligibleEffects(effects);
1808 for (size_t i = 0; i < effects.size(); i++) {
1809 setEffectSuspended_l(&effects[i]->desc().type, true);
1810 }
1811 }
1812 } else {
1813 if (index < 0) {
1814 return;
1815 }
1816 desc = mSuspendedEffects.valueAt(index);
1817 if (desc->mRefCount <= 0) {
1818 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
1819 desc->mRefCount = 1;
1820 }
1821 if (--desc->mRefCount == 0) {
1822 Vector<const effect_uuid_t *> types;
1823 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
1824 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
1825 continue;
1826 }
1827 types.add(&mSuspendedEffects.valueAt(i)->mType);
1828 }
1829 for (size_t i = 0; i < types.size(); i++) {
1830 setEffectSuspended_l(types[i], false);
1831 }
1832 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
1833 mSuspendedEffects.keyAt(index));
1834 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
1835 }
1836 }
1837}
1838
1839
1840// The volume effect is used for automated tests only
1841#ifndef OPENSL_ES_H_
1842static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
1843 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
1844const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
1845#endif //OPENSL_ES_H_
1846
1847bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
1848{
1849 // auxiliary effects and visualizer are never suspended on output mix
1850 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
1851 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
1852 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
1853 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
1854 return false;
1855 }
1856 return true;
1857}
1858
1859void AudioFlinger::EffectChain::getSuspendEligibleEffects(
1860 Vector< sp<AudioFlinger::EffectModule> > &effects)
1861{
1862 effects.clear();
1863 for (size_t i = 0; i < mEffects.size(); i++) {
1864 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
1865 effects.add(mEffects[i]);
1866 }
1867 }
1868}
1869
1870sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
1871 const effect_uuid_t *type)
1872{
1873 sp<EffectModule> effect = getEffectFromType_l(type);
1874 return effect != 0 && effect->isEnabled() ? effect : 0;
1875}
1876
1877void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1878 bool enabled)
1879{
1880 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1881 if (enabled) {
1882 if (index < 0) {
1883 // if the effect is not suspend check if all effects are suspended
1884 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1885 if (index < 0) {
1886 return;
1887 }
1888 if (!isEffectEligibleForSuspend(effect->desc())) {
1889 return;
1890 }
1891 setEffectSuspended_l(&effect->desc().type, enabled);
1892 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1893 if (index < 0) {
1894 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
1895 return;
1896 }
1897 }
1898 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
1899 effect->desc().type.timeLow);
1900 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
1901 // if effect is requested to suspended but was not yet enabled, supend it now.
1902 if (desc->mEffect == 0) {
1903 desc->mEffect = effect;
1904 effect->setEnabled(false);
1905 effect->setSuspended(true);
1906 }
1907 } else {
1908 if (index < 0) {
1909 return;
1910 }
1911 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
1912 effect->desc().type.timeLow);
1913 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
1914 desc->mEffect.clear();
1915 effect->setSuspended(false);
1916 }
1917}
1918
Eric Laurent5baf2af2013-09-12 17:37:00 -07001919bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07001920{
1921 Mutex::Autolock _l(mLock);
1922 size_t size = mEffects.size();
1923 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07001924 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001925 return true;
1926 }
1927 }
1928 return false;
1929}
1930
Eric Laurentaaa44472014-09-12 17:41:50 -07001931void AudioFlinger::EffectChain::setThread(const sp<ThreadBase>& thread)
1932{
1933 Mutex::Autolock _l(mLock);
1934 mThread = thread;
1935 for (size_t i = 0; i < mEffects.size(); i++) {
1936 mEffects[i]->setThread(thread);
1937 }
1938}
1939
Eric Laurentca7cc822012-11-19 14:55:58 -08001940}; // namespace android