blob: bb98a35b77d26d801f69aaec4de0dd4458fc1492 [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
47namespace android {
48
49// ----------------------------------------------------------------------------
50// EffectModule implementation
51// ----------------------------------------------------------------------------
52
53#undef LOG_TAG
54#define LOG_TAG "AudioFlinger::EffectModule"
55
56AudioFlinger::EffectModule::EffectModule(ThreadBase *thread,
57 const wp<AudioFlinger::EffectChain>& chain,
58 effect_descriptor_t *desc,
59 int id,
60 int sessionId)
61 : mPinned(sessionId > AUDIO_SESSION_OUTPUT_MIX),
62 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
63 mDescriptor(*desc),
64 // mConfig is set by configure() and not used before then
65 mEffectInterface(NULL),
66 mStatus(NO_INIT), mState(IDLE),
67 // mMaxDisableWaitCnt is set by configure() and not used before then
68 // mDisableWaitCnt is set by process() and updateState() and not used before then
69 mSuspended(false)
70{
71 ALOGV("Constructor %p", this);
72 int lStatus;
73
74 // create effect engine from effect factory
75 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
76
77 if (mStatus != NO_ERROR) {
78 return;
79 }
80 lStatus = init();
81 if (lStatus < 0) {
82 mStatus = lStatus;
83 goto Error;
84 }
85
86 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
87 return;
88Error:
89 EffectRelease(mEffectInterface);
90 mEffectInterface = NULL;
91 ALOGV("Constructor Error %d", mStatus);
92}
93
94AudioFlinger::EffectModule::~EffectModule()
95{
96 ALOGV("Destructor %p", this);
97 if (mEffectInterface != NULL) {
Eric Laurentbfb1b832013-01-07 09:53:42 -080098 remove_effect_from_hal_l();
Eric Laurentca7cc822012-11-19 14:55:58 -080099 // release effect engine
100 EffectRelease(mEffectInterface);
101 }
102}
103
104status_t AudioFlinger::EffectModule::addHandle(EffectHandle *handle)
105{
106 status_t status;
107
108 Mutex::Autolock _l(mLock);
109 int priority = handle->priority();
110 size_t size = mHandles.size();
111 EffectHandle *controlHandle = NULL;
112 size_t i;
113 for (i = 0; i < size; i++) {
114 EffectHandle *h = mHandles[i];
115 if (h == NULL || h->destroyed_l()) {
116 continue;
117 }
118 // first non destroyed handle is considered in control
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700119 if (controlHandle == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800120 controlHandle = h;
Glenn Kasten6e2ebe92013-08-13 09:14:51 -0700121 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800122 if (h->priority() <= priority) {
123 break;
124 }
125 }
126 // if inserted in first place, move effect control from previous owner to this handle
127 if (i == 0) {
128 bool enabled = false;
129 if (controlHandle != NULL) {
130 enabled = controlHandle->enabled();
131 controlHandle->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
132 }
133 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
134 status = NO_ERROR;
135 } else {
136 status = ALREADY_EXISTS;
137 }
138 ALOGV("addHandle() %p added handle %p in position %d", this, handle, i);
139 mHandles.insertAt(handle, i);
140 return status;
141}
142
143size_t AudioFlinger::EffectModule::removeHandle(EffectHandle *handle)
144{
145 Mutex::Autolock _l(mLock);
146 size_t size = mHandles.size();
147 size_t i;
148 for (i = 0; i < size; i++) {
149 if (mHandles[i] == handle) {
150 break;
151 }
152 }
153 if (i == size) {
154 return size;
155 }
156 ALOGV("removeHandle() %p removed handle %p in position %d", this, handle, i);
157
158 mHandles.removeAt(i);
159 // if removed from first place, move effect control from this handle to next in line
160 if (i == 0) {
161 EffectHandle *h = controlHandle_l();
162 if (h != NULL) {
163 h->setControl(true /*hasControl*/, true /*signal*/ , handle->enabled() /*enabled*/);
164 }
165 }
166
167 // Prevent calls to process() and other functions on effect interface from now on.
168 // The effect engine will be released by the destructor when the last strong reference on
169 // this object is released which can happen after next process is called.
170 if (mHandles.size() == 0 && !mPinned) {
171 mState = DESTROYED;
172 }
173
174 return mHandles.size();
175}
176
177// must be called with EffectModule::mLock held
178AudioFlinger::EffectHandle *AudioFlinger::EffectModule::controlHandle_l()
179{
180 // the first valid handle in the list has control over the module
181 for (size_t i = 0; i < mHandles.size(); i++) {
182 EffectHandle *h = mHandles[i];
183 if (h != NULL && !h->destroyed_l()) {
184 return h;
185 }
186 }
187
188 return NULL;
189}
190
191size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast)
192{
193 ALOGV("disconnect() %p handle %p", this, handle);
194 // keep a strong reference on this EffectModule to avoid calling the
195 // destructor before we exit
196 sp<EffectModule> keep(this);
197 {
198 sp<ThreadBase> thread = mThread.promote();
199 if (thread != 0) {
200 thread->disconnectEffect(keep, handle, unpinIfLast);
201 }
202 }
203 return mHandles.size();
204}
205
206void AudioFlinger::EffectModule::updateState() {
207 Mutex::Autolock _l(mLock);
208
209 switch (mState) {
210 case RESTART:
211 reset_l();
212 // FALL THROUGH
213
214 case STARTING:
215 // clear auxiliary effect input buffer for next accumulation
216 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
217 memset(mConfig.inputCfg.buffer.raw,
218 0,
219 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
220 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700221 if (start_l() == NO_ERROR) {
222 mState = ACTIVE;
223 } else {
224 mState = IDLE;
225 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800226 break;
227 case STOPPING:
Eric Laurentd0ebb532013-04-02 16:41:41 -0700228 if (stop_l() == NO_ERROR) {
229 mDisableWaitCnt = mMaxDisableWaitCnt;
230 } else {
231 mDisableWaitCnt = 1; // will cause immediate transition to IDLE
232 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800233 mState = STOPPED;
234 break;
235 case STOPPED:
236 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
237 // turn off sequence.
238 if (--mDisableWaitCnt == 0) {
239 reset_l();
240 mState = IDLE;
241 }
242 break;
243 default: //IDLE , ACTIVE, DESTROYED
244 break;
245 }
246}
247
248void AudioFlinger::EffectModule::process()
249{
250 Mutex::Autolock _l(mLock);
251
252 if (mState == DESTROYED || mEffectInterface == NULL ||
253 mConfig.inputCfg.buffer.raw == NULL ||
254 mConfig.outputCfg.buffer.raw == NULL) {
255 return;
256 }
257
258 if (isProcessEnabled()) {
259 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
260 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
261 ditherAndClamp(mConfig.inputCfg.buffer.s32,
262 mConfig.inputCfg.buffer.s32,
263 mConfig.inputCfg.buffer.frameCount/2);
264 }
265
266 // do the actual processing in the effect engine
267 int ret = (*mEffectInterface)->process(mEffectInterface,
268 &mConfig.inputCfg.buffer,
269 &mConfig.outputCfg.buffer);
270
271 // force transition to IDLE state when engine is ready
272 if (mState == STOPPED && ret == -ENODATA) {
273 mDisableWaitCnt = 1;
274 }
275
276 // clear auxiliary effect input buffer for next accumulation
277 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
278 memset(mConfig.inputCfg.buffer.raw, 0,
279 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
280 }
281 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
282 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
283 // If an insert effect is idle and input buffer is different from output buffer,
284 // accumulate input onto output
285 sp<EffectChain> chain = mChain.promote();
286 if (chain != 0 && chain->activeTrackCnt() != 0) {
287 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
288 int16_t *in = mConfig.inputCfg.buffer.s16;
289 int16_t *out = mConfig.outputCfg.buffer.s16;
290 for (size_t i = 0; i < frameCnt; i++) {
291 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
292 }
293 }
294 }
295}
296
297void AudioFlinger::EffectModule::reset_l()
298{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700299 if (mStatus != NO_ERROR || mEffectInterface == NULL) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800300 return;
301 }
302 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
303}
304
305status_t AudioFlinger::EffectModule::configure()
306{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700307 status_t status;
308 sp<ThreadBase> thread;
309 uint32_t size;
310 audio_channel_mask_t channelMask;
311
Eric Laurentca7cc822012-11-19 14:55:58 -0800312 if (mEffectInterface == NULL) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700313 status = NO_INIT;
314 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800315 }
316
Eric Laurentd0ebb532013-04-02 16:41:41 -0700317 thread = mThread.promote();
Eric Laurentca7cc822012-11-19 14:55:58 -0800318 if (thread == 0) {
Eric Laurentd0ebb532013-04-02 16:41:41 -0700319 status = DEAD_OBJECT;
320 goto exit;
Eric Laurentca7cc822012-11-19 14:55:58 -0800321 }
322
323 // TODO: handle configuration of effects replacing track process
Eric Laurentd0ebb532013-04-02 16:41:41 -0700324 channelMask = thread->channelMask();
Eric Laurentca7cc822012-11-19 14:55:58 -0800325
326 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
327 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
328 } else {
329 mConfig.inputCfg.channels = channelMask;
330 }
331 mConfig.outputCfg.channels = channelMask;
332 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
333 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
334 mConfig.inputCfg.samplingRate = thread->sampleRate();
335 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
336 mConfig.inputCfg.bufferProvider.cookie = NULL;
337 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
338 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
339 mConfig.outputCfg.bufferProvider.cookie = NULL;
340 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
341 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
342 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
343 // Insert effect:
344 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
345 // always overwrites output buffer: input buffer == output buffer
346 // - in other sessions:
347 // last effect in the chain accumulates in output buffer: input buffer != output buffer
348 // other effect: overwrites output buffer: input buffer == output buffer
349 // Auxiliary effect:
350 // accumulates in output buffer: input buffer != output buffer
351 // Therefore: accumulate <=> input buffer != output buffer
352 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
353 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
354 } else {
355 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
356 }
357 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
358 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
359 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
360 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
361
362 ALOGV("configure() %p thread %p buffer %p framecount %d",
363 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
364
365 status_t cmdStatus;
Eric Laurentd0ebb532013-04-02 16:41:41 -0700366 size = sizeof(int);
367 status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurentca7cc822012-11-19 14:55:58 -0800368 EFFECT_CMD_SET_CONFIG,
369 sizeof(effect_config_t),
370 &mConfig,
371 &size,
372 &cmdStatus);
373 if (status == 0) {
374 status = cmdStatus;
375 }
376
377 if (status == 0 &&
378 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
379 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
380 effect_param_t *p = (effect_param_t *)buf32;
381
382 p->psize = sizeof(uint32_t);
383 p->vsize = sizeof(uint32_t);
384 size = sizeof(int);
385 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
386
387 uint32_t latency = 0;
388 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
389 if (pbt != NULL) {
390 latency = pbt->latency_l();
391 }
392
393 *((int32_t *)p->data + 1)= latency;
394 (*mEffectInterface)->command(mEffectInterface,
395 EFFECT_CMD_SET_PARAM,
396 sizeof(effect_param_t) + 8,
397 &buf32,
398 &size,
399 &cmdStatus);
400 }
401
402 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
403 (1000 * mConfig.outputCfg.buffer.frameCount);
404
Eric Laurentd0ebb532013-04-02 16:41:41 -0700405exit:
406 mStatus = status;
Eric Laurentca7cc822012-11-19 14:55:58 -0800407 return status;
408}
409
410status_t AudioFlinger::EffectModule::init()
411{
412 Mutex::Autolock _l(mLock);
413 if (mEffectInterface == NULL) {
414 return NO_INIT;
415 }
416 status_t cmdStatus;
417 uint32_t size = sizeof(status_t);
418 status_t status = (*mEffectInterface)->command(mEffectInterface,
419 EFFECT_CMD_INIT,
420 0,
421 NULL,
422 &size,
423 &cmdStatus);
424 if (status == 0) {
425 status = cmdStatus;
426 }
427 return status;
428}
429
430status_t AudioFlinger::EffectModule::start()
431{
432 Mutex::Autolock _l(mLock);
433 return start_l();
434}
435
436status_t AudioFlinger::EffectModule::start_l()
437{
438 if (mEffectInterface == NULL) {
439 return NO_INIT;
440 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700441 if (mStatus != NO_ERROR) {
442 return mStatus;
443 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800444 status_t cmdStatus;
445 uint32_t size = sizeof(status_t);
446 status_t status = (*mEffectInterface)->command(mEffectInterface,
447 EFFECT_CMD_ENABLE,
448 0,
449 NULL,
450 &size,
451 &cmdStatus);
452 if (status == 0) {
453 status = cmdStatus;
454 }
455 if (status == 0 &&
456 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
457 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
458 sp<ThreadBase> thread = mThread.promote();
459 if (thread != 0) {
460 audio_stream_t *stream = thread->stream();
461 if (stream != NULL) {
462 stream->add_audio_effect(stream, mEffectInterface);
463 }
464 }
465 }
466 return status;
467}
468
469status_t AudioFlinger::EffectModule::stop()
470{
471 Mutex::Autolock _l(mLock);
472 return stop_l();
473}
474
475status_t AudioFlinger::EffectModule::stop_l()
476{
477 if (mEffectInterface == NULL) {
478 return NO_INIT;
479 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700480 if (mStatus != NO_ERROR) {
481 return mStatus;
482 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800483 status_t cmdStatus = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800484 uint32_t size = sizeof(status_t);
485 status_t status = (*mEffectInterface)->command(mEffectInterface,
486 EFFECT_CMD_DISABLE,
487 0,
488 NULL,
489 &size,
490 &cmdStatus);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800491 if (status == NO_ERROR) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800492 status = cmdStatus;
493 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800494 if (status == NO_ERROR) {
495 status = remove_effect_from_hal_l();
496 }
497 return status;
498}
499
500status_t AudioFlinger::EffectModule::remove_effect_from_hal_l()
501{
502 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
503 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800504 sp<ThreadBase> thread = mThread.promote();
505 if (thread != 0) {
506 audio_stream_t *stream = thread->stream();
507 if (stream != NULL) {
508 stream->remove_audio_effect(stream, mEffectInterface);
509 }
510 }
511 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800512 return NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800513}
514
515status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
516 uint32_t cmdSize,
517 void *pCmdData,
518 uint32_t *replySize,
519 void *pReplyData)
520{
521 Mutex::Autolock _l(mLock);
522 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
523
524 if (mState == DESTROYED || mEffectInterface == NULL) {
525 return NO_INIT;
526 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700527 if (mStatus != NO_ERROR) {
528 return mStatus;
529 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800530 status_t status = (*mEffectInterface)->command(mEffectInterface,
531 cmdCode,
532 cmdSize,
533 pCmdData,
534 replySize,
535 pReplyData);
536 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
537 uint32_t size = (replySize == NULL) ? 0 : *replySize;
538 for (size_t i = 1; i < mHandles.size(); i++) {
539 EffectHandle *h = mHandles[i];
540 if (h != NULL && !h->destroyed_l()) {
541 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
542 }
543 }
544 }
545 return status;
546}
547
548status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
549{
550 Mutex::Autolock _l(mLock);
551 return setEnabled_l(enabled);
552}
553
554// must be called with EffectModule::mLock held
555status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
556{
557
558 ALOGV("setEnabled %p enabled %d", this, enabled);
559
560 if (enabled != isEnabled()) {
561 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
562 if (enabled && status != NO_ERROR) {
563 return status;
564 }
565
566 switch (mState) {
567 // going from disabled to enabled
568 case IDLE:
569 mState = STARTING;
570 break;
571 case STOPPED:
572 mState = RESTART;
573 break;
574 case STOPPING:
575 mState = ACTIVE;
576 break;
577
578 // going from enabled to disabled
579 case RESTART:
580 mState = STOPPED;
581 break;
582 case STARTING:
583 mState = IDLE;
584 break;
585 case ACTIVE:
586 mState = STOPPING;
587 break;
588 case DESTROYED:
589 return NO_ERROR; // simply ignore as we are being destroyed
590 }
591 for (size_t i = 1; i < mHandles.size(); i++) {
592 EffectHandle *h = mHandles[i];
593 if (h != NULL && !h->destroyed_l()) {
594 h->setEnabled(enabled);
595 }
596 }
597 }
598 return NO_ERROR;
599}
600
601bool AudioFlinger::EffectModule::isEnabled() const
602{
603 switch (mState) {
604 case RESTART:
605 case STARTING:
606 case ACTIVE:
607 return true;
608 case IDLE:
609 case STOPPING:
610 case STOPPED:
611 case DESTROYED:
612 default:
613 return false;
614 }
615}
616
617bool AudioFlinger::EffectModule::isProcessEnabled() const
618{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700619 if (mStatus != NO_ERROR) {
620 return false;
621 }
622
Eric Laurentca7cc822012-11-19 14:55:58 -0800623 switch (mState) {
624 case RESTART:
625 case ACTIVE:
626 case STOPPING:
627 case STOPPED:
628 return true;
629 case IDLE:
630 case STARTING:
631 case DESTROYED:
632 default:
633 return false;
634 }
635}
636
637status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
638{
639 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700640 if (mStatus != NO_ERROR) {
641 return mStatus;
642 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800643 status_t status = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800644 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
645 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
646 if (isProcessEnabled() &&
647 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
648 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
649 status_t cmdStatus;
650 uint32_t volume[2];
651 uint32_t *pVolume = NULL;
652 uint32_t size = sizeof(volume);
653 volume[0] = *left;
654 volume[1] = *right;
655 if (controller) {
656 pVolume = volume;
657 }
658 status = (*mEffectInterface)->command(mEffectInterface,
659 EFFECT_CMD_SET_VOLUME,
660 size,
661 volume,
662 &size,
663 pVolume);
664 if (controller && status == NO_ERROR && size == sizeof(volume)) {
665 *left = volume[0];
666 *right = volume[1];
667 }
668 }
669 return status;
670}
671
672status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
673{
674 if (device == AUDIO_DEVICE_NONE) {
675 return NO_ERROR;
676 }
677
678 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700679 if (mStatus != NO_ERROR) {
680 return mStatus;
681 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800682 status_t status = NO_ERROR;
Eric Laurent7e1139c2013-06-06 18:29:01 -0700683 if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800684 status_t cmdStatus;
685 uint32_t size = sizeof(status_t);
686 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
687 EFFECT_CMD_SET_INPUT_DEVICE;
688 status = (*mEffectInterface)->command(mEffectInterface,
689 cmd,
690 sizeof(uint32_t),
691 &device,
692 &size,
693 &cmdStatus);
694 }
695 return status;
696}
697
698status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
699{
700 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700701 if (mStatus != NO_ERROR) {
702 return mStatus;
703 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800704 status_t status = NO_ERROR;
705 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
706 status_t cmdStatus;
707 uint32_t size = sizeof(status_t);
708 status = (*mEffectInterface)->command(mEffectInterface,
709 EFFECT_CMD_SET_AUDIO_MODE,
710 sizeof(audio_mode_t),
711 &mode,
712 &size,
713 &cmdStatus);
714 if (status == NO_ERROR) {
715 status = cmdStatus;
716 }
717 }
718 return status;
719}
720
721status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
722{
723 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700724 if (mStatus != NO_ERROR) {
725 return mStatus;
726 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800727 status_t status = NO_ERROR;
728 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
729 uint32_t size = 0;
730 status = (*mEffectInterface)->command(mEffectInterface,
731 EFFECT_CMD_SET_AUDIO_SOURCE,
732 sizeof(audio_source_t),
733 &source,
734 &size,
735 NULL);
736 }
737 return status;
738}
739
740void AudioFlinger::EffectModule::setSuspended(bool suspended)
741{
742 Mutex::Autolock _l(mLock);
743 mSuspended = suspended;
744}
745
746bool AudioFlinger::EffectModule::suspended() const
747{
748 Mutex::Autolock _l(mLock);
749 return mSuspended;
750}
751
752bool AudioFlinger::EffectModule::purgeHandles()
753{
754 bool enabled = false;
755 Mutex::Autolock _l(mLock);
756 for (size_t i = 0; i < mHandles.size(); i++) {
757 EffectHandle *handle = mHandles[i];
758 if (handle != NULL && !handle->destroyed_l()) {
759 handle->effect().clear();
760 if (handle->hasControl()) {
761 enabled = handle->enabled();
762 }
763 }
764 }
765 return enabled;
766}
767
Eric Laurent5baf2af2013-09-12 17:37:00 -0700768status_t AudioFlinger::EffectModule::setOffloaded(bool offloaded, audio_io_handle_t io)
769{
770 Mutex::Autolock _l(mLock);
771 if (mStatus != NO_ERROR) {
772 return mStatus;
773 }
774 status_t status = NO_ERROR;
775 if ((mDescriptor.flags & EFFECT_FLAG_OFFLOAD_SUPPORTED) != 0) {
776 status_t cmdStatus;
777 uint32_t size = sizeof(status_t);
778 effect_offload_param_t cmd;
779
780 cmd.isOffload = offloaded;
781 cmd.ioHandle = io;
782 status = (*mEffectInterface)->command(mEffectInterface,
783 EFFECT_CMD_OFFLOAD,
784 sizeof(effect_offload_param_t),
785 &cmd,
786 &size,
787 &cmdStatus);
788 if (status == NO_ERROR) {
789 status = cmdStatus;
790 }
791 mOffloaded = (status == NO_ERROR) ? offloaded : false;
792 } else {
793 if (offloaded) {
794 status = INVALID_OPERATION;
795 }
796 mOffloaded = false;
797 }
798 ALOGV("setOffloaded() offloaded %d io %d status %d", offloaded, io, status);
799 return status;
800}
801
802bool AudioFlinger::EffectModule::isOffloaded() const
803{
804 Mutex::Autolock _l(mLock);
805 return mOffloaded;
806}
807
Eric Laurentca7cc822012-11-19 14:55:58 -0800808void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
809{
810 const size_t SIZE = 256;
811 char buffer[SIZE];
812 String8 result;
813
814 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
815 result.append(buffer);
816
817 bool locked = AudioFlinger::dumpTryLock(mLock);
818 // failed to lock - AudioFlinger is probably deadlocked
819 if (!locked) {
820 result.append("\t\tCould not lock Fx mutex:\n");
821 }
822
823 result.append("\t\tSession Status State Engine:\n");
824 snprintf(buffer, SIZE, "\t\t%05d %03d %03d 0x%08x\n",
825 mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
826 result.append(buffer);
827
828 result.append("\t\tDescriptor:\n");
829 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
830 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
831 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
832 mDescriptor.uuid.node[2],
833 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
834 result.append(buffer);
835 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
836 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
837 mDescriptor.type.timeHiAndVersion,
838 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
839 mDescriptor.type.node[2],
840 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
841 result.append(buffer);
842 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X\n",
843 mDescriptor.apiVersion,
844 mDescriptor.flags);
845 result.append(buffer);
846 snprintf(buffer, SIZE, "\t\t- name: %s\n",
847 mDescriptor.name);
848 result.append(buffer);
849 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
850 mDescriptor.implementor);
851 result.append(buffer);
852
853 result.append("\t\t- Input configuration:\n");
854 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
855 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
856 (uint32_t)mConfig.inputCfg.buffer.raw,
857 mConfig.inputCfg.buffer.frameCount,
858 mConfig.inputCfg.samplingRate,
859 mConfig.inputCfg.channels,
860 mConfig.inputCfg.format);
861 result.append(buffer);
862
863 result.append("\t\t- Output configuration:\n");
864 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
865 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
866 (uint32_t)mConfig.outputCfg.buffer.raw,
867 mConfig.outputCfg.buffer.frameCount,
868 mConfig.outputCfg.samplingRate,
869 mConfig.outputCfg.channels,
870 mConfig.outputCfg.format);
871 result.append(buffer);
872
873 snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
874 result.append(buffer);
875 result.append("\t\t\tPid Priority Ctrl Locked client server\n");
876 for (size_t i = 0; i < mHandles.size(); ++i) {
877 EffectHandle *handle = mHandles[i];
878 if (handle != NULL && !handle->destroyed_l()) {
879 handle->dump(buffer, SIZE);
880 result.append(buffer);
881 }
882 }
883
884 result.append("\n");
885
886 write(fd, result.string(), result.length());
887
888 if (locked) {
889 mLock.unlock();
890 }
891}
892
893// ----------------------------------------------------------------------------
894// EffectHandle implementation
895// ----------------------------------------------------------------------------
896
897#undef LOG_TAG
898#define LOG_TAG "AudioFlinger::EffectHandle"
899
900AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
901 const sp<AudioFlinger::Client>& client,
902 const sp<IEffectClient>& effectClient,
903 int32_t priority)
904 : BnEffect(),
905 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
906 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
907{
908 ALOGV("constructor %p", this);
909
910 if (client == 0) {
911 return;
912 }
913 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
914 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
915 if (mCblkMemory != 0) {
916 mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
917
918 if (mCblk != NULL) {
919 new(mCblk) effect_param_cblk_t();
920 mBuffer = (uint8_t *)mCblk + bufOffset;
921 }
922 } else {
923 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE +
924 sizeof(effect_param_cblk_t));
925 return;
926 }
927}
928
929AudioFlinger::EffectHandle::~EffectHandle()
930{
931 ALOGV("Destructor %p", this);
932
933 if (mEffect == 0) {
934 mDestroyed = true;
935 return;
936 }
937 mEffect->lock();
938 mDestroyed = true;
939 mEffect->unlock();
940 disconnect(false);
941}
942
943status_t AudioFlinger::EffectHandle::enable()
944{
945 ALOGV("enable %p", this);
946 if (!mHasControl) {
947 return INVALID_OPERATION;
948 }
949 if (mEffect == 0) {
950 return DEAD_OBJECT;
951 }
952
953 if (mEnabled) {
954 return NO_ERROR;
955 }
956
957 mEnabled = true;
958
959 sp<ThreadBase> thread = mEffect->thread().promote();
960 if (thread != 0) {
961 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
962 }
963
964 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
965 if (mEffect->suspended()) {
966 return NO_ERROR;
967 }
968
969 status_t status = mEffect->setEnabled(true);
970 if (status != NO_ERROR) {
971 if (thread != 0) {
972 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
973 }
974 mEnabled = false;
Eric Laurent813e2a72013-08-31 12:59:48 -0700975 } else {
Eric Laurent59fe0102013-09-27 18:48:26 -0700976 if (thread != 0) {
977 if (thread->type() == ThreadBase::OFFLOAD) {
Eric Laurent813e2a72013-08-31 12:59:48 -0700978 PlaybackThread *t = (PlaybackThread *)thread.get();
Eric Laurent59fe0102013-09-27 18:48:26 -0700979 Mutex::Autolock _l(t->mLock);
980 t->broadcast_l();
Eric Laurent813e2a72013-08-31 12:59:48 -0700981 }
Eric Laurent59fe0102013-09-27 18:48:26 -0700982 if (!mEffect->isOffloadable()) {
983 if (thread->type() == ThreadBase::OFFLOAD) {
984 PlaybackThread *t = (PlaybackThread *)thread.get();
985 t->invalidateTracks(AUDIO_STREAM_MUSIC);
986 }
987 if (mEffect->sessionId() == AUDIO_SESSION_OUTPUT_MIX) {
988 thread->mAudioFlinger->onNonOffloadableGlobalEffectEnable();
989 }
Eric Laurent813e2a72013-08-31 12:59:48 -0700990 }
991 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800992 }
993 return status;
994}
995
996status_t AudioFlinger::EffectHandle::disable()
997{
998 ALOGV("disable %p", this);
999 if (!mHasControl) {
1000 return INVALID_OPERATION;
1001 }
1002 if (mEffect == 0) {
1003 return DEAD_OBJECT;
1004 }
1005
1006 if (!mEnabled) {
1007 return NO_ERROR;
1008 }
1009 mEnabled = false;
1010
1011 if (mEffect->suspended()) {
1012 return NO_ERROR;
1013 }
1014
1015 status_t status = mEffect->setEnabled(false);
1016
1017 sp<ThreadBase> thread = mEffect->thread().promote();
1018 if (thread != 0) {
1019 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
Eric Laurent59fe0102013-09-27 18:48:26 -07001020 if (thread->type() == ThreadBase::OFFLOAD) {
1021 PlaybackThread *t = (PlaybackThread *)thread.get();
1022 Mutex::Autolock _l(t->mLock);
1023 t->broadcast_l();
1024 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001025 }
1026
1027 return status;
1028}
1029
1030void AudioFlinger::EffectHandle::disconnect()
1031{
1032 disconnect(true);
1033}
1034
1035void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
1036{
1037 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1038 if (mEffect == 0) {
1039 return;
1040 }
1041 // restore suspended effects if the disconnected handle was enabled and the last one.
1042 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
1043 sp<ThreadBase> thread = mEffect->thread().promote();
1044 if (thread != 0) {
1045 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1046 }
1047 }
1048
1049 // release sp on module => module destructor can be called now
1050 mEffect.clear();
1051 if (mClient != 0) {
1052 if (mCblk != NULL) {
1053 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
1054 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
1055 }
1056 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
1057 // Client destructor must run with AudioFlinger mutex locked
1058 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
1059 mClient.clear();
1060 }
1061}
1062
1063status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
1064 uint32_t cmdSize,
1065 void *pCmdData,
1066 uint32_t *replySize,
1067 void *pReplyData)
1068{
1069 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
1070 cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
1071
1072 // only get parameter command is permitted for applications not controlling the effect
1073 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1074 return INVALID_OPERATION;
1075 }
1076 if (mEffect == 0) {
1077 return DEAD_OBJECT;
1078 }
1079 if (mClient == 0) {
1080 return INVALID_OPERATION;
1081 }
1082
1083 // handle commands that are not forwarded transparently to effect engine
1084 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
1085 // No need to trylock() here as this function is executed in the binder thread serving a
1086 // particular client process: no risk to block the whole media server process or mixer
1087 // threads if we are stuck here
1088 Mutex::Autolock _l(mCblk->lock);
1089 if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1090 mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
1091 mCblk->serverIndex = 0;
1092 mCblk->clientIndex = 0;
1093 return BAD_VALUE;
1094 }
1095 status_t status = NO_ERROR;
1096 while (mCblk->serverIndex < mCblk->clientIndex) {
1097 int reply;
1098 uint32_t rsize = sizeof(int);
1099 int *p = (int *)(mBuffer + mCblk->serverIndex);
1100 int size = *p++;
1101 if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
1102 ALOGW("command(): invalid parameter block size");
1103 break;
1104 }
1105 effect_param_t *param = (effect_param_t *)p;
1106 if (param->psize == 0 || param->vsize == 0) {
1107 ALOGW("command(): null parameter or value size");
1108 mCblk->serverIndex += size;
1109 continue;
1110 }
1111 uint32_t psize = sizeof(effect_param_t) +
1112 ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
1113 param->vsize;
1114 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
1115 psize,
1116 p,
1117 &rsize,
1118 &reply);
1119 // stop at first error encountered
1120 if (ret != NO_ERROR) {
1121 status = ret;
1122 *(int *)pReplyData = reply;
1123 break;
1124 } else if (reply != NO_ERROR) {
1125 *(int *)pReplyData = reply;
1126 break;
1127 }
1128 mCblk->serverIndex += size;
1129 }
1130 mCblk->serverIndex = 0;
1131 mCblk->clientIndex = 0;
1132 return status;
1133 } else if (cmdCode == EFFECT_CMD_ENABLE) {
1134 *(int *)pReplyData = NO_ERROR;
1135 return enable();
1136 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1137 *(int *)pReplyData = NO_ERROR;
1138 return disable();
1139 }
1140
1141 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1142}
1143
1144void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1145{
1146 ALOGV("setControl %p control %d", this, hasControl);
1147
1148 mHasControl = hasControl;
1149 mEnabled = enabled;
1150
1151 if (signal && mEffectClient != 0) {
1152 mEffectClient->controlStatusChanged(hasControl);
1153 }
1154}
1155
1156void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1157 uint32_t cmdSize,
1158 void *pCmdData,
1159 uint32_t replySize,
1160 void *pReplyData)
1161{
1162 if (mEffectClient != 0) {
1163 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1164 }
1165}
1166
1167
1168
1169void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1170{
1171 if (mEffectClient != 0) {
1172 mEffectClient->enableStatusChanged(enabled);
1173 }
1174}
1175
1176status_t AudioFlinger::EffectHandle::onTransact(
1177 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1178{
1179 return BnEffect::onTransact(code, data, reply, flags);
1180}
1181
1182
1183void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
1184{
1185 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1186
1187 snprintf(buffer, size, "\t\t\t%05d %05d %01u %01u %05u %05u\n",
1188 (mClient == 0) ? getpid_cached : mClient->pid(),
1189 mPriority,
1190 mHasControl,
1191 !locked,
1192 mCblk ? mCblk->clientIndex : 0,
1193 mCblk ? mCblk->serverIndex : 0
1194 );
1195
1196 if (locked) {
1197 mCblk->lock.unlock();
1198 }
1199}
1200
1201#undef LOG_TAG
1202#define LOG_TAG "AudioFlinger::EffectChain"
1203
1204AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
1205 int sessionId)
1206 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1207 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
1208 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
1209{
1210 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1211 if (thread == NULL) {
1212 return;
1213 }
1214 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1215 thread->frameCount();
1216}
1217
1218AudioFlinger::EffectChain::~EffectChain()
1219{
1220 if (mOwnInBuffer) {
1221 delete mInBuffer;
1222 }
1223
1224}
1225
1226// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1227sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1228 effect_descriptor_t *descriptor)
1229{
1230 size_t size = mEffects.size();
1231
1232 for (size_t i = 0; i < size; i++) {
1233 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1234 return mEffects[i];
1235 }
1236 }
1237 return 0;
1238}
1239
1240// getEffectFromId_l() must be called with ThreadBase::mLock held
1241sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1242{
1243 size_t size = mEffects.size();
1244
1245 for (size_t i = 0; i < size; i++) {
1246 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1247 if (id == 0 || mEffects[i]->id() == id) {
1248 return mEffects[i];
1249 }
1250 }
1251 return 0;
1252}
1253
1254// getEffectFromType_l() must be called with ThreadBase::mLock held
1255sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1256 const effect_uuid_t *type)
1257{
1258 size_t size = mEffects.size();
1259
1260 for (size_t i = 0; i < size; i++) {
1261 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1262 return mEffects[i];
1263 }
1264 }
1265 return 0;
1266}
1267
1268void AudioFlinger::EffectChain::clearInputBuffer()
1269{
1270 Mutex::Autolock _l(mLock);
1271 sp<ThreadBase> thread = mThread.promote();
1272 if (thread == 0) {
1273 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1274 return;
1275 }
1276 clearInputBuffer_l(thread);
1277}
1278
1279// Must be called with EffectChain::mLock locked
1280void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1281{
Eric Laurentbfb1b832013-01-07 09:53:42 -08001282 memset(mInBuffer, 0, thread->frameCount() * thread->frameSize());
Eric Laurentca7cc822012-11-19 14:55:58 -08001283}
1284
1285// Must be called with EffectChain::mLock locked
1286void AudioFlinger::EffectChain::process_l()
1287{
1288 sp<ThreadBase> thread = mThread.promote();
1289 if (thread == 0) {
1290 ALOGW("process_l(): cannot promote mixer thread");
1291 return;
1292 }
1293 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1294 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001295 // never process effects when:
1296 // - on an OFFLOAD thread
1297 // - no more tracks are on the session and the effect tail has been rendered
1298 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001299 if (!isGlobalSession) {
1300 bool tracksOnSession = (trackCnt() != 0);
1301
1302 if (!tracksOnSession && mTailBufferCount == 0) {
1303 doProcess = false;
1304 }
1305
1306 if (activeTrackCnt() == 0) {
1307 // if no track is active and the effect tail has not been rendered,
1308 // the input buffer must be cleared here as the mixer process will not do it
1309 if (tracksOnSession || mTailBufferCount > 0) {
1310 clearInputBuffer_l(thread);
1311 if (mTailBufferCount > 0) {
1312 mTailBufferCount--;
1313 }
1314 }
1315 }
1316 }
1317
1318 size_t size = mEffects.size();
1319 if (doProcess) {
1320 for (size_t i = 0; i < size; i++) {
1321 mEffects[i]->process();
1322 }
1323 }
1324 for (size_t i = 0; i < size; i++) {
1325 mEffects[i]->updateState();
1326 }
1327}
1328
1329// addEffect_l() must be called with PlaybackThread::mLock held
1330status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1331{
1332 effect_descriptor_t desc = effect->desc();
1333 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1334
1335 Mutex::Autolock _l(mLock);
1336 effect->setChain(this);
1337 sp<ThreadBase> thread = mThread.promote();
1338 if (thread == 0) {
1339 return NO_INIT;
1340 }
1341 effect->setThread(thread);
1342
1343 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1344 // Auxiliary effects are inserted at the beginning of mEffects vector as
1345 // they are processed first and accumulated in chain input buffer
1346 mEffects.insertAt(effect, 0);
1347
1348 // the input buffer for auxiliary effect contains mono samples in
1349 // 32 bit format. This is to avoid saturation in AudoMixer
1350 // accumulation stage. Saturation is done in EffectModule::process() before
1351 // calling the process in effect engine
1352 size_t numSamples = thread->frameCount();
1353 int32_t *buffer = new int32_t[numSamples];
1354 memset(buffer, 0, numSamples * sizeof(int32_t));
1355 effect->setInBuffer((int16_t *)buffer);
1356 // auxiliary effects output samples to chain input buffer for further processing
1357 // by insert effects
1358 effect->setOutBuffer(mInBuffer);
1359 } else {
1360 // Insert effects are inserted at the end of mEffects vector as they are processed
1361 // after track and auxiliary effects.
1362 // Insert effect order as a function of indicated preference:
1363 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1364 // another effect is present
1365 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1366 // last effect claiming first position
1367 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1368 // first effect claiming last position
1369 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1370 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1371 // already present
1372
1373 size_t size = mEffects.size();
1374 size_t idx_insert = size;
1375 ssize_t idx_insert_first = -1;
1376 ssize_t idx_insert_last = -1;
1377
1378 for (size_t i = 0; i < size; i++) {
1379 effect_descriptor_t d = mEffects[i]->desc();
1380 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1381 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1382 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1383 // check invalid effect chaining combinations
1384 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1385 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1386 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1387 desc.name, d.name);
1388 return INVALID_OPERATION;
1389 }
1390 // remember position of first insert effect and by default
1391 // select this as insert position for new effect
1392 if (idx_insert == size) {
1393 idx_insert = i;
1394 }
1395 // remember position of last insert effect claiming
1396 // first position
1397 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1398 idx_insert_first = i;
1399 }
1400 // remember position of first insert effect claiming
1401 // last position
1402 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1403 idx_insert_last == -1) {
1404 idx_insert_last = i;
1405 }
1406 }
1407 }
1408
1409 // modify idx_insert from first position if needed
1410 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1411 if (idx_insert_last != -1) {
1412 idx_insert = idx_insert_last;
1413 } else {
1414 idx_insert = size;
1415 }
1416 } else {
1417 if (idx_insert_first != -1) {
1418 idx_insert = idx_insert_first + 1;
1419 }
1420 }
1421
1422 // always read samples from chain input buffer
1423 effect->setInBuffer(mInBuffer);
1424
1425 // if last effect in the chain, output samples to chain
1426 // output buffer, otherwise to chain input buffer
1427 if (idx_insert == size) {
1428 if (idx_insert != 0) {
1429 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1430 mEffects[idx_insert-1]->configure();
1431 }
1432 effect->setOutBuffer(mOutBuffer);
1433 } else {
1434 effect->setOutBuffer(mInBuffer);
1435 }
1436 mEffects.insertAt(effect, idx_insert);
1437
1438 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this,
1439 idx_insert);
1440 }
1441 effect->configure();
1442 return NO_ERROR;
1443}
1444
1445// removeEffect_l() must be called with PlaybackThread::mLock held
1446size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
1447{
1448 Mutex::Autolock _l(mLock);
1449 size_t size = mEffects.size();
1450 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1451
1452 for (size_t i = 0; i < size; i++) {
1453 if (effect == mEffects[i]) {
1454 // calling stop here will remove pre-processing effect from the audio HAL.
1455 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1456 // the middle of a read from audio HAL
1457 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1458 mEffects[i]->state() == EffectModule::STOPPING) {
1459 mEffects[i]->stop();
1460 }
1461 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1462 delete[] effect->inBuffer();
1463 } else {
1464 if (i == size - 1 && i != 0) {
1465 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1466 mEffects[i - 1]->configure();
1467 }
1468 }
1469 mEffects.removeAt(i);
1470 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(),
1471 this, i);
1472 break;
1473 }
1474 }
1475
1476 return mEffects.size();
1477}
1478
1479// setDevice_l() must be called with PlaybackThread::mLock held
1480void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1481{
1482 size_t size = mEffects.size();
1483 for (size_t i = 0; i < size; i++) {
1484 mEffects[i]->setDevice(device);
1485 }
1486}
1487
1488// setMode_l() must be called with PlaybackThread::mLock held
1489void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1490{
1491 size_t size = mEffects.size();
1492 for (size_t i = 0; i < size; i++) {
1493 mEffects[i]->setMode(mode);
1494 }
1495}
1496
1497// setAudioSource_l() must be called with PlaybackThread::mLock held
1498void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1499{
1500 size_t size = mEffects.size();
1501 for (size_t i = 0; i < size; i++) {
1502 mEffects[i]->setAudioSource(source);
1503 }
1504}
1505
1506// setVolume_l() must be called with PlaybackThread::mLock held
1507bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
1508{
1509 uint32_t newLeft = *left;
1510 uint32_t newRight = *right;
1511 bool hasControl = false;
1512 int ctrlIdx = -1;
1513 size_t size = mEffects.size();
1514
1515 // first update volume controller
1516 for (size_t i = size; i > 0; i--) {
1517 if (mEffects[i - 1]->isProcessEnabled() &&
1518 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1519 ctrlIdx = i - 1;
1520 hasControl = true;
1521 break;
1522 }
1523 }
1524
1525 if (ctrlIdx == mVolumeCtrlIdx && *left == mLeftVolume && *right == mRightVolume) {
1526 if (hasControl) {
1527 *left = mNewLeftVolume;
1528 *right = mNewRightVolume;
1529 }
1530 return hasControl;
1531 }
1532
1533 mVolumeCtrlIdx = ctrlIdx;
1534 mLeftVolume = newLeft;
1535 mRightVolume = newRight;
1536
1537 // second get volume update from volume controller
1538 if (ctrlIdx >= 0) {
1539 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1540 mNewLeftVolume = newLeft;
1541 mNewRightVolume = newRight;
1542 }
1543 // then indicate volume to all other effects in chain.
1544 // Pass altered volume to effects before volume controller
1545 // and requested volume to effects after controller
1546 uint32_t lVol = newLeft;
1547 uint32_t rVol = newRight;
1548
1549 for (size_t i = 0; i < size; i++) {
1550 if ((int)i == ctrlIdx) {
1551 continue;
1552 }
1553 // this also works for ctrlIdx == -1 when there is no volume controller
1554 if ((int)i > ctrlIdx) {
1555 lVol = *left;
1556 rVol = *right;
1557 }
1558 mEffects[i]->setVolume(&lVol, &rVol, false);
1559 }
1560 *left = newLeft;
1561 *right = newRight;
1562
1563 return hasControl;
1564}
1565
1566void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1567{
1568 const size_t SIZE = 256;
1569 char buffer[SIZE];
1570 String8 result;
1571
1572 snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
1573 result.append(buffer);
1574
1575 bool locked = AudioFlinger::dumpTryLock(mLock);
1576 // failed to lock - AudioFlinger is probably deadlocked
1577 if (!locked) {
1578 result.append("\tCould not lock mutex:\n");
1579 }
1580
1581 result.append("\tNum fx In buffer Out buffer Active tracks:\n");
1582 snprintf(buffer, SIZE, "\t%02d 0x%08x 0x%08x %d\n",
1583 mEffects.size(),
1584 (uint32_t)mInBuffer,
1585 (uint32_t)mOutBuffer,
1586 mActiveTrackCnt);
1587 result.append(buffer);
1588 write(fd, result.string(), result.size());
1589
1590 for (size_t i = 0; i < mEffects.size(); ++i) {
1591 sp<EffectModule> effect = mEffects[i];
1592 if (effect != 0) {
1593 effect->dump(fd, args);
1594 }
1595 }
1596
1597 if (locked) {
1598 mLock.unlock();
1599 }
1600}
1601
1602// must be called with ThreadBase::mLock held
1603void AudioFlinger::EffectChain::setEffectSuspended_l(
1604 const effect_uuid_t *type, bool suspend)
1605{
1606 sp<SuspendedEffectDesc> desc;
1607 // use effect type UUID timelow as key as there is no real risk of identical
1608 // timeLow fields among effect type UUIDs.
1609 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1610 if (suspend) {
1611 if (index >= 0) {
1612 desc = mSuspendedEffects.valueAt(index);
1613 } else {
1614 desc = new SuspendedEffectDesc();
1615 desc->mType = *type;
1616 mSuspendedEffects.add(type->timeLow, desc);
1617 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1618 }
1619 if (desc->mRefCount++ == 0) {
1620 sp<EffectModule> effect = getEffectIfEnabled(type);
1621 if (effect != 0) {
1622 desc->mEffect = effect;
1623 effect->setSuspended(true);
1624 effect->setEnabled(false);
1625 }
1626 }
1627 } else {
1628 if (index < 0) {
1629 return;
1630 }
1631 desc = mSuspendedEffects.valueAt(index);
1632 if (desc->mRefCount <= 0) {
1633 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1634 desc->mRefCount = 1;
1635 }
1636 if (--desc->mRefCount == 0) {
1637 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1638 if (desc->mEffect != 0) {
1639 sp<EffectModule> effect = desc->mEffect.promote();
1640 if (effect != 0) {
1641 effect->setSuspended(false);
1642 effect->lock();
1643 EffectHandle *handle = effect->controlHandle_l();
1644 if (handle != NULL && !handle->destroyed_l()) {
1645 effect->setEnabled_l(handle->enabled());
1646 }
1647 effect->unlock();
1648 }
1649 desc->mEffect.clear();
1650 }
1651 mSuspendedEffects.removeItemsAt(index);
1652 }
1653 }
1654}
1655
1656// must be called with ThreadBase::mLock held
1657void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1658{
1659 sp<SuspendedEffectDesc> desc;
1660
1661 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1662 if (suspend) {
1663 if (index >= 0) {
1664 desc = mSuspendedEffects.valueAt(index);
1665 } else {
1666 desc = new SuspendedEffectDesc();
1667 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1668 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1669 }
1670 if (desc->mRefCount++ == 0) {
1671 Vector< sp<EffectModule> > effects;
1672 getSuspendEligibleEffects(effects);
1673 for (size_t i = 0; i < effects.size(); i++) {
1674 setEffectSuspended_l(&effects[i]->desc().type, true);
1675 }
1676 }
1677 } else {
1678 if (index < 0) {
1679 return;
1680 }
1681 desc = mSuspendedEffects.valueAt(index);
1682 if (desc->mRefCount <= 0) {
1683 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
1684 desc->mRefCount = 1;
1685 }
1686 if (--desc->mRefCount == 0) {
1687 Vector<const effect_uuid_t *> types;
1688 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
1689 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
1690 continue;
1691 }
1692 types.add(&mSuspendedEffects.valueAt(i)->mType);
1693 }
1694 for (size_t i = 0; i < types.size(); i++) {
1695 setEffectSuspended_l(types[i], false);
1696 }
1697 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
1698 mSuspendedEffects.keyAt(index));
1699 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
1700 }
1701 }
1702}
1703
1704
1705// The volume effect is used for automated tests only
1706#ifndef OPENSL_ES_H_
1707static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
1708 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
1709const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
1710#endif //OPENSL_ES_H_
1711
1712bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
1713{
1714 // auxiliary effects and visualizer are never suspended on output mix
1715 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
1716 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
1717 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
1718 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
1719 return false;
1720 }
1721 return true;
1722}
1723
1724void AudioFlinger::EffectChain::getSuspendEligibleEffects(
1725 Vector< sp<AudioFlinger::EffectModule> > &effects)
1726{
1727 effects.clear();
1728 for (size_t i = 0; i < mEffects.size(); i++) {
1729 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
1730 effects.add(mEffects[i]);
1731 }
1732 }
1733}
1734
1735sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
1736 const effect_uuid_t *type)
1737{
1738 sp<EffectModule> effect = getEffectFromType_l(type);
1739 return effect != 0 && effect->isEnabled() ? effect : 0;
1740}
1741
1742void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1743 bool enabled)
1744{
1745 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1746 if (enabled) {
1747 if (index < 0) {
1748 // if the effect is not suspend check if all effects are suspended
1749 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1750 if (index < 0) {
1751 return;
1752 }
1753 if (!isEffectEligibleForSuspend(effect->desc())) {
1754 return;
1755 }
1756 setEffectSuspended_l(&effect->desc().type, enabled);
1757 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1758 if (index < 0) {
1759 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
1760 return;
1761 }
1762 }
1763 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
1764 effect->desc().type.timeLow);
1765 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
1766 // if effect is requested to suspended but was not yet enabled, supend it now.
1767 if (desc->mEffect == 0) {
1768 desc->mEffect = effect;
1769 effect->setEnabled(false);
1770 effect->setSuspended(true);
1771 }
1772 } else {
1773 if (index < 0) {
1774 return;
1775 }
1776 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
1777 effect->desc().type.timeLow);
1778 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
1779 desc->mEffect.clear();
1780 effect->setSuspended(false);
1781 }
1782}
1783
Eric Laurent5baf2af2013-09-12 17:37:00 -07001784bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07001785{
1786 Mutex::Autolock _l(mLock);
1787 size_t size = mEffects.size();
1788 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07001789 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001790 return true;
1791 }
1792 }
1793 return false;
1794}
1795
Eric Laurentca7cc822012-11-19 14:55:58 -08001796}; // namespace android