blob: 401ae180b8ee96528211c47d2d2ecbe44fb4de26 [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,
Glenn Kastend848eb42016-03-08 13:42:11 -080062 audio_session_t sessionId)
Eric Laurentca7cc822012-11-19 14:55:58 -080063 : 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 }
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700141 ALOGV("addHandle() %p added handle %p in position %zu", this, handle, i);
Eric Laurentca7cc822012-11-19 14:55:58 -0800142 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 }
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700159 ALOGV("removeHandle() %p removed handle %p in position %zu", this, handle, i);
Eric Laurentca7cc822012-11-19 14:55:58 -0800160
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();
Ricardo Garciad11da702015-05-28 12:14:12 -0700338 mConfig.outputCfg.channels = channelMask;
Eric Laurentca7cc822012-11-19 14:55:58 -0800339
340 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
341 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
342 } else {
343 mConfig.inputCfg.channels = channelMask;
Ricardo Garciad11da702015-05-28 12:14:12 -0700344 // TODO: Update this logic when multichannel effects are implemented.
345 // For offloaded tracks consider mono output as stereo for proper effect initialization
346 if (channelMask == AUDIO_CHANNEL_OUT_MONO) {
347 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
348 mConfig.outputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
349 ALOGV("Overriding effect input and output as STEREO");
350 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800351 }
Ricardo Garciad11da702015-05-28 12:14:12 -0700352
Eric Laurentca7cc822012-11-19 14:55:58 -0800353 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
354 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
355 mConfig.inputCfg.samplingRate = thread->sampleRate();
356 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
357 mConfig.inputCfg.bufferProvider.cookie = NULL;
358 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
359 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
360 mConfig.outputCfg.bufferProvider.cookie = NULL;
361 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
362 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
363 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
364 // Insert effect:
365 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
366 // always overwrites output buffer: input buffer == output buffer
367 // - in other sessions:
368 // last effect in the chain accumulates in output buffer: input buffer != output buffer
369 // other effect: overwrites output buffer: input buffer == output buffer
370 // Auxiliary effect:
371 // accumulates in output buffer: input buffer != output buffer
372 // Therefore: accumulate <=> input buffer != output buffer
373 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
374 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
375 } else {
376 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
377 }
378 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
379 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
380 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
381 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
382
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700383 ALOGV("configure() %p thread %p buffer %p framecount %zu",
Eric Laurentca7cc822012-11-19 14:55:58 -0800384 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
385
386 status_t cmdStatus;
Eric Laurentd0ebb532013-04-02 16:41:41 -0700387 size = sizeof(int);
388 status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurentca7cc822012-11-19 14:55:58 -0800389 EFFECT_CMD_SET_CONFIG,
390 sizeof(effect_config_t),
391 &mConfig,
392 &size,
393 &cmdStatus);
394 if (status == 0) {
395 status = cmdStatus;
396 }
397
398 if (status == 0 &&
399 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
400 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
401 effect_param_t *p = (effect_param_t *)buf32;
402
403 p->psize = sizeof(uint32_t);
404 p->vsize = sizeof(uint32_t);
405 size = sizeof(int);
406 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
407
408 uint32_t latency = 0;
409 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
410 if (pbt != NULL) {
411 latency = pbt->latency_l();
412 }
413
414 *((int32_t *)p->data + 1)= latency;
415 (*mEffectInterface)->command(mEffectInterface,
416 EFFECT_CMD_SET_PARAM,
417 sizeof(effect_param_t) + 8,
418 &buf32,
419 &size,
420 &cmdStatus);
421 }
422
423 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
424 (1000 * mConfig.outputCfg.buffer.frameCount);
425
Eric Laurentd0ebb532013-04-02 16:41:41 -0700426exit:
427 mStatus = status;
Eric Laurentca7cc822012-11-19 14:55:58 -0800428 return status;
429}
430
431status_t AudioFlinger::EffectModule::init()
432{
433 Mutex::Autolock _l(mLock);
434 if (mEffectInterface == NULL) {
435 return NO_INIT;
436 }
437 status_t cmdStatus;
438 uint32_t size = sizeof(status_t);
439 status_t status = (*mEffectInterface)->command(mEffectInterface,
440 EFFECT_CMD_INIT,
441 0,
442 NULL,
443 &size,
444 &cmdStatus);
445 if (status == 0) {
446 status = cmdStatus;
447 }
448 return status;
449}
450
Eric Laurent1b928682014-10-02 19:41:47 -0700451void AudioFlinger::EffectModule::addEffectToHal_l()
452{
453 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
454 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
455 sp<ThreadBase> thread = mThread.promote();
456 if (thread != 0) {
457 audio_stream_t *stream = thread->stream();
458 if (stream != NULL) {
459 stream->add_audio_effect(stream, mEffectInterface);
460 }
461 }
462 }
463}
464
Eric Laurentca7cc822012-11-19 14:55:58 -0800465status_t AudioFlinger::EffectModule::start()
466{
467 Mutex::Autolock _l(mLock);
468 return start_l();
469}
470
471status_t AudioFlinger::EffectModule::start_l()
472{
473 if (mEffectInterface == NULL) {
474 return NO_INIT;
475 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700476 if (mStatus != NO_ERROR) {
477 return mStatus;
478 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800479 status_t cmdStatus;
480 uint32_t size = sizeof(status_t);
481 status_t status = (*mEffectInterface)->command(mEffectInterface,
482 EFFECT_CMD_ENABLE,
483 0,
484 NULL,
485 &size,
486 &cmdStatus);
487 if (status == 0) {
488 status = cmdStatus;
489 }
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700490 if (status == 0) {
Eric Laurent1b928682014-10-02 19:41:47 -0700491 addEffectToHal_l();
Eric Laurentcb4b6e92014-10-01 14:26:10 -0700492 sp<EffectChain> chain = mChain.promote();
493 if (chain != 0) {
494 chain->forceVolume();
495 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800496 }
497 return status;
498}
499
500status_t AudioFlinger::EffectModule::stop()
501{
502 Mutex::Autolock _l(mLock);
503 return stop_l();
504}
505
506status_t AudioFlinger::EffectModule::stop_l()
507{
508 if (mEffectInterface == NULL) {
509 return NO_INIT;
510 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700511 if (mStatus != NO_ERROR) {
512 return mStatus;
513 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800514 status_t cmdStatus = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800515 uint32_t size = sizeof(status_t);
516 status_t status = (*mEffectInterface)->command(mEffectInterface,
517 EFFECT_CMD_DISABLE,
518 0,
519 NULL,
520 &size,
521 &cmdStatus);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800522 if (status == NO_ERROR) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800523 status = cmdStatus;
524 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800525 if (status == NO_ERROR) {
526 status = remove_effect_from_hal_l();
527 }
528 return status;
529}
530
531status_t AudioFlinger::EffectModule::remove_effect_from_hal_l()
532{
533 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
534 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800535 sp<ThreadBase> thread = mThread.promote();
536 if (thread != 0) {
537 audio_stream_t *stream = thread->stream();
538 if (stream != NULL) {
539 stream->remove_audio_effect(stream, mEffectInterface);
540 }
541 }
542 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800543 return NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800544}
545
Andy Hunge4a1d912016-08-17 14:11:13 -0700546// round up delta valid if value and divisor are positive.
547template <typename T>
548static T roundUpDelta(const T &value, const T &divisor) {
549 T remainder = value % divisor;
550 return remainder == 0 ? 0 : divisor - remainder;
551}
552
Eric Laurentca7cc822012-11-19 14:55:58 -0800553status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
554 uint32_t cmdSize,
555 void *pCmdData,
556 uint32_t *replySize,
557 void *pReplyData)
558{
559 Mutex::Autolock _l(mLock);
560 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
561
562 if (mState == DESTROYED || mEffectInterface == NULL) {
563 return NO_INIT;
564 }
Eric Laurentd0ebb532013-04-02 16:41:41 -0700565 if (mStatus != NO_ERROR) {
566 return mStatus;
567 }
Andy Hung110bc952016-06-20 15:22:52 -0700568 if (cmdCode == EFFECT_CMD_GET_PARAM &&
569 (*replySize < sizeof(effect_param_t) ||
570 ((effect_param_t *)pCmdData)->psize > *replySize - sizeof(effect_param_t))) {
571 android_errorWriteLog(0x534e4554, "29251553");
572 return -EINVAL;
573 }
Andy Hung3d34cc72016-11-04 19:40:53 -0700574 if (cmdCode == EFFECT_CMD_GET_PARAM &&
575 (sizeof(effect_param_t) > cmdSize ||
576 ((effect_param_t *)pCmdData)->psize > cmdSize
577 - sizeof(effect_param_t))) {
578 android_errorWriteLog(0x534e4554, "32438594");
579 return -EINVAL;
580 }
ragoe2759072016-11-22 18:02:48 -0800581 if (cmdCode == EFFECT_CMD_GET_PARAM &&
582 (sizeof(effect_param_t) > *replySize
583 || ((effect_param_t *)pCmdData)->psize > *replySize
584 - sizeof(effect_param_t)
585 || ((effect_param_t *)pCmdData)->vsize > *replySize
586 - sizeof(effect_param_t)
587 - ((effect_param_t *)pCmdData)->psize
588 || roundUpDelta(((effect_param_t *)pCmdData)->psize, (uint32_t)sizeof(int)) >
589 *replySize
590 - sizeof(effect_param_t)
591 - ((effect_param_t *)pCmdData)->psize
592 - ((effect_param_t *)pCmdData)->vsize)) {
593 ALOGV("\tLVM_ERROR : EFFECT_CMD_GET_PARAM: reply size inconsistent");
594 android_errorWriteLog(0x534e4554, "32705438");
595 return -EINVAL;
596 }
Andy Hunge4a1d912016-08-17 14:11:13 -0700597 if ((cmdCode == EFFECT_CMD_SET_PARAM
598 || cmdCode == EFFECT_CMD_SET_PARAM_DEFERRED) && // DEFERRED not generally used
599 (sizeof(effect_param_t) > cmdSize
600 || ((effect_param_t *)pCmdData)->psize > cmdSize
601 - sizeof(effect_param_t)
602 || ((effect_param_t *)pCmdData)->vsize > cmdSize
603 - sizeof(effect_param_t)
604 - ((effect_param_t *)pCmdData)->psize
605 || roundUpDelta(((effect_param_t *)pCmdData)->psize, (uint32_t)sizeof(int)) >
606 cmdSize
607 - sizeof(effect_param_t)
608 - ((effect_param_t *)pCmdData)->psize
609 - ((effect_param_t *)pCmdData)->vsize)) {
610 android_errorWriteLog(0x534e4554, "30204301");
611 return -EINVAL;
612 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800613 status_t status = (*mEffectInterface)->command(mEffectInterface,
614 cmdCode,
615 cmdSize,
616 pCmdData,
617 replySize,
618 pReplyData);
619 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
620 uint32_t size = (replySize == NULL) ? 0 : *replySize;
621 for (size_t i = 1; i < mHandles.size(); i++) {
622 EffectHandle *h = mHandles[i];
623 if (h != NULL && !h->destroyed_l()) {
624 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
625 }
626 }
627 }
628 return status;
629}
630
631status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
632{
633 Mutex::Autolock _l(mLock);
634 return setEnabled_l(enabled);
635}
636
637// must be called with EffectModule::mLock held
638status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
639{
640
641 ALOGV("setEnabled %p enabled %d", this, enabled);
642
643 if (enabled != isEnabled()) {
644 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
645 if (enabled && status != NO_ERROR) {
646 return status;
647 }
648
649 switch (mState) {
650 // going from disabled to enabled
651 case IDLE:
652 mState = STARTING;
653 break;
654 case STOPPED:
655 mState = RESTART;
656 break;
657 case STOPPING:
658 mState = ACTIVE;
659 break;
660
661 // going from enabled to disabled
662 case RESTART:
663 mState = STOPPED;
664 break;
665 case STARTING:
666 mState = IDLE;
667 break;
668 case ACTIVE:
669 mState = STOPPING;
670 break;
671 case DESTROYED:
672 return NO_ERROR; // simply ignore as we are being destroyed
673 }
674 for (size_t i = 1; i < mHandles.size(); i++) {
675 EffectHandle *h = mHandles[i];
676 if (h != NULL && !h->destroyed_l()) {
677 h->setEnabled(enabled);
678 }
679 }
680 }
681 return NO_ERROR;
682}
683
684bool AudioFlinger::EffectModule::isEnabled() const
685{
686 switch (mState) {
687 case RESTART:
688 case STARTING:
689 case ACTIVE:
690 return true;
691 case IDLE:
692 case STOPPING:
693 case STOPPED:
694 case DESTROYED:
695 default:
696 return false;
697 }
698}
699
700bool AudioFlinger::EffectModule::isProcessEnabled() const
701{
Eric Laurentd0ebb532013-04-02 16:41:41 -0700702 if (mStatus != NO_ERROR) {
703 return false;
704 }
705
Eric Laurentca7cc822012-11-19 14:55:58 -0800706 switch (mState) {
707 case RESTART:
708 case ACTIVE:
709 case STOPPING:
710 case STOPPED:
711 return true;
712 case IDLE:
713 case STARTING:
714 case DESTROYED:
715 default:
716 return false;
717 }
718}
719
720status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
721{
722 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700723 if (mStatus != NO_ERROR) {
724 return mStatus;
725 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800726 status_t status = NO_ERROR;
Eric Laurentca7cc822012-11-19 14:55:58 -0800727 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
728 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
729 if (isProcessEnabled() &&
730 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
731 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800732 uint32_t volume[2];
733 uint32_t *pVolume = NULL;
734 uint32_t size = sizeof(volume);
735 volume[0] = *left;
736 volume[1] = *right;
737 if (controller) {
738 pVolume = volume;
739 }
740 status = (*mEffectInterface)->command(mEffectInterface,
741 EFFECT_CMD_SET_VOLUME,
742 size,
743 volume,
744 &size,
745 pVolume);
746 if (controller && status == NO_ERROR && size == sizeof(volume)) {
747 *left = volume[0];
748 *right = volume[1];
749 }
750 }
751 return status;
752}
753
754status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
755{
756 if (device == AUDIO_DEVICE_NONE) {
757 return NO_ERROR;
758 }
759
760 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700761 if (mStatus != NO_ERROR) {
762 return mStatus;
763 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800764 status_t status = NO_ERROR;
Eric Laurent7e1139c2013-06-06 18:29:01 -0700765 if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentca7cc822012-11-19 14:55:58 -0800766 status_t cmdStatus;
767 uint32_t size = sizeof(status_t);
768 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
769 EFFECT_CMD_SET_INPUT_DEVICE;
770 status = (*mEffectInterface)->command(mEffectInterface,
771 cmd,
772 sizeof(uint32_t),
773 &device,
774 &size,
775 &cmdStatus);
776 }
777 return status;
778}
779
780status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
781{
782 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700783 if (mStatus != NO_ERROR) {
784 return mStatus;
785 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800786 status_t status = NO_ERROR;
787 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
788 status_t cmdStatus;
789 uint32_t size = sizeof(status_t);
790 status = (*mEffectInterface)->command(mEffectInterface,
791 EFFECT_CMD_SET_AUDIO_MODE,
792 sizeof(audio_mode_t),
793 &mode,
794 &size,
795 &cmdStatus);
796 if (status == NO_ERROR) {
797 status = cmdStatus;
798 }
799 }
800 return status;
801}
802
803status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
804{
805 Mutex::Autolock _l(mLock);
Eric Laurentd0ebb532013-04-02 16:41:41 -0700806 if (mStatus != NO_ERROR) {
807 return mStatus;
808 }
Eric Laurentca7cc822012-11-19 14:55:58 -0800809 status_t status = NO_ERROR;
810 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
811 uint32_t size = 0;
812 status = (*mEffectInterface)->command(mEffectInterface,
813 EFFECT_CMD_SET_AUDIO_SOURCE,
814 sizeof(audio_source_t),
815 &source,
816 &size,
817 NULL);
818 }
819 return status;
820}
821
822void AudioFlinger::EffectModule::setSuspended(bool suspended)
823{
824 Mutex::Autolock _l(mLock);
825 mSuspended = suspended;
826}
827
828bool AudioFlinger::EffectModule::suspended() const
829{
830 Mutex::Autolock _l(mLock);
831 return mSuspended;
832}
833
834bool AudioFlinger::EffectModule::purgeHandles()
835{
836 bool enabled = false;
837 Mutex::Autolock _l(mLock);
838 for (size_t i = 0; i < mHandles.size(); i++) {
839 EffectHandle *handle = mHandles[i];
840 if (handle != NULL && !handle->destroyed_l()) {
841 handle->effect().clear();
842 if (handle->hasControl()) {
843 enabled = handle->enabled();
844 }
845 }
846 }
847 return enabled;
848}
849
Eric Laurent5baf2af2013-09-12 17:37:00 -0700850status_t AudioFlinger::EffectModule::setOffloaded(bool offloaded, audio_io_handle_t io)
851{
852 Mutex::Autolock _l(mLock);
853 if (mStatus != NO_ERROR) {
854 return mStatus;
855 }
856 status_t status = NO_ERROR;
857 if ((mDescriptor.flags & EFFECT_FLAG_OFFLOAD_SUPPORTED) != 0) {
858 status_t cmdStatus;
859 uint32_t size = sizeof(status_t);
860 effect_offload_param_t cmd;
861
862 cmd.isOffload = offloaded;
863 cmd.ioHandle = io;
864 status = (*mEffectInterface)->command(mEffectInterface,
865 EFFECT_CMD_OFFLOAD,
866 sizeof(effect_offload_param_t),
867 &cmd,
868 &size,
869 &cmdStatus);
870 if (status == NO_ERROR) {
871 status = cmdStatus;
872 }
873 mOffloaded = (status == NO_ERROR) ? offloaded : false;
874 } else {
875 if (offloaded) {
876 status = INVALID_OPERATION;
877 }
878 mOffloaded = false;
879 }
880 ALOGV("setOffloaded() offloaded %d io %d status %d", offloaded, io, status);
881 return status;
882}
883
884bool AudioFlinger::EffectModule::isOffloaded() const
885{
886 Mutex::Autolock _l(mLock);
887 return mOffloaded;
888}
889
Marco Nelissenb2208842014-02-07 14:00:50 -0800890String8 effectFlagsToString(uint32_t flags) {
891 String8 s;
892
893 s.append("conn. mode: ");
894 switch (flags & EFFECT_FLAG_TYPE_MASK) {
895 case EFFECT_FLAG_TYPE_INSERT: s.append("insert"); break;
896 case EFFECT_FLAG_TYPE_AUXILIARY: s.append("auxiliary"); break;
897 case EFFECT_FLAG_TYPE_REPLACE: s.append("replace"); break;
898 case EFFECT_FLAG_TYPE_PRE_PROC: s.append("preproc"); break;
899 case EFFECT_FLAG_TYPE_POST_PROC: s.append("postproc"); break;
900 default: s.append("unknown/reserved"); break;
901 }
902 s.append(", ");
903
904 s.append("insert pref: ");
905 switch (flags & EFFECT_FLAG_INSERT_MASK) {
906 case EFFECT_FLAG_INSERT_ANY: s.append("any"); break;
907 case EFFECT_FLAG_INSERT_FIRST: s.append("first"); break;
908 case EFFECT_FLAG_INSERT_LAST: s.append("last"); break;
909 case EFFECT_FLAG_INSERT_EXCLUSIVE: s.append("exclusive"); break;
910 default: s.append("unknown/reserved"); break;
911 }
912 s.append(", ");
913
914 s.append("volume mgmt: ");
915 switch (flags & EFFECT_FLAG_VOLUME_MASK) {
916 case EFFECT_FLAG_VOLUME_NONE: s.append("none"); break;
917 case EFFECT_FLAG_VOLUME_CTRL: s.append("implements control"); break;
918 case EFFECT_FLAG_VOLUME_IND: s.append("requires indication"); break;
919 default: s.append("unknown/reserved"); break;
920 }
921 s.append(", ");
922
923 uint32_t devind = flags & EFFECT_FLAG_DEVICE_MASK;
924 if (devind) {
925 s.append("device indication: ");
926 switch (devind) {
927 case EFFECT_FLAG_DEVICE_IND: s.append("requires updates"); break;
928 default: s.append("unknown/reserved"); break;
929 }
930 s.append(", ");
931 }
932
933 s.append("input mode: ");
934 switch (flags & EFFECT_FLAG_INPUT_MASK) {
935 case EFFECT_FLAG_INPUT_DIRECT: s.append("direct"); break;
936 case EFFECT_FLAG_INPUT_PROVIDER: s.append("provider"); break;
937 case EFFECT_FLAG_INPUT_BOTH: s.append("direct+provider"); break;
938 default: s.append("not set"); break;
939 }
940 s.append(", ");
941
942 s.append("output mode: ");
943 switch (flags & EFFECT_FLAG_OUTPUT_MASK) {
944 case EFFECT_FLAG_OUTPUT_DIRECT: s.append("direct"); break;
945 case EFFECT_FLAG_OUTPUT_PROVIDER: s.append("provider"); break;
946 case EFFECT_FLAG_OUTPUT_BOTH: s.append("direct+provider"); break;
947 default: s.append("not set"); break;
948 }
949 s.append(", ");
950
951 uint32_t accel = flags & EFFECT_FLAG_HW_ACC_MASK;
952 if (accel) {
953 s.append("hardware acceleration: ");
954 switch (accel) {
955 case EFFECT_FLAG_HW_ACC_SIMPLE: s.append("non-tunneled"); break;
956 case EFFECT_FLAG_HW_ACC_TUNNEL: s.append("tunneled"); break;
957 default: s.append("unknown/reserved"); break;
958 }
959 s.append(", ");
960 }
961
962 uint32_t modeind = flags & EFFECT_FLAG_AUDIO_MODE_MASK;
963 if (modeind) {
964 s.append("mode indication: ");
965 switch (modeind) {
966 case EFFECT_FLAG_AUDIO_MODE_IND: s.append("required"); break;
967 default: s.append("unknown/reserved"); break;
968 }
969 s.append(", ");
970 }
971
972 uint32_t srcind = flags & EFFECT_FLAG_AUDIO_SOURCE_MASK;
973 if (srcind) {
974 s.append("source indication: ");
975 switch (srcind) {
976 case EFFECT_FLAG_AUDIO_SOURCE_IND: s.append("required"); break;
977 default: s.append("unknown/reserved"); break;
978 }
979 s.append(", ");
980 }
981
982 if (flags & EFFECT_FLAG_OFFLOAD_MASK) {
983 s.append("offloadable, ");
984 }
985
986 int len = s.length();
987 if (s.length() > 2) {
Glenn Kasten57c4e6f2016-03-18 14:54:07 -0700988 (void) s.lockBuffer(len);
Marco Nelissenb2208842014-02-07 14:00:50 -0800989 s.unlockBuffer(len - 2);
990 }
991 return s;
992}
993
994
Glenn Kasten0f11b512014-01-31 16:18:54 -0800995void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args __unused)
Eric Laurentca7cc822012-11-19 14:55:58 -0800996{
997 const size_t SIZE = 256;
998 char buffer[SIZE];
999 String8 result;
1000
1001 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
1002 result.append(buffer);
1003
1004 bool locked = AudioFlinger::dumpTryLock(mLock);
1005 // failed to lock - AudioFlinger is probably deadlocked
1006 if (!locked) {
1007 result.append("\t\tCould not lock Fx mutex:\n");
1008 }
1009
1010 result.append("\t\tSession Status State Engine:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001011 snprintf(buffer, SIZE, "\t\t%05d %03d %03d %p\n",
1012 mSessionId, mStatus, mState, mEffectInterface);
Eric Laurentca7cc822012-11-19 14:55:58 -08001013 result.append(buffer);
1014
1015 result.append("\t\tDescriptor:\n");
1016 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
1017 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
1018 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
1019 mDescriptor.uuid.node[2],
1020 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
1021 result.append(buffer);
1022 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
1023 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
1024 mDescriptor.type.timeHiAndVersion,
1025 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
1026 mDescriptor.type.node[2],
1027 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
1028 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001029 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X (%s)\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001030 mDescriptor.apiVersion,
Marco Nelissenb2208842014-02-07 14:00:50 -08001031 mDescriptor.flags,
1032 effectFlagsToString(mDescriptor.flags).string());
Eric Laurentca7cc822012-11-19 14:55:58 -08001033 result.append(buffer);
1034 snprintf(buffer, SIZE, "\t\t- name: %s\n",
1035 mDescriptor.name);
1036 result.append(buffer);
1037 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
1038 mDescriptor.implementor);
1039 result.append(buffer);
1040
1041 result.append("\t\t- Input configuration:\n");
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001042 result.append("\t\t\tFrames Smp rate Channels Format Buffer\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001043 snprintf(buffer, SIZE, "\t\t\t%05zu %05d %08x %6d (%s) %p\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001044 mConfig.inputCfg.buffer.frameCount,
1045 mConfig.inputCfg.samplingRate,
1046 mConfig.inputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -08001047 mConfig.inputCfg.format,
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001048 formatToString((audio_format_t)mConfig.inputCfg.format),
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001049 mConfig.inputCfg.buffer.raw);
Eric Laurentca7cc822012-11-19 14:55:58 -08001050 result.append(buffer);
1051
1052 result.append("\t\t- Output configuration:\n");
1053 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001054 snprintf(buffer, SIZE, "\t\t\t%p %05zu %05d %08x %d (%s)\n",
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001055 mConfig.outputCfg.buffer.raw,
Eric Laurentca7cc822012-11-19 14:55:58 -08001056 mConfig.outputCfg.buffer.frameCount,
1057 mConfig.outputCfg.samplingRate,
1058 mConfig.outputCfg.channels,
Marco Nelissenb2208842014-02-07 14:00:50 -08001059 mConfig.outputCfg.format,
1060 formatToString((audio_format_t)mConfig.outputCfg.format));
Eric Laurentca7cc822012-11-19 14:55:58 -08001061 result.append(buffer);
1062
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001063 snprintf(buffer, SIZE, "\t\t%zu Clients:\n", mHandles.size());
Eric Laurentca7cc822012-11-19 14:55:58 -08001064 result.append(buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -08001065 result.append("\t\t\t Pid Priority Ctrl Locked client server\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001066 for (size_t i = 0; i < mHandles.size(); ++i) {
1067 EffectHandle *handle = mHandles[i];
1068 if (handle != NULL && !handle->destroyed_l()) {
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001069 handle->dumpToBuffer(buffer, SIZE);
Eric Laurentca7cc822012-11-19 14:55:58 -08001070 result.append(buffer);
1071 }
1072 }
1073
Eric Laurentca7cc822012-11-19 14:55:58 -08001074 write(fd, result.string(), result.length());
1075
1076 if (locked) {
1077 mLock.unlock();
1078 }
1079}
1080
1081// ----------------------------------------------------------------------------
1082// EffectHandle implementation
1083// ----------------------------------------------------------------------------
1084
1085#undef LOG_TAG
1086#define LOG_TAG "AudioFlinger::EffectHandle"
1087
1088AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
1089 const sp<AudioFlinger::Client>& client,
1090 const sp<IEffectClient>& effectClient,
1091 int32_t priority)
1092 : BnEffect(),
1093 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
1094 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
1095{
1096 ALOGV("constructor %p", this);
1097
1098 if (client == 0) {
1099 return;
1100 }
1101 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
1102 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
Glenn Kastene75da402013-11-20 13:54:52 -08001103 if (mCblkMemory == 0 ||
1104 (mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer())) == NULL) {
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001105 ALOGE("not enough memory for Effect size=%zu", EFFECT_PARAM_BUFFER_SIZE +
Eric Laurentca7cc822012-11-19 14:55:58 -08001106 sizeof(effect_param_cblk_t));
Glenn Kastene75da402013-11-20 13:54:52 -08001107 mCblkMemory.clear();
Eric Laurentca7cc822012-11-19 14:55:58 -08001108 return;
1109 }
Glenn Kastene75da402013-11-20 13:54:52 -08001110 new(mCblk) effect_param_cblk_t();
1111 mBuffer = (uint8_t *)mCblk + bufOffset;
Eric Laurentca7cc822012-11-19 14:55:58 -08001112}
1113
1114AudioFlinger::EffectHandle::~EffectHandle()
1115{
1116 ALOGV("Destructor %p", this);
1117
1118 if (mEffect == 0) {
1119 mDestroyed = true;
1120 return;
1121 }
1122 mEffect->lock();
1123 mDestroyed = true;
1124 mEffect->unlock();
1125 disconnect(false);
1126}
1127
Glenn Kastene75da402013-11-20 13:54:52 -08001128status_t AudioFlinger::EffectHandle::initCheck()
1129{
1130 return mClient == 0 || mCblkMemory != 0 ? OK : NO_MEMORY;
1131}
1132
Eric Laurentca7cc822012-11-19 14:55:58 -08001133status_t AudioFlinger::EffectHandle::enable()
1134{
1135 ALOGV("enable %p", this);
1136 if (!mHasControl) {
1137 return INVALID_OPERATION;
1138 }
1139 if (mEffect == 0) {
1140 return DEAD_OBJECT;
1141 }
1142
1143 if (mEnabled) {
1144 return NO_ERROR;
1145 }
1146
1147 mEnabled = true;
1148
1149 sp<ThreadBase> thread = mEffect->thread().promote();
1150 if (thread != 0) {
1151 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
1152 }
1153
1154 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
1155 if (mEffect->suspended()) {
1156 return NO_ERROR;
1157 }
1158
1159 status_t status = mEffect->setEnabled(true);
1160 if (status != NO_ERROR) {
1161 if (thread != 0) {
1162 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1163 }
1164 mEnabled = false;
Eric Laurent813e2a72013-08-31 12:59:48 -07001165 } else {
Eric Laurent59fe0102013-09-27 18:48:26 -07001166 if (thread != 0) {
1167 if (thread->type() == ThreadBase::OFFLOAD) {
Eric Laurent813e2a72013-08-31 12:59:48 -07001168 PlaybackThread *t = (PlaybackThread *)thread.get();
Eric Laurent59fe0102013-09-27 18:48:26 -07001169 Mutex::Autolock _l(t->mLock);
1170 t->broadcast_l();
Eric Laurent813e2a72013-08-31 12:59:48 -07001171 }
Eric Laurent59fe0102013-09-27 18:48:26 -07001172 if (!mEffect->isOffloadable()) {
1173 if (thread->type() == ThreadBase::OFFLOAD) {
1174 PlaybackThread *t = (PlaybackThread *)thread.get();
1175 t->invalidateTracks(AUDIO_STREAM_MUSIC);
1176 }
1177 if (mEffect->sessionId() == AUDIO_SESSION_OUTPUT_MIX) {
1178 thread->mAudioFlinger->onNonOffloadableGlobalEffectEnable();
1179 }
Eric Laurent813e2a72013-08-31 12:59:48 -07001180 }
1181 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001182 }
1183 return status;
1184}
1185
1186status_t AudioFlinger::EffectHandle::disable()
1187{
1188 ALOGV("disable %p", this);
1189 if (!mHasControl) {
1190 return INVALID_OPERATION;
1191 }
1192 if (mEffect == 0) {
1193 return DEAD_OBJECT;
1194 }
1195
1196 if (!mEnabled) {
1197 return NO_ERROR;
1198 }
1199 mEnabled = false;
1200
1201 if (mEffect->suspended()) {
1202 return NO_ERROR;
1203 }
1204
1205 status_t status = mEffect->setEnabled(false);
1206
1207 sp<ThreadBase> thread = mEffect->thread().promote();
1208 if (thread != 0) {
1209 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
Eric Laurent59fe0102013-09-27 18:48:26 -07001210 if (thread->type() == ThreadBase::OFFLOAD) {
1211 PlaybackThread *t = (PlaybackThread *)thread.get();
1212 Mutex::Autolock _l(t->mLock);
1213 t->broadcast_l();
1214 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001215 }
1216
1217 return status;
1218}
1219
1220void AudioFlinger::EffectHandle::disconnect()
1221{
1222 disconnect(true);
1223}
1224
1225void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
1226{
1227 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1228 if (mEffect == 0) {
1229 return;
1230 }
1231 // restore suspended effects if the disconnected handle was enabled and the last one.
1232 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
1233 sp<ThreadBase> thread = mEffect->thread().promote();
1234 if (thread != 0) {
1235 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
1236 }
1237 }
1238
1239 // release sp on module => module destructor can be called now
1240 mEffect.clear();
1241 if (mClient != 0) {
1242 if (mCblk != NULL) {
1243 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
1244 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
1245 }
1246 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Eric Laurent021cf962014-05-13 10:18:14 -07001247 // Client destructor must run with AudioFlinger client mutex locked
1248 Mutex::Autolock _l(mClient->audioFlinger()->mClientLock);
Eric Laurentca7cc822012-11-19 14:55:58 -08001249 mClient.clear();
1250 }
1251}
1252
1253status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
1254 uint32_t cmdSize,
1255 void *pCmdData,
1256 uint32_t *replySize,
1257 void *pReplyData)
1258{
1259 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
1260 cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
1261
1262 // only get parameter command is permitted for applications not controlling the effect
1263 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
1264 return INVALID_OPERATION;
1265 }
1266 if (mEffect == 0) {
1267 return DEAD_OBJECT;
1268 }
1269 if (mClient == 0) {
1270 return INVALID_OPERATION;
1271 }
1272
1273 // handle commands that are not forwarded transparently to effect engine
1274 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
1275 // No need to trylock() here as this function is executed in the binder thread serving a
1276 // particular client process: no risk to block the whole media server process or mixer
1277 // threads if we are stuck here
1278 Mutex::Autolock _l(mCblk->lock);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001279
1280 // keep local copy of index in case of client corruption b/32220769
1281 const uint32_t clientIndex = mCblk->clientIndex;
1282 const uint32_t serverIndex = mCblk->serverIndex;
1283 if (clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
1284 serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001285 mCblk->serverIndex = 0;
1286 mCblk->clientIndex = 0;
1287 return BAD_VALUE;
1288 }
1289 status_t status = NO_ERROR;
Andy Hungdd79ccd2016-11-15 17:19:58 -08001290 effect_param_t *param = NULL;
1291 for (uint32_t index = serverIndex; index < clientIndex;) {
1292 int *p = (int *)(mBuffer + index);
1293 const int size = *p++;
1294 if (size < 0
1295 || size > EFFECT_PARAM_BUFFER_SIZE
1296 || ((uint8_t *)p + size) > mBuffer + clientIndex) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001297 ALOGW("command(): invalid parameter block size");
Andy Hungdd79ccd2016-11-15 17:19:58 -08001298 status = BAD_VALUE;
Eric Laurentca7cc822012-11-19 14:55:58 -08001299 break;
1300 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001301
1302 // copy to local memory in case of client corruption b/32220769
1303 param = (effect_param_t *)realloc(param, size);
1304 if (param == NULL) {
1305 ALOGW("command(): out of memory");
1306 status = NO_MEMORY;
1307 break;
Eric Laurentca7cc822012-11-19 14:55:58 -08001308 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001309 memcpy(param, p, size);
1310
1311 int reply = 0;
1312 uint32_t rsize = sizeof(reply);
Eric Laurentca7cc822012-11-19 14:55:58 -08001313 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
Andy Hungdd79ccd2016-11-15 17:19:58 -08001314 size,
1315 param,
Eric Laurentca7cc822012-11-19 14:55:58 -08001316 &rsize,
1317 &reply);
Andy Hungdd79ccd2016-11-15 17:19:58 -08001318
1319 // verify shared memory: server index shouldn't change; client index can't go back.
1320 if (serverIndex != mCblk->serverIndex
1321 || clientIndex > mCblk->clientIndex) {
1322 android_errorWriteLog(0x534e4554, "32220769");
1323 status = BAD_VALUE;
1324 break;
1325 }
1326
Eric Laurentca7cc822012-11-19 14:55:58 -08001327 // stop at first error encountered
1328 if (ret != NO_ERROR) {
1329 status = ret;
1330 *(int *)pReplyData = reply;
1331 break;
1332 } else if (reply != NO_ERROR) {
1333 *(int *)pReplyData = reply;
1334 break;
1335 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001336 index += size;
Eric Laurentca7cc822012-11-19 14:55:58 -08001337 }
Andy Hungdd79ccd2016-11-15 17:19:58 -08001338 free(param);
Eric Laurentca7cc822012-11-19 14:55:58 -08001339 mCblk->serverIndex = 0;
1340 mCblk->clientIndex = 0;
1341 return status;
1342 } else if (cmdCode == EFFECT_CMD_ENABLE) {
1343 *(int *)pReplyData = NO_ERROR;
1344 return enable();
1345 } else if (cmdCode == EFFECT_CMD_DISABLE) {
1346 *(int *)pReplyData = NO_ERROR;
1347 return disable();
1348 }
1349
1350 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1351}
1352
1353void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
1354{
1355 ALOGV("setControl %p control %d", this, hasControl);
1356
1357 mHasControl = hasControl;
1358 mEnabled = enabled;
1359
1360 if (signal && mEffectClient != 0) {
1361 mEffectClient->controlStatusChanged(hasControl);
1362 }
1363}
1364
1365void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
1366 uint32_t cmdSize,
1367 void *pCmdData,
1368 uint32_t replySize,
1369 void *pReplyData)
1370{
1371 if (mEffectClient != 0) {
1372 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
1373 }
1374}
1375
1376
1377
1378void AudioFlinger::EffectHandle::setEnabled(bool enabled)
1379{
1380 if (mEffectClient != 0) {
1381 mEffectClient->enableStatusChanged(enabled);
1382 }
1383}
1384
1385status_t AudioFlinger::EffectHandle::onTransact(
1386 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1387{
1388 return BnEffect::onTransact(code, data, reply, flags);
1389}
1390
1391
Glenn Kasten01d3acb2014-02-06 08:24:07 -08001392void AudioFlinger::EffectHandle::dumpToBuffer(char* buffer, size_t size)
Eric Laurentca7cc822012-11-19 14:55:58 -08001393{
1394 bool locked = mCblk != NULL && AudioFlinger::dumpTryLock(mCblk->lock);
1395
Marco Nelissenb2208842014-02-07 14:00:50 -08001396 snprintf(buffer, size, "\t\t\t%5d %5d %3s %3s %5u %5u\n",
Eric Laurentca7cc822012-11-19 14:55:58 -08001397 (mClient == 0) ? getpid_cached : mClient->pid(),
1398 mPriority,
Marco Nelissenb2208842014-02-07 14:00:50 -08001399 mHasControl ? "yes" : "no",
1400 locked ? "yes" : "no",
Eric Laurentca7cc822012-11-19 14:55:58 -08001401 mCblk ? mCblk->clientIndex : 0,
1402 mCblk ? mCblk->serverIndex : 0
1403 );
1404
1405 if (locked) {
1406 mCblk->lock.unlock();
1407 }
1408}
1409
1410#undef LOG_TAG
1411#define LOG_TAG "AudioFlinger::EffectChain"
1412
1413AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
Glenn Kastend848eb42016-03-08 13:42:11 -08001414 audio_session_t sessionId)
Eric Laurentca7cc822012-11-19 14:55:58 -08001415 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
1416 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001417 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX), mForceVolume(false)
Eric Laurentca7cc822012-11-19 14:55:58 -08001418{
1419 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1420 if (thread == NULL) {
1421 return;
1422 }
1423 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
1424 thread->frameCount();
1425}
1426
1427AudioFlinger::EffectChain::~EffectChain()
1428{
1429 if (mOwnInBuffer) {
1430 delete mInBuffer;
1431 }
1432
1433}
1434
1435// getEffectFromDesc_l() must be called with ThreadBase::mLock held
1436sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
1437 effect_descriptor_t *descriptor)
1438{
1439 size_t size = mEffects.size();
1440
1441 for (size_t i = 0; i < size; i++) {
1442 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
1443 return mEffects[i];
1444 }
1445 }
1446 return 0;
1447}
1448
1449// getEffectFromId_l() must be called with ThreadBase::mLock held
1450sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
1451{
1452 size_t size = mEffects.size();
1453
1454 for (size_t i = 0; i < size; i++) {
1455 // by convention, return first effect if id provided is 0 (0 is never a valid id)
1456 if (id == 0 || mEffects[i]->id() == id) {
1457 return mEffects[i];
1458 }
1459 }
1460 return 0;
1461}
1462
1463// getEffectFromType_l() must be called with ThreadBase::mLock held
1464sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
1465 const effect_uuid_t *type)
1466{
1467 size_t size = mEffects.size();
1468
1469 for (size_t i = 0; i < size; i++) {
1470 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
1471 return mEffects[i];
1472 }
1473 }
1474 return 0;
1475}
1476
1477void AudioFlinger::EffectChain::clearInputBuffer()
1478{
1479 Mutex::Autolock _l(mLock);
1480 sp<ThreadBase> thread = mThread.promote();
1481 if (thread == 0) {
1482 ALOGW("clearInputBuffer(): cannot promote mixer thread");
1483 return;
1484 }
1485 clearInputBuffer_l(thread);
1486}
1487
1488// Must be called with EffectChain::mLock locked
1489void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
1490{
Ricardo Garcia322bab22014-08-06 11:43:46 -07001491 // TODO: This will change in the future, depending on multichannel
1492 // and sample format changes for effects.
1493 // Currently effects processing is only available for stereo, AUDIO_FORMAT_PCM_16_BIT
1494 // (4 bytes frame size)
Ricardo Garcia726b6a72014-08-11 12:04:54 -07001495 const size_t frameSize =
1496 audio_bytes_per_sample(AUDIO_FORMAT_PCM_16_BIT) * min(FCC_2, thread->channelCount());
Ricardo Garcia322bab22014-08-06 11:43:46 -07001497 memset(mInBuffer, 0, thread->frameCount() * frameSize);
Eric Laurentca7cc822012-11-19 14:55:58 -08001498}
1499
1500// Must be called with EffectChain::mLock locked
1501void AudioFlinger::EffectChain::process_l()
1502{
1503 sp<ThreadBase> thread = mThread.promote();
1504 if (thread == 0) {
1505 ALOGW("process_l(): cannot promote mixer thread");
1506 return;
1507 }
1508 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
1509 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Jean-Michel Trivifed62922013-09-25 18:50:33 -07001510 // never process effects when:
1511 // - on an OFFLOAD thread
1512 // - no more tracks are on the session and the effect tail has been rendered
1513 bool doProcess = (thread->type() != ThreadBase::OFFLOAD);
Eric Laurentca7cc822012-11-19 14:55:58 -08001514 if (!isGlobalSession) {
1515 bool tracksOnSession = (trackCnt() != 0);
1516
1517 if (!tracksOnSession && mTailBufferCount == 0) {
1518 doProcess = false;
1519 }
1520
1521 if (activeTrackCnt() == 0) {
1522 // if no track is active and the effect tail has not been rendered,
1523 // the input buffer must be cleared here as the mixer process will not do it
1524 if (tracksOnSession || mTailBufferCount > 0) {
1525 clearInputBuffer_l(thread);
1526 if (mTailBufferCount > 0) {
1527 mTailBufferCount--;
1528 }
1529 }
1530 }
1531 }
1532
1533 size_t size = mEffects.size();
1534 if (doProcess) {
1535 for (size_t i = 0; i < size; i++) {
1536 mEffects[i]->process();
1537 }
1538 }
1539 for (size_t i = 0; i < size; i++) {
1540 mEffects[i]->updateState();
1541 }
1542}
1543
1544// addEffect_l() must be called with PlaybackThread::mLock held
1545status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
1546{
1547 effect_descriptor_t desc = effect->desc();
1548 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
1549
1550 Mutex::Autolock _l(mLock);
1551 effect->setChain(this);
1552 sp<ThreadBase> thread = mThread.promote();
1553 if (thread == 0) {
1554 return NO_INIT;
1555 }
1556 effect->setThread(thread);
1557
1558 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1559 // Auxiliary effects are inserted at the beginning of mEffects vector as
1560 // they are processed first and accumulated in chain input buffer
1561 mEffects.insertAt(effect, 0);
1562
1563 // the input buffer for auxiliary effect contains mono samples in
1564 // 32 bit format. This is to avoid saturation in AudoMixer
1565 // accumulation stage. Saturation is done in EffectModule::process() before
1566 // calling the process in effect engine
1567 size_t numSamples = thread->frameCount();
1568 int32_t *buffer = new int32_t[numSamples];
1569 memset(buffer, 0, numSamples * sizeof(int32_t));
1570 effect->setInBuffer((int16_t *)buffer);
1571 // auxiliary effects output samples to chain input buffer for further processing
1572 // by insert effects
1573 effect->setOutBuffer(mInBuffer);
1574 } else {
1575 // Insert effects are inserted at the end of mEffects vector as they are processed
1576 // after track and auxiliary effects.
1577 // Insert effect order as a function of indicated preference:
1578 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
1579 // another effect is present
1580 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
1581 // last effect claiming first position
1582 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
1583 // first effect claiming last position
1584 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
1585 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
1586 // already present
1587
1588 size_t size = mEffects.size();
1589 size_t idx_insert = size;
1590 ssize_t idx_insert_first = -1;
1591 ssize_t idx_insert_last = -1;
1592
1593 for (size_t i = 0; i < size; i++) {
1594 effect_descriptor_t d = mEffects[i]->desc();
1595 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
1596 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
1597 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
1598 // check invalid effect chaining combinations
1599 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
1600 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
1601 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
1602 desc.name, d.name);
1603 return INVALID_OPERATION;
1604 }
1605 // remember position of first insert effect and by default
1606 // select this as insert position for new effect
1607 if (idx_insert == size) {
1608 idx_insert = i;
1609 }
1610 // remember position of last insert effect claiming
1611 // first position
1612 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
1613 idx_insert_first = i;
1614 }
1615 // remember position of first insert effect claiming
1616 // last position
1617 if (iPref == EFFECT_FLAG_INSERT_LAST &&
1618 idx_insert_last == -1) {
1619 idx_insert_last = i;
1620 }
1621 }
1622 }
1623
1624 // modify idx_insert from first position if needed
1625 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
1626 if (idx_insert_last != -1) {
1627 idx_insert = idx_insert_last;
1628 } else {
1629 idx_insert = size;
1630 }
1631 } else {
1632 if (idx_insert_first != -1) {
1633 idx_insert = idx_insert_first + 1;
1634 }
1635 }
1636
1637 // always read samples from chain input buffer
1638 effect->setInBuffer(mInBuffer);
1639
1640 // if last effect in the chain, output samples to chain
1641 // output buffer, otherwise to chain input buffer
1642 if (idx_insert == size) {
1643 if (idx_insert != 0) {
1644 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
1645 mEffects[idx_insert-1]->configure();
1646 }
1647 effect->setOutBuffer(mOutBuffer);
1648 } else {
1649 effect->setOutBuffer(mInBuffer);
1650 }
1651 mEffects.insertAt(effect, idx_insert);
1652
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001653 ALOGV("addEffect_l() effect %p, added in chain %p at rank %zu", effect.get(), this,
Eric Laurentca7cc822012-11-19 14:55:58 -08001654 idx_insert);
1655 }
1656 effect->configure();
1657 return NO_ERROR;
1658}
1659
1660// removeEffect_l() must be called with PlaybackThread::mLock held
1661size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
1662{
1663 Mutex::Autolock _l(mLock);
1664 size_t size = mEffects.size();
1665 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
1666
1667 for (size_t i = 0; i < size; i++) {
1668 if (effect == mEffects[i]) {
1669 // calling stop here will remove pre-processing effect from the audio HAL.
1670 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
1671 // the middle of a read from audio HAL
1672 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1673 mEffects[i]->state() == EffectModule::STOPPING) {
1674 mEffects[i]->stop();
1675 }
1676 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
1677 delete[] effect->inBuffer();
1678 } else {
1679 if (i == size - 1 && i != 0) {
1680 mEffects[i - 1]->setOutBuffer(mOutBuffer);
1681 mEffects[i - 1]->configure();
1682 }
1683 }
1684 mEffects.removeAt(i);
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001685 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %zu", effect.get(),
Eric Laurentca7cc822012-11-19 14:55:58 -08001686 this, i);
1687 break;
1688 }
1689 }
1690
1691 return mEffects.size();
1692}
1693
1694// setDevice_l() must be called with PlaybackThread::mLock held
1695void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
1696{
1697 size_t size = mEffects.size();
1698 for (size_t i = 0; i < size; i++) {
1699 mEffects[i]->setDevice(device);
1700 }
1701}
1702
1703// setMode_l() must be called with PlaybackThread::mLock held
1704void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
1705{
1706 size_t size = mEffects.size();
1707 for (size_t i = 0; i < size; i++) {
1708 mEffects[i]->setMode(mode);
1709 }
1710}
1711
1712// setAudioSource_l() must be called with PlaybackThread::mLock held
1713void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
1714{
1715 size_t size = mEffects.size();
1716 for (size_t i = 0; i < size; i++) {
1717 mEffects[i]->setAudioSource(source);
1718 }
1719}
1720
1721// setVolume_l() must be called with PlaybackThread::mLock held
1722bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
1723{
1724 uint32_t newLeft = *left;
1725 uint32_t newRight = *right;
1726 bool hasControl = false;
1727 int ctrlIdx = -1;
1728 size_t size = mEffects.size();
1729
1730 // first update volume controller
1731 for (size_t i = size; i > 0; i--) {
1732 if (mEffects[i - 1]->isProcessEnabled() &&
1733 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
1734 ctrlIdx = i - 1;
1735 hasControl = true;
1736 break;
1737 }
1738 }
1739
Eric Laurentcb4b6e92014-10-01 14:26:10 -07001740 if (!isVolumeForced() && ctrlIdx == mVolumeCtrlIdx &&
1741 *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentca7cc822012-11-19 14:55:58 -08001742 if (hasControl) {
1743 *left = mNewLeftVolume;
1744 *right = mNewRightVolume;
1745 }
1746 return hasControl;
1747 }
1748
1749 mVolumeCtrlIdx = ctrlIdx;
1750 mLeftVolume = newLeft;
1751 mRightVolume = newRight;
1752
1753 // second get volume update from volume controller
1754 if (ctrlIdx >= 0) {
1755 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
1756 mNewLeftVolume = newLeft;
1757 mNewRightVolume = newRight;
1758 }
1759 // then indicate volume to all other effects in chain.
1760 // Pass altered volume to effects before volume controller
1761 // and requested volume to effects after controller
1762 uint32_t lVol = newLeft;
1763 uint32_t rVol = newRight;
1764
1765 for (size_t i = 0; i < size; i++) {
1766 if ((int)i == ctrlIdx) {
1767 continue;
1768 }
1769 // this also works for ctrlIdx == -1 when there is no volume controller
1770 if ((int)i > ctrlIdx) {
1771 lVol = *left;
1772 rVol = *right;
1773 }
1774 mEffects[i]->setVolume(&lVol, &rVol, false);
1775 }
1776 *left = newLeft;
1777 *right = newRight;
1778
1779 return hasControl;
1780}
1781
Eric Laurent1b928682014-10-02 19:41:47 -07001782void AudioFlinger::EffectChain::syncHalEffectsState()
1783{
1784 Mutex::Autolock _l(mLock);
1785 for (size_t i = 0; i < mEffects.size(); i++) {
1786 if (mEffects[i]->state() == EffectModule::ACTIVE ||
1787 mEffects[i]->state() == EffectModule::STOPPING) {
1788 mEffects[i]->addEffectToHal_l();
1789 }
1790 }
1791}
1792
Eric Laurentca7cc822012-11-19 14:55:58 -08001793void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
1794{
1795 const size_t SIZE = 256;
1796 char buffer[SIZE];
1797 String8 result;
1798
Marco Nelissenb2208842014-02-07 14:00:50 -08001799 size_t numEffects = mEffects.size();
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001800 snprintf(buffer, SIZE, " %zu effects for session %d\n", numEffects, mSessionId);
Eric Laurentca7cc822012-11-19 14:55:58 -08001801 result.append(buffer);
1802
Marco Nelissenb2208842014-02-07 14:00:50 -08001803 if (numEffects) {
1804 bool locked = AudioFlinger::dumpTryLock(mLock);
1805 // failed to lock - AudioFlinger is probably deadlocked
1806 if (!locked) {
1807 result.append("\tCould not lock mutex:\n");
Eric Laurentca7cc822012-11-19 14:55:58 -08001808 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001809
Marco Nelissenb2208842014-02-07 14:00:50 -08001810 result.append("\tIn buffer Out buffer Active tracks:\n");
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +00001811 snprintf(buffer, SIZE, "\t%p %p %d\n",
1812 mInBuffer,
1813 mOutBuffer,
Marco Nelissenb2208842014-02-07 14:00:50 -08001814 mActiveTrackCnt);
1815 result.append(buffer);
1816 write(fd, result.string(), result.size());
1817
1818 for (size_t i = 0; i < numEffects; ++i) {
1819 sp<EffectModule> effect = mEffects[i];
1820 if (effect != 0) {
1821 effect->dump(fd, args);
1822 }
1823 }
1824
1825 if (locked) {
1826 mLock.unlock();
1827 }
Eric Laurentca7cc822012-11-19 14:55:58 -08001828 }
1829}
1830
1831// must be called with ThreadBase::mLock held
1832void AudioFlinger::EffectChain::setEffectSuspended_l(
1833 const effect_uuid_t *type, bool suspend)
1834{
1835 sp<SuspendedEffectDesc> desc;
1836 // use effect type UUID timelow as key as there is no real risk of identical
1837 // timeLow fields among effect type UUIDs.
1838 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
1839 if (suspend) {
1840 if (index >= 0) {
1841 desc = mSuspendedEffects.valueAt(index);
1842 } else {
1843 desc = new SuspendedEffectDesc();
1844 desc->mType = *type;
1845 mSuspendedEffects.add(type->timeLow, desc);
1846 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
1847 }
1848 if (desc->mRefCount++ == 0) {
1849 sp<EffectModule> effect = getEffectIfEnabled(type);
1850 if (effect != 0) {
1851 desc->mEffect = effect;
1852 effect->setSuspended(true);
1853 effect->setEnabled(false);
1854 }
1855 }
1856 } else {
1857 if (index < 0) {
1858 return;
1859 }
1860 desc = mSuspendedEffects.valueAt(index);
1861 if (desc->mRefCount <= 0) {
1862 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
1863 desc->mRefCount = 1;
1864 }
1865 if (--desc->mRefCount == 0) {
1866 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
1867 if (desc->mEffect != 0) {
1868 sp<EffectModule> effect = desc->mEffect.promote();
1869 if (effect != 0) {
1870 effect->setSuspended(false);
1871 effect->lock();
1872 EffectHandle *handle = effect->controlHandle_l();
1873 if (handle != NULL && !handle->destroyed_l()) {
1874 effect->setEnabled_l(handle->enabled());
1875 }
1876 effect->unlock();
1877 }
1878 desc->mEffect.clear();
1879 }
1880 mSuspendedEffects.removeItemsAt(index);
1881 }
1882 }
1883}
1884
1885// must be called with ThreadBase::mLock held
1886void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
1887{
1888 sp<SuspendedEffectDesc> desc;
1889
1890 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1891 if (suspend) {
1892 if (index >= 0) {
1893 desc = mSuspendedEffects.valueAt(index);
1894 } else {
1895 desc = new SuspendedEffectDesc();
1896 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
1897 ALOGV("setEffectSuspendedAll_l() add entry for 0");
1898 }
1899 if (desc->mRefCount++ == 0) {
1900 Vector< sp<EffectModule> > effects;
1901 getSuspendEligibleEffects(effects);
1902 for (size_t i = 0; i < effects.size(); i++) {
1903 setEffectSuspended_l(&effects[i]->desc().type, true);
1904 }
1905 }
1906 } else {
1907 if (index < 0) {
1908 return;
1909 }
1910 desc = mSuspendedEffects.valueAt(index);
1911 if (desc->mRefCount <= 0) {
1912 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
1913 desc->mRefCount = 1;
1914 }
1915 if (--desc->mRefCount == 0) {
1916 Vector<const effect_uuid_t *> types;
1917 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
1918 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
1919 continue;
1920 }
1921 types.add(&mSuspendedEffects.valueAt(i)->mType);
1922 }
1923 for (size_t i = 0; i < types.size(); i++) {
1924 setEffectSuspended_l(types[i], false);
1925 }
1926 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
1927 mSuspendedEffects.keyAt(index));
1928 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
1929 }
1930 }
1931}
1932
1933
1934// The volume effect is used for automated tests only
1935#ifndef OPENSL_ES_H_
1936static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
1937 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
1938const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
1939#endif //OPENSL_ES_H_
1940
1941bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
1942{
1943 // auxiliary effects and visualizer are never suspended on output mix
1944 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
1945 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
1946 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
1947 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
1948 return false;
1949 }
1950 return true;
1951}
1952
1953void AudioFlinger::EffectChain::getSuspendEligibleEffects(
1954 Vector< sp<AudioFlinger::EffectModule> > &effects)
1955{
1956 effects.clear();
1957 for (size_t i = 0; i < mEffects.size(); i++) {
1958 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
1959 effects.add(mEffects[i]);
1960 }
1961 }
1962}
1963
1964sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
1965 const effect_uuid_t *type)
1966{
1967 sp<EffectModule> effect = getEffectFromType_l(type);
1968 return effect != 0 && effect->isEnabled() ? effect : 0;
1969}
1970
1971void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1972 bool enabled)
1973{
1974 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1975 if (enabled) {
1976 if (index < 0) {
1977 // if the effect is not suspend check if all effects are suspended
1978 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
1979 if (index < 0) {
1980 return;
1981 }
1982 if (!isEffectEligibleForSuspend(effect->desc())) {
1983 return;
1984 }
1985 setEffectSuspended_l(&effect->desc().type, enabled);
1986 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
1987 if (index < 0) {
1988 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
1989 return;
1990 }
1991 }
1992 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
1993 effect->desc().type.timeLow);
1994 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
1995 // if effect is requested to suspended but was not yet enabled, supend it now.
1996 if (desc->mEffect == 0) {
1997 desc->mEffect = effect;
1998 effect->setEnabled(false);
1999 effect->setSuspended(true);
2000 }
2001 } else {
2002 if (index < 0) {
2003 return;
2004 }
2005 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
2006 effect->desc().type.timeLow);
2007 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
2008 desc->mEffect.clear();
2009 effect->setSuspended(false);
2010 }
2011}
2012
Eric Laurent5baf2af2013-09-12 17:37:00 -07002013bool AudioFlinger::EffectChain::isNonOffloadableEnabled()
Eric Laurent813e2a72013-08-31 12:59:48 -07002014{
2015 Mutex::Autolock _l(mLock);
2016 size_t size = mEffects.size();
2017 for (size_t i = 0; i < size; i++) {
Eric Laurent5baf2af2013-09-12 17:37:00 -07002018 if (mEffects[i]->isEnabled() && !mEffects[i]->isOffloadable()) {
Eric Laurent813e2a72013-08-31 12:59:48 -07002019 return true;
2020 }
2021 }
2022 return false;
2023}
2024
Eric Laurentaaa44472014-09-12 17:41:50 -07002025void AudioFlinger::EffectChain::setThread(const sp<ThreadBase>& thread)
2026{
2027 Mutex::Autolock _l(mLock);
2028 mThread = thread;
2029 for (size_t i = 0; i < mEffects.size(); i++) {
2030 mEffects[i]->setThread(thread);
2031 }
2032}
2033
Glenn Kasten63238ef2015-03-02 15:50:29 -08002034} // namespace android