blob: cf119364001fcff4f3f0f0432fd98be0077a453f [file] [log] [blame]
Eric Laurent801a1182010-06-09 00:17:29 -07001/*
2**
3** Copyright 2010, 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_NDEBUG 0
20#define LOG_TAG "AudioEffect"
21
22#include <stdint.h>
23#include <sys/types.h>
24#include <limits.h>
25
26#include <private/media/AudioEffectShared.h>
27#include <media/AudioEffect.h>
28
29#include <utils/Log.h>
Eric Laurent801a1182010-06-09 00:17:29 -070030#include <binder/IPCThreadState.h>
31
32
33
34namespace android {
35
36// ---------------------------------------------------------------------------
37
Svet Ganovbe71aa22015-04-28 12:06:02 -070038AudioEffect::AudioEffect(const String16& opPackageName)
39 : mStatus(NO_INIT), mOpPackageName(opPackageName)
Eric Laurent801a1182010-06-09 00:17:29 -070040{
41}
42
43
44AudioEffect::AudioEffect(const effect_uuid_t *type,
Svet Ganovbe71aa22015-04-28 12:06:02 -070045 const String16& opPackageName,
Eric Laurent801a1182010-06-09 00:17:29 -070046 const effect_uuid_t *uuid,
47 int32_t priority,
48 effect_callback_t cbf,
49 void* user,
Glenn Kastend848eb42016-03-08 13:42:11 -080050 audio_session_t sessionId,
Eric Laurent7c7f10b2011-06-17 21:29:58 -070051 audio_io_handle_t io
Eric Laurent801a1182010-06-09 00:17:29 -070052 )
Svet Ganovbe71aa22015-04-28 12:06:02 -070053 : mStatus(NO_INIT), mOpPackageName(opPackageName)
Eric Laurent801a1182010-06-09 00:17:29 -070054{
haobo101735293f51b542018-08-09 09:14:31 +080055 AutoMutex lock(mConstructLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -070056 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
Eric Laurent801a1182010-06-09 00:17:29 -070057}
58
59AudioEffect::AudioEffect(const char *typeStr,
Svet Ganovbe71aa22015-04-28 12:06:02 -070060 const String16& opPackageName,
Eric Laurent801a1182010-06-09 00:17:29 -070061 const char *uuidStr,
62 int32_t priority,
63 effect_callback_t cbf,
64 void* user,
Glenn Kastend848eb42016-03-08 13:42:11 -080065 audio_session_t sessionId,
Eric Laurent7c7f10b2011-06-17 21:29:58 -070066 audio_io_handle_t io
Eric Laurent801a1182010-06-09 00:17:29 -070067 )
Svet Ganovbe71aa22015-04-28 12:06:02 -070068 : mStatus(NO_INIT), mOpPackageName(opPackageName)
Eric Laurent801a1182010-06-09 00:17:29 -070069{
70 effect_uuid_t type;
71 effect_uuid_t *pType = NULL;
72 effect_uuid_t uuid;
73 effect_uuid_t *pUuid = NULL;
74
Steve Block3856b092011-10-20 11:56:00 +010075 ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr, uuidStr);
Eric Laurent801a1182010-06-09 00:17:29 -070076
77 if (typeStr != NULL) {
78 if (stringToGuid(typeStr, &type) == NO_ERROR) {
79 pType = &type;
80 }
81 }
82
83 if (uuidStr != NULL) {
84 if (stringToGuid(uuidStr, &uuid) == NO_ERROR) {
85 pUuid = &uuid;
86 }
87 }
88
haobo101735293f51b542018-08-09 09:14:31 +080089 AutoMutex lock(mConstructLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -070090 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io);
Eric Laurent801a1182010-06-09 00:17:29 -070091}
92
93status_t AudioEffect::set(const effect_uuid_t *type,
94 const effect_uuid_t *uuid,
95 int32_t priority,
96 effect_callback_t cbf,
97 void* user,
Glenn Kastend848eb42016-03-08 13:42:11 -080098 audio_session_t sessionId,
Eric Laurent7c7f10b2011-06-17 21:29:58 -070099 audio_io_handle_t io)
Eric Laurent801a1182010-06-09 00:17:29 -0700100{
101 sp<IEffect> iEffect;
102 sp<IMemory> cblk;
103 int enabled;
104
Steve Block3856b092011-10-20 11:56:00 +0100105 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type->timeLow : 0);
Eric Laurent801a1182010-06-09 00:17:29 -0700106
107 if (mIEffect != 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000108 ALOGW("Effect already in use");
Eric Laurent801a1182010-06-09 00:17:29 -0700109 return INVALID_OPERATION;
110 }
111
112 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
113 if (audioFlinger == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000114 ALOGE("set(): Could not get audioflinger");
Eric Laurent801a1182010-06-09 00:17:29 -0700115 return NO_INIT;
116 }
117
118 if (type == NULL && uuid == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000119 ALOGW("Must specify at least type or uuid");
Eric Laurent801a1182010-06-09 00:17:29 -0700120 return BAD_VALUE;
121 }
122
123 mPriority = priority;
124 mCbf = cbf;
125 mUserData = user;
126 mSessionId = sessionId;
127
128 memset(&mDescriptor, 0, sizeof(effect_descriptor_t));
Glenn Kastena189a682012-02-20 12:16:30 -0800129 mDescriptor.type = *(type != NULL ? type : EFFECT_UUID_NULL);
130 mDescriptor.uuid = *(uuid != NULL ? uuid : EFFECT_UUID_NULL);
Eric Laurent801a1182010-06-09 00:17:29 -0700131
132 mIEffectClient = new EffectClient(this);
Eric Laurentb6436272016-12-07 19:24:50 -0800133 mClientPid = IPCThreadState::self()->getCallingPid();
Eric Laurent801a1182010-06-09 00:17:29 -0700134
Glenn Kasten8d6cc842012-02-03 11:06:53 -0800135 iEffect = audioFlinger->createEffect((effect_descriptor_t *)&mDescriptor,
Eric Laurentb6436272016-12-07 19:24:50 -0800136 mIEffectClient, priority, io, mSessionId, mOpPackageName, mClientPid,
137 &mStatus, &mId, &enabled);
Eric Laurent801a1182010-06-09 00:17:29 -0700138
139 if (iEffect == 0 || (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS)) {
Mikhail Naganov424c4f52017-07-19 17:54:29 -0700140 char typeBuffer[64], uuidBuffer[64];
141 guidToString(type, typeBuffer, sizeof(typeBuffer));
142 guidToString(uuid, uuidBuffer, sizeof(uuidBuffer));
143 ALOGE("set(): AudioFlinger could not create effect %s / %s, status: %d",
144 typeBuffer, uuidBuffer, mStatus);
Eric Laurenteecd7652015-06-04 16:20:16 -0700145 if (iEffect == 0) {
146 mStatus = NO_INIT;
147 }
Eric Laurent801a1182010-06-09 00:17:29 -0700148 return mStatus;
149 }
150
151 mEnabled = (volatile int32_t)enabled;
152
Eric Laurent801a1182010-06-09 00:17:29 -0700153 cblk = iEffect->getCblk();
154 if (cblk == 0) {
155 mStatus = NO_INIT;
Steve Block29357bc2012-01-06 19:20:56 +0000156 ALOGE("Could not get control block");
Eric Laurent801a1182010-06-09 00:17:29 -0700157 return mStatus;
158 }
159
Eric Laurenteecd7652015-06-04 16:20:16 -0700160 mIEffect = iEffect;
Eric Laurent801a1182010-06-09 00:17:29 -0700161 mCblkMemory = cblk;
162 mCblk = static_cast<effect_param_cblk_t*>(cblk->pointer());
163 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
164 mCblk->buffer = (uint8_t *)mCblk + bufOffset;
165
Marco Nelissen06b46062014-11-14 07:58:25 -0800166 IInterface::asBinder(iEffect)->linkToDeath(mIEffectClient);
Jean-Michel Trivia0fd9ca2014-09-18 14:07:18 -0700167 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
168 mStatus, mEnabled, mClientPid);
169
170 if (mSessionId > AUDIO_SESSION_OUTPUT_MIX) {
171 AudioSystem::acquireAudioSessionId(mSessionId, mClientPid);
172 }
Eric Laurent801a1182010-06-09 00:17:29 -0700173
174 return mStatus;
175}
176
177
178AudioEffect::~AudioEffect()
179{
Steve Block3856b092011-10-20 11:56:00 +0100180 ALOGV("Destructor %p", this);
Eric Laurent801a1182010-06-09 00:17:29 -0700181
182 if (mStatus == NO_ERROR || mStatus == ALREADY_EXISTS) {
Jean-Michel Trivia0fd9ca2014-09-18 14:07:18 -0700183 if (mSessionId > AUDIO_SESSION_OUTPUT_MIX) {
184 AudioSystem::releaseAudioSessionId(mSessionId, mClientPid);
185 }
Eric Laurent801a1182010-06-09 00:17:29 -0700186 if (mIEffect != NULL) {
187 mIEffect->disconnect();
Marco Nelissen06b46062014-11-14 07:58:25 -0800188 IInterface::asBinder(mIEffect)->unlinkToDeath(mIEffectClient);
Eric Laurent801a1182010-06-09 00:17:29 -0700189 }
Eric Laurenteecd7652015-06-04 16:20:16 -0700190 mIEffect.clear();
191 mCblkMemory.clear();
192 mIEffectClient.clear();
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700193 IPCThreadState::self()->flushCommands();
Eric Laurent801a1182010-06-09 00:17:29 -0700194 }
Eric Laurent801a1182010-06-09 00:17:29 -0700195}
196
197
198status_t AudioEffect::initCheck() const
199{
200 return mStatus;
201}
202
203// -------------------------------------------------------------------------
204
205effect_descriptor_t AudioEffect::descriptor() const
206{
207 return mDescriptor;
208}
209
Eric Laurentda7581b2010-07-02 08:12:41 -0700210bool AudioEffect::getEnabled() const
Eric Laurent801a1182010-06-09 00:17:29 -0700211{
212 return (mEnabled != 0);
213}
214
Eric Laurentda7581b2010-07-02 08:12:41 -0700215status_t AudioEffect::setEnabled(bool enabled)
Eric Laurent801a1182010-06-09 00:17:29 -0700216{
217 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800218 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700219 }
Eric Laurent801a1182010-06-09 00:17:29 -0700220
Eric Laurentf5aafb22010-11-18 08:40:16 -0800221 status_t status = NO_ERROR;
222
223 AutoMutex lock(mLock);
224 if (enabled != mEnabled) {
225 if (enabled) {
Steve Block3856b092011-10-20 11:56:00 +0100226 ALOGV("enable %p", this);
Eric Laurentf5aafb22010-11-18 08:40:16 -0800227 status = mIEffect->enable();
228 } else {
Steve Block3856b092011-10-20 11:56:00 +0100229 ALOGV("disable %p", this);
Eric Laurentf5aafb22010-11-18 08:40:16 -0800230 status = mIEffect->disable();
Eric Laurentda7581b2010-07-02 08:12:41 -0700231 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800232 if (status == NO_ERROR) {
233 mEnabled = enabled;
Eric Laurentda7581b2010-07-02 08:12:41 -0700234 }
Eric Laurent801a1182010-06-09 00:17:29 -0700235 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800236 return status;
Eric Laurent801a1182010-06-09 00:17:29 -0700237}
238
Eric Laurent25f43952010-07-28 05:40:18 -0700239status_t AudioEffect::command(uint32_t cmdCode,
240 uint32_t cmdSize,
241 void *cmdData,
242 uint32_t *replySize,
243 void *replyData)
Eric Laurent801a1182010-06-09 00:17:29 -0700244{
245 if (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS) {
Steve Block3856b092011-10-20 11:56:00 +0100246 ALOGV("command() bad status %d", mStatus);
John Grossmanaf7d8182012-01-11 12:23:42 -0800247 return mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700248 }
249
Eric Laurentf5aafb22010-11-18 08:40:16 -0800250 if (cmdCode == EFFECT_CMD_ENABLE || cmdCode == EFFECT_CMD_DISABLE) {
251 if (mEnabled == (cmdCode == EFFECT_CMD_ENABLE)) {
252 return NO_ERROR;
253 }
254 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) {
255 return BAD_VALUE;
256 }
257 mLock.lock();
Eric Laurent0fa449c2010-09-24 11:52:04 -0700258 }
259
Eric Laurent8569f0d2010-07-29 23:43:43 -0700260 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
Eric Laurent0fa449c2010-09-24 11:52:04 -0700261
262 if (cmdCode == EFFECT_CMD_ENABLE || cmdCode == EFFECT_CMD_DISABLE) {
Eric Laurentf5aafb22010-11-18 08:40:16 -0800263 if (status == NO_ERROR) {
264 status = *(status_t *)replyData;
Eric Laurent0fa449c2010-09-24 11:52:04 -0700265 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800266 if (status == NO_ERROR) {
267 mEnabled = (cmdCode == EFFECT_CMD_ENABLE);
Eric Laurent0fa449c2010-09-24 11:52:04 -0700268 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800269 mLock.unlock();
Eric Laurent8569f0d2010-07-29 23:43:43 -0700270 }
271
Eric Laurent8569f0d2010-07-29 23:43:43 -0700272 return status;
Eric Laurent801a1182010-06-09 00:17:29 -0700273}
274
275
276status_t AudioEffect::setParameter(effect_param_t *param)
277{
278 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800279 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700280 }
281
282 if (param == NULL || param->psize == 0 || param->vsize == 0) {
283 return BAD_VALUE;
284 }
285
Eric Laurent25f43952010-07-28 05:40:18 -0700286 uint32_t size = sizeof(int);
287 uint32_t psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
Eric Laurent801a1182010-06-09 00:17:29 -0700288
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700289 ALOGV("setParameter: param: %d, param2: %d", *(int *)param->data,
290 (param->psize == 8) ? *((int *)param->data + 1): -1);
Eric Laurent801a1182010-06-09 00:17:29 -0700291
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700292 return mIEffect->command(EFFECT_CMD_SET_PARAM, sizeof (effect_param_t) + psize, param, &size,
293 &param->status);
Eric Laurent801a1182010-06-09 00:17:29 -0700294}
295
296status_t AudioEffect::setParameterDeferred(effect_param_t *param)
297{
298 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800299 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700300 }
301
302 if (param == NULL || param->psize == 0 || param->vsize == 0) {
303 return BAD_VALUE;
304 }
305
306 Mutex::Autolock _l(mCblk->lock);
307
308 int psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
309 int size = ((sizeof(effect_param_t) + psize - 1) / sizeof(int) + 1) * sizeof(int);
310
311 if (mCblk->clientIndex + size > EFFECT_PARAM_BUFFER_SIZE) {
312 return NO_MEMORY;
313 }
314 int *p = (int *)(mCblk->buffer + mCblk->clientIndex);
315 *p++ = size;
316 memcpy(p, param, sizeof(effect_param_t) + psize);
317 mCblk->clientIndex += size;
318
319 return NO_ERROR;
320}
321
322status_t AudioEffect::setParameterCommit()
323{
324 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800325 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700326 }
327
328 Mutex::Autolock _l(mCblk->lock);
329 if (mCblk->clientIndex == 0) {
330 return INVALID_OPERATION;
331 }
Eric Laurent25f43952010-07-28 05:40:18 -0700332 uint32_t size = 0;
Eric Laurent801a1182010-06-09 00:17:29 -0700333 return mIEffect->command(EFFECT_CMD_SET_PARAM_COMMIT, 0, NULL, &size, NULL);
334}
335
336status_t AudioEffect::getParameter(effect_param_t *param)
337{
338 if (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS) {
John Grossmanaf7d8182012-01-11 12:23:42 -0800339 return mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700340 }
341
342 if (param == NULL || param->psize == 0 || param->vsize == 0) {
343 return BAD_VALUE;
344 }
345
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700346 ALOGV("getParameter: param: %d, param2: %d", *(int *)param->data,
347 (param->psize == 8) ? *((int *)param->data + 1): -1);
Eric Laurent801a1182010-06-09 00:17:29 -0700348
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700349 uint32_t psize = sizeof(effect_param_t) + ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
350 param->vsize;
Eric Laurent801a1182010-06-09 00:17:29 -0700351
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700352 return mIEffect->command(EFFECT_CMD_GET_PARAM, sizeof(effect_param_t) + param->psize, param,
353 &psize, param);
Eric Laurent801a1182010-06-09 00:17:29 -0700354}
355
356
357// -------------------------------------------------------------------------
358
359void AudioEffect::binderDied()
360{
Steve Block5ff1dd52012-01-05 23:22:43 +0000361 ALOGW("IEffect died");
John Grossmanaf7d8182012-01-11 12:23:42 -0800362 mStatus = DEAD_OBJECT;
Glenn Kastena0d68332012-01-27 16:47:15 -0800363 if (mCbf != NULL) {
Eric Laurent801a1182010-06-09 00:17:29 -0700364 status_t status = DEAD_OBJECT;
365 mCbf(EVENT_ERROR, mUserData, &status);
366 }
367 mIEffect.clear();
368}
369
370// -------------------------------------------------------------------------
371
372void AudioEffect::controlStatusChanged(bool controlGranted)
373{
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700374 ALOGV("controlStatusChanged %p control %d callback %p mUserData %p", this, controlGranted, mCbf,
375 mUserData);
Eric Laurent801a1182010-06-09 00:17:29 -0700376 if (controlGranted) {
377 if (mStatus == ALREADY_EXISTS) {
378 mStatus = NO_ERROR;
379 }
380 } else {
381 if (mStatus == NO_ERROR) {
382 mStatus = ALREADY_EXISTS;
383 }
384 }
Glenn Kastena0d68332012-01-27 16:47:15 -0800385 if (mCbf != NULL) {
Eric Laurent801a1182010-06-09 00:17:29 -0700386 mCbf(EVENT_CONTROL_STATUS_CHANGED, mUserData, &controlGranted);
387 }
388}
389
390void AudioEffect::enableStatusChanged(bool enabled)
391{
Steve Block3856b092011-10-20 11:56:00 +0100392 ALOGV("enableStatusChanged %p enabled %d mCbf %p", this, enabled, mCbf);
Eric Laurent801a1182010-06-09 00:17:29 -0700393 if (mStatus == ALREADY_EXISTS) {
Eric Laurentf5aafb22010-11-18 08:40:16 -0800394 mEnabled = enabled;
Glenn Kastena0d68332012-01-27 16:47:15 -0800395 if (mCbf != NULL) {
Eric Laurent801a1182010-06-09 00:17:29 -0700396 mCbf(EVENT_ENABLE_STATUS_CHANGED, mUserData, &enabled);
397 }
398 }
399}
400
Eric Laurent25f43952010-07-28 05:40:18 -0700401void AudioEffect::commandExecuted(uint32_t cmdCode,
Glenn Kasten0f11b512014-01-31 16:18:54 -0800402 uint32_t cmdSize __unused,
Eric Laurent25f43952010-07-28 05:40:18 -0700403 void *cmdData,
Glenn Kasten0f11b512014-01-31 16:18:54 -0800404 uint32_t replySize __unused,
Eric Laurent25f43952010-07-28 05:40:18 -0700405 void *replyData)
Eric Laurent801a1182010-06-09 00:17:29 -0700406{
407 if (cmdData == NULL || replyData == NULL) {
408 return;
409 }
410
Glenn Kastena0d68332012-01-27 16:47:15 -0800411 if (mCbf != NULL && cmdCode == EFFECT_CMD_SET_PARAM) {
Eric Laurent801a1182010-06-09 00:17:29 -0700412 effect_param_t *cmd = (effect_param_t *)cmdData;
413 cmd->status = *(int32_t *)replyData;
414 mCbf(EVENT_PARAMETER_CHANGED, mUserData, cmd);
415 }
416}
417
418// -------------------------------------------------------------------------
419
Eric Laurent801a1182010-06-09 00:17:29 -0700420status_t AudioEffect::queryNumberEffects(uint32_t *numEffects)
421{
422 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
423 if (af == 0) return PERMISSION_DENIED;
424 return af->queryNumberEffects(numEffects);
425}
426
Eric Laurentffe9c252010-06-23 17:38:20 -0700427status_t AudioEffect::queryEffect(uint32_t index, effect_descriptor_t *descriptor)
Eric Laurent801a1182010-06-09 00:17:29 -0700428{
429 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
430 if (af == 0) return PERMISSION_DENIED;
Eric Laurentffe9c252010-06-23 17:38:20 -0700431 return af->queryEffect(index, descriptor);
Eric Laurent801a1182010-06-09 00:17:29 -0700432}
433
Glenn Kasten5e92a782012-01-30 07:40:52 -0800434status_t AudioEffect::getEffectDescriptor(const effect_uuid_t *uuid,
Ari Hausman-Cohen2046ec72018-04-24 14:00:55 -0700435 const effect_uuid_t *type,
436 uint32_t preferredTypeFlag,
437 effect_descriptor_t *descriptor)
Eric Laurent801a1182010-06-09 00:17:29 -0700438{
439 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
440 if (af == 0) return PERMISSION_DENIED;
Ari Hausman-Cohen2046ec72018-04-24 14:00:55 -0700441 return af->getEffectDescriptor(uuid, type, preferredTypeFlag, descriptor);
Eric Laurent801a1182010-06-09 00:17:29 -0700442}
443
Glenn Kastend848eb42016-03-08 13:42:11 -0800444status_t AudioEffect::queryDefaultPreProcessing(audio_session_t audioSession,
Eric Laurent57dae992011-07-24 13:36:09 -0700445 effect_descriptor_t *descriptors,
446 uint32_t *count)
447{
448 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
449 if (aps == 0) return PERMISSION_DENIED;
450 return aps->queryDefaultPreProcessing(audioSession, descriptors, count);
451}
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700452
453status_t AudioEffect::newEffectUniqueId(audio_unique_id_t* id)
454{
455 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
456 if (af == 0) return PERMISSION_DENIED;
457 *id = af->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_EFFECT);
458 return NO_ERROR;
459}
460
Ari Hausman-Cohen24628312018-08-13 15:01:09 -0700461status_t AudioEffect::addSourceDefaultEffect(const char *typeStr,
462 const String16& opPackageName,
463 const char *uuidStr,
464 int32_t priority,
465 audio_source_t source,
466 audio_unique_id_t *id)
467{
468 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
469 if (aps == 0) return PERMISSION_DENIED;
470
471 if (typeStr == NULL && uuidStr == NULL) return BAD_VALUE;
472
473 // Convert type & uuid from string to effect_uuid_t.
474 effect_uuid_t type;
475 if (typeStr != NULL) {
476 status_t res = stringToGuid(typeStr, &type);
477 if (res != OK) return res;
478 } else {
479 type = *EFFECT_UUID_NULL;
480 }
481
482 effect_uuid_t uuid;
483 if (uuidStr != NULL) {
484 status_t res = stringToGuid(uuidStr, &uuid);
485 if (res != OK) return res;
486 } else {
487 uuid = *EFFECT_UUID_NULL;
488 }
489
490 return aps->addSourceDefaultEffect(&type, opPackageName, &uuid, priority, source, id);
491}
492
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700493status_t AudioEffect::addStreamDefaultEffect(const char *typeStr,
494 const String16& opPackageName,
495 const char *uuidStr,
496 int32_t priority,
497 audio_usage_t usage,
498 audio_unique_id_t *id)
499{
500 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
501 if (aps == 0) return PERMISSION_DENIED;
502
503 if (typeStr == NULL && uuidStr == NULL) return BAD_VALUE;
504
505 // Convert type & uuid from string to effect_uuid_t.
506 effect_uuid_t type;
507 if (typeStr != NULL) {
508 status_t res = stringToGuid(typeStr, &type);
509 if (res != OK) return res;
510 } else {
511 type = *EFFECT_UUID_NULL;
512 }
513
514 effect_uuid_t uuid;
515 if (uuidStr != NULL) {
516 status_t res = stringToGuid(uuidStr, &uuid);
517 if (res != OK) return res;
518 } else {
519 uuid = *EFFECT_UUID_NULL;
520 }
521
522 return aps->addStreamDefaultEffect(&type, opPackageName, &uuid, priority, usage, id);
523}
524
Ari Hausman-Cohen24628312018-08-13 15:01:09 -0700525status_t AudioEffect::removeSourceDefaultEffect(audio_unique_id_t id)
526{
527 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
528 if (aps == 0) return PERMISSION_DENIED;
529
530 return aps->removeSourceDefaultEffect(id);
531}
532
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700533status_t AudioEffect::removeStreamDefaultEffect(audio_unique_id_t id)
534{
535 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
536 if (aps == 0) return PERMISSION_DENIED;
537
538 return aps->removeStreamDefaultEffect(id);
539}
540
Eric Laurent801a1182010-06-09 00:17:29 -0700541// -------------------------------------------------------------------------
542
543status_t AudioEffect::stringToGuid(const char *str, effect_uuid_t *guid)
544{
545 if (str == NULL || guid == NULL) {
546 return BAD_VALUE;
547 }
548
549 int tmp[10];
550
551 if (sscanf(str, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
552 tmp, tmp+1, tmp+2, tmp+3, tmp+4, tmp+5, tmp+6, tmp+7, tmp+8, tmp+9) < 10) {
553 return BAD_VALUE;
554 }
555 guid->timeLow = (uint32_t)tmp[0];
556 guid->timeMid = (uint16_t)tmp[1];
557 guid->timeHiAndVersion = (uint16_t)tmp[2];
558 guid->clockSeq = (uint16_t)tmp[3];
559 guid->node[0] = (uint8_t)tmp[4];
560 guid->node[1] = (uint8_t)tmp[5];
561 guid->node[2] = (uint8_t)tmp[6];
562 guid->node[3] = (uint8_t)tmp[7];
563 guid->node[4] = (uint8_t)tmp[8];
564 guid->node[5] = (uint8_t)tmp[9];
565
566 return NO_ERROR;
567}
568
569status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen)
570{
571 if (guid == NULL || str == NULL) {
572 return BAD_VALUE;
573 }
574
575 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
576 guid->timeLow,
577 guid->timeMid,
578 guid->timeHiAndVersion,
579 guid->clockSeq,
580 guid->node[0],
581 guid->node[1],
582 guid->node[2],
583 guid->node[3],
584 guid->node[4],
585 guid->node[5]);
586
587 return NO_ERROR;
588}
589
590
Glenn Kasten40bc9062015-03-20 09:09:33 -0700591} // namespace android