Subhash Chandra Bose Naripeddy | 3eedc00 | 2013-11-12 20:45:15 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013, The Linux Foundation. All rights reserved. |
| 3 | * Not a Contribution. |
| 4 | * |
| 5 | * Copyright (C) 2013 The Android Open Source Project |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | |
| 20 | #define LOG_TAG "offload_effect_bass_boost" |
| 21 | #define LOG_NDEBUG 0 |
| 22 | |
| 23 | #include <cutils/list.h> |
| 24 | #include <cutils/log.h> |
| 25 | #include <tinyalsa/asoundlib.h> |
| 26 | #include <audio_effects.h> |
| 27 | #include <audio_effects/effect_bassboost.h> |
| 28 | |
| 29 | #include "effect_api.h" |
| 30 | #include "bass_boost.h" |
| 31 | |
| 32 | /* Offload bassboost UUID: 2c4a8c24-1581-487f-94f6-0002a5d5c51b */ |
| 33 | const effect_descriptor_t bassboost_descriptor = { |
| 34 | {0x0634f220, 0xddd4, 0x11db, 0xa0fc, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b }}, |
| 35 | {0x2c4a8c24, 0x1581, 0x487f, 0x94f6, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}}, // uuid |
| 36 | EFFECT_CONTROL_API_VERSION, |
| 37 | (EFFECT_FLAG_TYPE_INSERT | EFFECT_FLAG_DEVICE_IND | EFFECT_FLAG_HW_ACC_TUNNEL), |
| 38 | 0, /* TODO */ |
| 39 | 1, |
| 40 | "MSM offload bassboost", |
| 41 | "The Android Open Source Project", |
| 42 | }; |
| 43 | |
| 44 | /* |
| 45 | * Bassboost operations |
| 46 | */ |
| 47 | |
| 48 | int bassboost_get_strength(bassboost_context_t *context) |
| 49 | { |
| 50 | ALOGV("%s: strength: %d", __func__, context->strength); |
| 51 | return context->strength; |
| 52 | } |
| 53 | |
| 54 | int bassboost_set_strength(bassboost_context_t *context, uint32_t strength) |
| 55 | { |
| 56 | ALOGV("%s: strength: %d", __func__, strength); |
| 57 | context->strength = strength; |
| 58 | |
| 59 | offload_bassboost_set_strength(&(context->offload_bass), strength); |
| 60 | if (context->ctl) |
| 61 | offload_bassboost_send_params(context->ctl, context->offload_bass, |
| 62 | OFFLOAD_SEND_BASSBOOST_ENABLE_FLAG | |
| 63 | OFFLOAD_SEND_BASSBOOST_STRENGTH); |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | int bassboost_get_parameter(effect_context_t *context, effect_param_t *p, |
| 68 | uint32_t *size) |
| 69 | { |
| 70 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 71 | int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); |
| 72 | int32_t *param_tmp = (int32_t *)p->data; |
| 73 | int32_t param = *param_tmp++; |
| 74 | void *value = p->data + voffset; |
| 75 | int i; |
| 76 | |
| 77 | ALOGV("%s", __func__); |
| 78 | |
| 79 | p->status = 0; |
| 80 | |
| 81 | switch (param) { |
| 82 | case BASSBOOST_PARAM_STRENGTH_SUPPORTED: |
| 83 | if (p->vsize < sizeof(uint32_t)) |
| 84 | p->status = -EINVAL; |
| 85 | p->vsize = sizeof(uint32_t); |
| 86 | break; |
| 87 | case BASSBOOST_PARAM_STRENGTH: |
| 88 | if (p->vsize < sizeof(int16_t)) |
| 89 | p->status = -EINVAL; |
| 90 | p->vsize = sizeof(int16_t); |
| 91 | break; |
| 92 | default: |
| 93 | p->status = -EINVAL; |
| 94 | } |
| 95 | |
| 96 | *size = sizeof(effect_param_t) + voffset + p->vsize; |
| 97 | |
| 98 | if (p->status != 0) |
| 99 | return 0; |
| 100 | |
| 101 | switch (param) { |
| 102 | case BASSBOOST_PARAM_STRENGTH_SUPPORTED: |
| 103 | ALOGV("%s: BASSBOOST_PARAM_STRENGTH_SUPPORTED", __func__); |
| 104 | *(uint32_t *)value = 1; |
| 105 | break; |
| 106 | |
| 107 | case BASSBOOST_PARAM_STRENGTH: |
| 108 | ALOGV("%s: BASSBOOST_PARAM_STRENGTH", __func__); |
| 109 | *(int16_t *)value = bassboost_get_strength(bass_ctxt); |
| 110 | break; |
| 111 | |
| 112 | default: |
| 113 | p->status = -EINVAL; |
| 114 | break; |
| 115 | } |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | int bassboost_set_parameter(effect_context_t *context, effect_param_t *p, |
| 121 | uint32_t size) |
| 122 | { |
| 123 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 124 | int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); |
| 125 | void *value = p->data + voffset; |
| 126 | int32_t *param_tmp = (int32_t *)p->data; |
| 127 | int32_t param = *param_tmp++; |
| 128 | uint32_t strength; |
| 129 | |
| 130 | ALOGV("%s", __func__); |
| 131 | |
| 132 | p->status = 0; |
| 133 | |
| 134 | switch (param) { |
| 135 | case BASSBOOST_PARAM_STRENGTH: |
| 136 | ALOGV("%s BASSBOOST_PARAM_STRENGTH", __func__); |
| 137 | strength = (uint32_t)(*(int16_t *)value); |
| 138 | bassboost_set_strength(bass_ctxt, strength); |
| 139 | break; |
| 140 | default: |
| 141 | p->status = -EINVAL; |
| 142 | break; |
| 143 | } |
| 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | int bassboost_set_device(effect_context_t *context, uint32_t device) |
| 149 | { |
| 150 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 151 | |
| 152 | ALOGV("%s: device: %d", __func__, device); |
| 153 | bass_ctxt->device = device; |
| 154 | if((device == AUDIO_DEVICE_OUT_SPEAKER) || |
| 155 | (device == AUDIO_DEVICE_OUT_BLUETOOTH_SCO_CARKIT) || |
| 156 | (device == AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_SPEAKER)) { |
| 157 | if (offload_bassboost_get_enable_flag(&(bass_ctxt->offload_bass))) { |
| 158 | offload_bassboost_set_enable_flag(&(bass_ctxt->offload_bass), false); |
| 159 | bass_ctxt->temp_disabled = true; |
| 160 | } |
| 161 | } else { |
| 162 | if (!offload_bassboost_get_enable_flag(&(bass_ctxt->offload_bass)) && |
| 163 | bass_ctxt->temp_disabled) { |
| 164 | offload_bassboost_set_enable_flag(&(bass_ctxt->offload_bass), true); |
| 165 | bass_ctxt->temp_disabled = false; |
| 166 | } |
| 167 | } |
| 168 | offload_bassboost_set_device(&(bass_ctxt->offload_bass), device); |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | int bassboost_reset(effect_context_t *context) |
| 173 | { |
| 174 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | int bassboost_init(effect_context_t *context) |
| 180 | { |
| 181 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 182 | |
| 183 | ALOGV("%s", __func__); |
| 184 | context->config.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ; |
| 185 | context->config.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO; |
| 186 | context->config.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT; |
| 187 | context->config.inputCfg.samplingRate = 44100; |
| 188 | context->config.inputCfg.bufferProvider.getBuffer = NULL; |
| 189 | context->config.inputCfg.bufferProvider.releaseBuffer = NULL; |
| 190 | context->config.inputCfg.bufferProvider.cookie = NULL; |
| 191 | context->config.inputCfg.mask = EFFECT_CONFIG_ALL; |
| 192 | context->config.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE; |
| 193 | context->config.outputCfg.channels = AUDIO_CHANNEL_OUT_STEREO; |
| 194 | context->config.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT; |
| 195 | context->config.outputCfg.samplingRate = 44100; |
| 196 | context->config.outputCfg.bufferProvider.getBuffer = NULL; |
| 197 | context->config.outputCfg.bufferProvider.releaseBuffer = NULL; |
| 198 | context->config.outputCfg.bufferProvider.cookie = NULL; |
| 199 | context->config.outputCfg.mask = EFFECT_CONFIG_ALL; |
| 200 | |
| 201 | set_config(context, &context->config); |
| 202 | |
| 203 | bass_ctxt->temp_disabled = false; |
| 204 | memset(&(bass_ctxt->offload_bass), 0, sizeof(struct bass_boost_params)); |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | int bassboost_enable(effect_context_t *context) |
| 210 | { |
| 211 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 212 | |
| 213 | ALOGV("%s", __func__); |
| 214 | |
| 215 | if (!offload_bassboost_get_enable_flag(&(bass_ctxt->offload_bass))) |
| 216 | offload_bassboost_set_enable_flag(&(bass_ctxt->offload_bass), true); |
| 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | int bassboost_disable(effect_context_t *context) |
| 221 | { |
| 222 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 223 | |
| 224 | ALOGV("%s", __func__); |
| 225 | if (offload_bassboost_get_enable_flag(&(bass_ctxt->offload_bass))) { |
| 226 | offload_bassboost_set_enable_flag(&(bass_ctxt->offload_bass), false); |
| 227 | if (bass_ctxt->ctl) |
| 228 | offload_bassboost_send_params(bass_ctxt->ctl, |
| 229 | bass_ctxt->offload_bass, |
| 230 | OFFLOAD_SEND_BASSBOOST_ENABLE_FLAG); |
| 231 | } |
| 232 | return 0; |
| 233 | } |
| 234 | |
| 235 | int bassboost_start(effect_context_t *context, output_context_t *output) |
| 236 | { |
| 237 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 238 | |
| 239 | ALOGV("%s", __func__); |
| 240 | bass_ctxt->ctl = output->ctl; |
| 241 | ALOGV("output->ctl: %p", output->ctl); |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | int bassboost_stop(effect_context_t *context, output_context_t *output) |
| 246 | { |
| 247 | bassboost_context_t *bass_ctxt = (bassboost_context_t *)context; |
| 248 | |
| 249 | ALOGV("%s", __func__); |
| 250 | bass_ctxt->ctl = NULL; |
| 251 | return 0; |
| 252 | } |