blob: 2b2506c032b7d3feb60a179c08d8866149587a0c [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 Laurentfefebb52019-11-13 12:45:28 -080051 audio_io_handle_t io,
52 const AudioDeviceTypeAddr& device
Eric Laurent801a1182010-06-09 00:17:29 -070053 )
Svet Ganovbe71aa22015-04-28 12:06:02 -070054 : mStatus(NO_INIT), mOpPackageName(opPackageName)
Eric Laurent801a1182010-06-09 00:17:29 -070055{
haobo101735293f51b542018-08-09 09:14:31 +080056 AutoMutex lock(mConstructLock);
Eric Laurentfefebb52019-11-13 12:45:28 -080057 mStatus = set(type, uuid, priority, cbf, user, sessionId, io, device);
Eric Laurent801a1182010-06-09 00:17:29 -070058}
59
60AudioEffect::AudioEffect(const char *typeStr,
Svet Ganovbe71aa22015-04-28 12:06:02 -070061 const String16& opPackageName,
Eric Laurent801a1182010-06-09 00:17:29 -070062 const char *uuidStr,
63 int32_t priority,
64 effect_callback_t cbf,
65 void* user,
Glenn Kastend848eb42016-03-08 13:42:11 -080066 audio_session_t sessionId,
Eric Laurentfefebb52019-11-13 12:45:28 -080067 audio_io_handle_t io,
68 const AudioDeviceTypeAddr& device
Eric Laurent801a1182010-06-09 00:17:29 -070069 )
Svet Ganovbe71aa22015-04-28 12:06:02 -070070 : mStatus(NO_INIT), mOpPackageName(opPackageName)
Eric Laurent801a1182010-06-09 00:17:29 -070071{
72 effect_uuid_t type;
73 effect_uuid_t *pType = NULL;
74 effect_uuid_t uuid;
75 effect_uuid_t *pUuid = NULL;
76
Steve Block3856b092011-10-20 11:56:00 +010077 ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr, uuidStr);
Eric Laurent801a1182010-06-09 00:17:29 -070078
79 if (typeStr != NULL) {
80 if (stringToGuid(typeStr, &type) == NO_ERROR) {
81 pType = &type;
82 }
83 }
84
85 if (uuidStr != NULL) {
86 if (stringToGuid(uuidStr, &uuid) == NO_ERROR) {
87 pUuid = &uuid;
88 }
89 }
90
haobo101735293f51b542018-08-09 09:14:31 +080091 AutoMutex lock(mConstructLock);
Eric Laurentfefebb52019-11-13 12:45:28 -080092 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io, device);
Eric Laurent801a1182010-06-09 00:17:29 -070093}
94
95status_t AudioEffect::set(const effect_uuid_t *type,
96 const effect_uuid_t *uuid,
97 int32_t priority,
98 effect_callback_t cbf,
99 void* user,
Glenn Kastend848eb42016-03-08 13:42:11 -0800100 audio_session_t sessionId,
Eric Laurentfefebb52019-11-13 12:45:28 -0800101 audio_io_handle_t io,
102 const AudioDeviceTypeAddr& device)
Eric Laurent801a1182010-06-09 00:17:29 -0700103{
104 sp<IEffect> iEffect;
105 sp<IMemory> cblk;
106 int enabled;
107
Steve Block3856b092011-10-20 11:56:00 +0100108 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type->timeLow : 0);
Eric Laurent801a1182010-06-09 00:17:29 -0700109
110 if (mIEffect != 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000111 ALOGW("Effect already in use");
Eric Laurent801a1182010-06-09 00:17:29 -0700112 return INVALID_OPERATION;
113 }
114
Eric Laurentfefebb52019-11-13 12:45:28 -0800115 if (sessionId == AUDIO_SESSION_DEVICE && io != AUDIO_IO_HANDLE_NONE) {
116 ALOGW("IO handle should not be specified for device effect");
117 return BAD_VALUE;
118 }
Eric Laurent801a1182010-06-09 00:17:29 -0700119 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
120 if (audioFlinger == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000121 ALOGE("set(): Could not get audioflinger");
Eric Laurent801a1182010-06-09 00:17:29 -0700122 return NO_INIT;
123 }
124
125 if (type == NULL && uuid == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000126 ALOGW("Must specify at least type or uuid");
Eric Laurent801a1182010-06-09 00:17:29 -0700127 return BAD_VALUE;
128 }
129
130 mPriority = priority;
131 mCbf = cbf;
132 mUserData = user;
133 mSessionId = sessionId;
134
135 memset(&mDescriptor, 0, sizeof(effect_descriptor_t));
Glenn Kastena189a682012-02-20 12:16:30 -0800136 mDescriptor.type = *(type != NULL ? type : EFFECT_UUID_NULL);
137 mDescriptor.uuid = *(uuid != NULL ? uuid : EFFECT_UUID_NULL);
Eric Laurent801a1182010-06-09 00:17:29 -0700138
139 mIEffectClient = new EffectClient(this);
Eric Laurentb6436272016-12-07 19:24:50 -0800140 mClientPid = IPCThreadState::self()->getCallingPid();
Eric Laurent801a1182010-06-09 00:17:29 -0700141
Glenn Kasten8d6cc842012-02-03 11:06:53 -0800142 iEffect = audioFlinger->createEffect((effect_descriptor_t *)&mDescriptor,
Eric Laurentfefebb52019-11-13 12:45:28 -0800143 mIEffectClient, priority, io, mSessionId, device, mOpPackageName, mClientPid,
Eric Laurentb6436272016-12-07 19:24:50 -0800144 &mStatus, &mId, &enabled);
Eric Laurent801a1182010-06-09 00:17:29 -0700145
146 if (iEffect == 0 || (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS)) {
Mikhail Naganov98389e32020-03-23 11:44:33 -0700147 char typeBuffer[64] = {}, uuidBuffer[64] = {};
Mikhail Naganov424c4f52017-07-19 17:54:29 -0700148 guidToString(type, typeBuffer, sizeof(typeBuffer));
149 guidToString(uuid, uuidBuffer, sizeof(uuidBuffer));
150 ALOGE("set(): AudioFlinger could not create effect %s / %s, status: %d",
Mikhail Naganov98389e32020-03-23 11:44:33 -0700151 type != nullptr ? typeBuffer : "NULL",
152 uuid != nullptr ? uuidBuffer : "NULL",
153 mStatus);
Eric Laurenteecd7652015-06-04 16:20:16 -0700154 if (iEffect == 0) {
155 mStatus = NO_INIT;
156 }
Eric Laurent801a1182010-06-09 00:17:29 -0700157 return mStatus;
158 }
159
160 mEnabled = (volatile int32_t)enabled;
161
Eric Laurent801a1182010-06-09 00:17:29 -0700162 cblk = iEffect->getCblk();
163 if (cblk == 0) {
164 mStatus = NO_INIT;
Steve Block29357bc2012-01-06 19:20:56 +0000165 ALOGE("Could not get control block");
Eric Laurent801a1182010-06-09 00:17:29 -0700166 return mStatus;
167 }
168
Eric Laurenteecd7652015-06-04 16:20:16 -0700169 mIEffect = iEffect;
Eric Laurent801a1182010-06-09 00:17:29 -0700170 mCblkMemory = cblk;
171 mCblk = static_cast<effect_param_cblk_t*>(cblk->pointer());
172 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
173 mCblk->buffer = (uint8_t *)mCblk + bufOffset;
174
Marco Nelissen06b46062014-11-14 07:58:25 -0800175 IInterface::asBinder(iEffect)->linkToDeath(mIEffectClient);
Jean-Michel Trivia0fd9ca2014-09-18 14:07:18 -0700176 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
177 mStatus, mEnabled, mClientPid);
178
Eric Laurenta20c4e92019-11-12 15:55:51 -0800179 if (!audio_is_global_session(mSessionId)) {
Jean-Michel Trivia0fd9ca2014-09-18 14:07:18 -0700180 AudioSystem::acquireAudioSessionId(mSessionId, mClientPid);
181 }
Eric Laurent801a1182010-06-09 00:17:29 -0700182
183 return mStatus;
184}
185
186
187AudioEffect::~AudioEffect()
188{
Steve Block3856b092011-10-20 11:56:00 +0100189 ALOGV("Destructor %p", this);
Eric Laurent801a1182010-06-09 00:17:29 -0700190
191 if (mStatus == NO_ERROR || mStatus == ALREADY_EXISTS) {
Eric Laurenta20c4e92019-11-12 15:55:51 -0800192 if (!audio_is_global_session(mSessionId)) {
Jean-Michel Trivia0fd9ca2014-09-18 14:07:18 -0700193 AudioSystem::releaseAudioSessionId(mSessionId, mClientPid);
194 }
Eric Laurent801a1182010-06-09 00:17:29 -0700195 if (mIEffect != NULL) {
196 mIEffect->disconnect();
Marco Nelissen06b46062014-11-14 07:58:25 -0800197 IInterface::asBinder(mIEffect)->unlinkToDeath(mIEffectClient);
Eric Laurent801a1182010-06-09 00:17:29 -0700198 }
Eric Laurenteecd7652015-06-04 16:20:16 -0700199 mIEffect.clear();
200 mCblkMemory.clear();
201 mIEffectClient.clear();
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700202 IPCThreadState::self()->flushCommands();
Eric Laurent801a1182010-06-09 00:17:29 -0700203 }
Eric Laurent801a1182010-06-09 00:17:29 -0700204}
205
206
207status_t AudioEffect::initCheck() const
208{
209 return mStatus;
210}
211
212// -------------------------------------------------------------------------
213
214effect_descriptor_t AudioEffect::descriptor() const
215{
216 return mDescriptor;
217}
218
Eric Laurentda7581b2010-07-02 08:12:41 -0700219bool AudioEffect::getEnabled() const
Eric Laurent801a1182010-06-09 00:17:29 -0700220{
221 return (mEnabled != 0);
222}
223
Eric Laurentda7581b2010-07-02 08:12:41 -0700224status_t AudioEffect::setEnabled(bool enabled)
Eric Laurent801a1182010-06-09 00:17:29 -0700225{
226 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800227 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700228 }
Eric Laurent801a1182010-06-09 00:17:29 -0700229
Eric Laurentf5aafb22010-11-18 08:40:16 -0800230 status_t status = NO_ERROR;
231
232 AutoMutex lock(mLock);
233 if (enabled != mEnabled) {
234 if (enabled) {
Steve Block3856b092011-10-20 11:56:00 +0100235 ALOGV("enable %p", this);
Eric Laurentf5aafb22010-11-18 08:40:16 -0800236 status = mIEffect->enable();
237 } else {
Steve Block3856b092011-10-20 11:56:00 +0100238 ALOGV("disable %p", this);
Eric Laurentf5aafb22010-11-18 08:40:16 -0800239 status = mIEffect->disable();
Eric Laurentda7581b2010-07-02 08:12:41 -0700240 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800241 if (status == NO_ERROR) {
242 mEnabled = enabled;
Eric Laurentda7581b2010-07-02 08:12:41 -0700243 }
Eric Laurent801a1182010-06-09 00:17:29 -0700244 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800245 return status;
Eric Laurent801a1182010-06-09 00:17:29 -0700246}
247
Eric Laurent25f43952010-07-28 05:40:18 -0700248status_t AudioEffect::command(uint32_t cmdCode,
249 uint32_t cmdSize,
250 void *cmdData,
251 uint32_t *replySize,
252 void *replyData)
Eric Laurent801a1182010-06-09 00:17:29 -0700253{
254 if (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS) {
Steve Block3856b092011-10-20 11:56:00 +0100255 ALOGV("command() bad status %d", mStatus);
John Grossmanaf7d8182012-01-11 12:23:42 -0800256 return mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700257 }
258
Eric Laurentf5aafb22010-11-18 08:40:16 -0800259 if (cmdCode == EFFECT_CMD_ENABLE || cmdCode == EFFECT_CMD_DISABLE) {
260 if (mEnabled == (cmdCode == EFFECT_CMD_ENABLE)) {
261 return NO_ERROR;
262 }
263 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) {
264 return BAD_VALUE;
265 }
266 mLock.lock();
Eric Laurent0fa449c2010-09-24 11:52:04 -0700267 }
268
Eric Laurent8569f0d2010-07-29 23:43:43 -0700269 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
Eric Laurent0fa449c2010-09-24 11:52:04 -0700270
271 if (cmdCode == EFFECT_CMD_ENABLE || cmdCode == EFFECT_CMD_DISABLE) {
Eric Laurentf5aafb22010-11-18 08:40:16 -0800272 if (status == NO_ERROR) {
273 status = *(status_t *)replyData;
Eric Laurent0fa449c2010-09-24 11:52:04 -0700274 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800275 if (status == NO_ERROR) {
276 mEnabled = (cmdCode == EFFECT_CMD_ENABLE);
Eric Laurent0fa449c2010-09-24 11:52:04 -0700277 }
Eric Laurentf5aafb22010-11-18 08:40:16 -0800278 mLock.unlock();
Eric Laurent8569f0d2010-07-29 23:43:43 -0700279 }
280
Eric Laurent8569f0d2010-07-29 23:43:43 -0700281 return status;
Eric Laurent801a1182010-06-09 00:17:29 -0700282}
283
284
285status_t AudioEffect::setParameter(effect_param_t *param)
286{
287 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800288 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700289 }
290
291 if (param == NULL || param->psize == 0 || param->vsize == 0) {
292 return BAD_VALUE;
293 }
294
Eric Laurent25f43952010-07-28 05:40:18 -0700295 uint32_t size = sizeof(int);
296 uint32_t psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
Eric Laurent801a1182010-06-09 00:17:29 -0700297
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700298 ALOGV("setParameter: param: %d, param2: %d", *(int *)param->data,
299 (param->psize == 8) ? *((int *)param->data + 1): -1);
Eric Laurent801a1182010-06-09 00:17:29 -0700300
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700301 return mIEffect->command(EFFECT_CMD_SET_PARAM, sizeof (effect_param_t) + psize, param, &size,
302 &param->status);
Eric Laurent801a1182010-06-09 00:17:29 -0700303}
304
305status_t AudioEffect::setParameterDeferred(effect_param_t *param)
306{
307 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800308 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700309 }
310
311 if (param == NULL || param->psize == 0 || param->vsize == 0) {
312 return BAD_VALUE;
313 }
314
315 Mutex::Autolock _l(mCblk->lock);
316
317 int psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
318 int size = ((sizeof(effect_param_t) + psize - 1) / sizeof(int) + 1) * sizeof(int);
319
320 if (mCblk->clientIndex + size > EFFECT_PARAM_BUFFER_SIZE) {
321 return NO_MEMORY;
322 }
323 int *p = (int *)(mCblk->buffer + mCblk->clientIndex);
324 *p++ = size;
325 memcpy(p, param, sizeof(effect_param_t) + psize);
326 mCblk->clientIndex += size;
327
328 return NO_ERROR;
329}
330
331status_t AudioEffect::setParameterCommit()
332{
333 if (mStatus != NO_ERROR) {
Glenn Kastenf063b492012-02-17 16:24:10 -0800334 return (mStatus == ALREADY_EXISTS) ? (status_t) INVALID_OPERATION : mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700335 }
336
337 Mutex::Autolock _l(mCblk->lock);
338 if (mCblk->clientIndex == 0) {
339 return INVALID_OPERATION;
340 }
Eric Laurent25f43952010-07-28 05:40:18 -0700341 uint32_t size = 0;
Eric Laurent801a1182010-06-09 00:17:29 -0700342 return mIEffect->command(EFFECT_CMD_SET_PARAM_COMMIT, 0, NULL, &size, NULL);
343}
344
345status_t AudioEffect::getParameter(effect_param_t *param)
346{
347 if (mStatus != NO_ERROR && mStatus != ALREADY_EXISTS) {
John Grossmanaf7d8182012-01-11 12:23:42 -0800348 return mStatus;
Eric Laurent801a1182010-06-09 00:17:29 -0700349 }
350
351 if (param == NULL || param->psize == 0 || param->vsize == 0) {
352 return BAD_VALUE;
353 }
354
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700355 ALOGV("getParameter: param: %d, param2: %d", *(int *)param->data,
356 (param->psize == 8) ? *((int *)param->data + 1): -1);
Eric Laurent801a1182010-06-09 00:17:29 -0700357
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700358 uint32_t psize = sizeof(effect_param_t) + ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
359 param->vsize;
Eric Laurent801a1182010-06-09 00:17:29 -0700360
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700361 return mIEffect->command(EFFECT_CMD_GET_PARAM, sizeof(effect_param_t) + param->psize, param,
362 &psize, param);
Eric Laurent801a1182010-06-09 00:17:29 -0700363}
364
365
366// -------------------------------------------------------------------------
367
368void AudioEffect::binderDied()
369{
Steve Block5ff1dd52012-01-05 23:22:43 +0000370 ALOGW("IEffect died");
John Grossmanaf7d8182012-01-11 12:23:42 -0800371 mStatus = DEAD_OBJECT;
Glenn Kastena0d68332012-01-27 16:47:15 -0800372 if (mCbf != NULL) {
Eric Laurent801a1182010-06-09 00:17:29 -0700373 status_t status = DEAD_OBJECT;
374 mCbf(EVENT_ERROR, mUserData, &status);
375 }
376 mIEffect.clear();
377}
378
379// -------------------------------------------------------------------------
380
381void AudioEffect::controlStatusChanged(bool controlGranted)
382{
Glenn Kasten85ab62c2012-11-01 11:11:38 -0700383 ALOGV("controlStatusChanged %p control %d callback %p mUserData %p", this, controlGranted, mCbf,
384 mUserData);
Eric Laurent801a1182010-06-09 00:17:29 -0700385 if (controlGranted) {
386 if (mStatus == ALREADY_EXISTS) {
387 mStatus = NO_ERROR;
388 }
389 } else {
390 if (mStatus == NO_ERROR) {
391 mStatus = ALREADY_EXISTS;
392 }
393 }
Glenn Kastena0d68332012-01-27 16:47:15 -0800394 if (mCbf != NULL) {
Eric Laurent801a1182010-06-09 00:17:29 -0700395 mCbf(EVENT_CONTROL_STATUS_CHANGED, mUserData, &controlGranted);
396 }
397}
398
399void AudioEffect::enableStatusChanged(bool enabled)
400{
Steve Block3856b092011-10-20 11:56:00 +0100401 ALOGV("enableStatusChanged %p enabled %d mCbf %p", this, enabled, mCbf);
Eric Laurent801a1182010-06-09 00:17:29 -0700402 if (mStatus == ALREADY_EXISTS) {
Eric Laurentf5aafb22010-11-18 08:40:16 -0800403 mEnabled = enabled;
Glenn Kastena0d68332012-01-27 16:47:15 -0800404 if (mCbf != NULL) {
Eric Laurent801a1182010-06-09 00:17:29 -0700405 mCbf(EVENT_ENABLE_STATUS_CHANGED, mUserData, &enabled);
406 }
407 }
408}
409
Eric Laurent25f43952010-07-28 05:40:18 -0700410void AudioEffect::commandExecuted(uint32_t cmdCode,
Glenn Kasten0f11b512014-01-31 16:18:54 -0800411 uint32_t cmdSize __unused,
Eric Laurent25f43952010-07-28 05:40:18 -0700412 void *cmdData,
Glenn Kasten0f11b512014-01-31 16:18:54 -0800413 uint32_t replySize __unused,
Eric Laurent25f43952010-07-28 05:40:18 -0700414 void *replyData)
Eric Laurent801a1182010-06-09 00:17:29 -0700415{
416 if (cmdData == NULL || replyData == NULL) {
417 return;
418 }
419
Glenn Kastena0d68332012-01-27 16:47:15 -0800420 if (mCbf != NULL && cmdCode == EFFECT_CMD_SET_PARAM) {
Eric Laurent801a1182010-06-09 00:17:29 -0700421 effect_param_t *cmd = (effect_param_t *)cmdData;
422 cmd->status = *(int32_t *)replyData;
423 mCbf(EVENT_PARAMETER_CHANGED, mUserData, cmd);
424 }
425}
426
427// -------------------------------------------------------------------------
428
Eric Laurent801a1182010-06-09 00:17:29 -0700429status_t AudioEffect::queryNumberEffects(uint32_t *numEffects)
430{
431 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
432 if (af == 0) return PERMISSION_DENIED;
433 return af->queryNumberEffects(numEffects);
434}
435
Eric Laurentffe9c252010-06-23 17:38:20 -0700436status_t AudioEffect::queryEffect(uint32_t index, effect_descriptor_t *descriptor)
Eric Laurent801a1182010-06-09 00:17:29 -0700437{
438 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
439 if (af == 0) return PERMISSION_DENIED;
Eric Laurentffe9c252010-06-23 17:38:20 -0700440 return af->queryEffect(index, descriptor);
Eric Laurent801a1182010-06-09 00:17:29 -0700441}
442
Glenn Kasten5e92a782012-01-30 07:40:52 -0800443status_t AudioEffect::getEffectDescriptor(const effect_uuid_t *uuid,
Ari Hausman-Cohen2046ec72018-04-24 14:00:55 -0700444 const effect_uuid_t *type,
445 uint32_t preferredTypeFlag,
446 effect_descriptor_t *descriptor)
Eric Laurent801a1182010-06-09 00:17:29 -0700447{
448 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
449 if (af == 0) return PERMISSION_DENIED;
Ari Hausman-Cohen2046ec72018-04-24 14:00:55 -0700450 return af->getEffectDescriptor(uuid, type, preferredTypeFlag, descriptor);
Eric Laurent801a1182010-06-09 00:17:29 -0700451}
452
Glenn Kastend848eb42016-03-08 13:42:11 -0800453status_t AudioEffect::queryDefaultPreProcessing(audio_session_t audioSession,
Eric Laurent57dae992011-07-24 13:36:09 -0700454 effect_descriptor_t *descriptors,
455 uint32_t *count)
456{
457 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
458 if (aps == 0) return PERMISSION_DENIED;
459 return aps->queryDefaultPreProcessing(audioSession, descriptors, count);
460}
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700461
462status_t AudioEffect::newEffectUniqueId(audio_unique_id_t* id)
463{
464 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
465 if (af == 0) return PERMISSION_DENIED;
466 *id = af->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_EFFECT);
467 return NO_ERROR;
468}
469
Ari Hausman-Cohen24628312018-08-13 15:01:09 -0700470status_t AudioEffect::addSourceDefaultEffect(const char *typeStr,
471 const String16& opPackageName,
472 const char *uuidStr,
473 int32_t priority,
474 audio_source_t source,
475 audio_unique_id_t *id)
476{
477 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
478 if (aps == 0) return PERMISSION_DENIED;
479
480 if (typeStr == NULL && uuidStr == NULL) return BAD_VALUE;
481
482 // Convert type & uuid from string to effect_uuid_t.
483 effect_uuid_t type;
484 if (typeStr != NULL) {
485 status_t res = stringToGuid(typeStr, &type);
486 if (res != OK) return res;
487 } else {
488 type = *EFFECT_UUID_NULL;
489 }
490
491 effect_uuid_t uuid;
492 if (uuidStr != NULL) {
493 status_t res = stringToGuid(uuidStr, &uuid);
494 if (res != OK) return res;
495 } else {
496 uuid = *EFFECT_UUID_NULL;
497 }
498
499 return aps->addSourceDefaultEffect(&type, opPackageName, &uuid, priority, source, id);
500}
501
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700502status_t AudioEffect::addStreamDefaultEffect(const char *typeStr,
503 const String16& opPackageName,
504 const char *uuidStr,
505 int32_t priority,
506 audio_usage_t usage,
507 audio_unique_id_t *id)
508{
509 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
510 if (aps == 0) return PERMISSION_DENIED;
511
512 if (typeStr == NULL && uuidStr == NULL) return BAD_VALUE;
513
514 // Convert type & uuid from string to effect_uuid_t.
515 effect_uuid_t type;
516 if (typeStr != NULL) {
517 status_t res = stringToGuid(typeStr, &type);
518 if (res != OK) return res;
519 } else {
520 type = *EFFECT_UUID_NULL;
521 }
522
523 effect_uuid_t uuid;
524 if (uuidStr != NULL) {
525 status_t res = stringToGuid(uuidStr, &uuid);
526 if (res != OK) return res;
527 } else {
528 uuid = *EFFECT_UUID_NULL;
529 }
530
531 return aps->addStreamDefaultEffect(&type, opPackageName, &uuid, priority, usage, id);
532}
533
Ari Hausman-Cohen24628312018-08-13 15:01:09 -0700534status_t AudioEffect::removeSourceDefaultEffect(audio_unique_id_t id)
535{
536 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
537 if (aps == 0) return PERMISSION_DENIED;
538
539 return aps->removeSourceDefaultEffect(id);
540}
541
Ari Hausman-Cohen433722e2018-04-24 14:25:22 -0700542status_t AudioEffect::removeStreamDefaultEffect(audio_unique_id_t id)
543{
544 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
545 if (aps == 0) return PERMISSION_DENIED;
546
547 return aps->removeStreamDefaultEffect(id);
548}
549
Eric Laurent801a1182010-06-09 00:17:29 -0700550// -------------------------------------------------------------------------
551
552status_t AudioEffect::stringToGuid(const char *str, effect_uuid_t *guid)
553{
554 if (str == NULL || guid == NULL) {
555 return BAD_VALUE;
556 }
557
558 int tmp[10];
559
560 if (sscanf(str, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
561 tmp, tmp+1, tmp+2, tmp+3, tmp+4, tmp+5, tmp+6, tmp+7, tmp+8, tmp+9) < 10) {
562 return BAD_VALUE;
563 }
564 guid->timeLow = (uint32_t)tmp[0];
565 guid->timeMid = (uint16_t)tmp[1];
566 guid->timeHiAndVersion = (uint16_t)tmp[2];
567 guid->clockSeq = (uint16_t)tmp[3];
568 guid->node[0] = (uint8_t)tmp[4];
569 guid->node[1] = (uint8_t)tmp[5];
570 guid->node[2] = (uint8_t)tmp[6];
571 guid->node[3] = (uint8_t)tmp[7];
572 guid->node[4] = (uint8_t)tmp[8];
573 guid->node[5] = (uint8_t)tmp[9];
574
575 return NO_ERROR;
576}
577
578status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen)
579{
580 if (guid == NULL || str == NULL) {
581 return BAD_VALUE;
582 }
583
584 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
585 guid->timeLow,
586 guid->timeMid,
587 guid->timeHiAndVersion,
588 guid->clockSeq,
589 guid->node[0],
590 guid->node[1],
591 guid->node[2],
592 guid->node[3],
593 guid->node[4],
594 guid->node[5]);
595
596 return NO_ERROR;
597}
598
599
Glenn Kasten40bc9062015-03-20 09:09:33 -0700600} // namespace android