Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 1 | /* |
Karthik Reddy Katta | d633c54 | 2015-07-15 18:18:03 +0530 | [diff] [blame] | 2 | * Copyright (c) 2014-2015, The Linux Foundation. All rights reserved. |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 3 | * Not a Contribution. |
| 4 | * |
| 5 | * Copyright (C) 2014 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 "audio_hw_utils" |
| 21 | /* #define LOG_NDEBUG 0 */ |
| 22 | |
| 23 | #include <errno.h> |
| 24 | #include <cutils/properties.h> |
| 25 | #include <cutils/config_utils.h> |
| 26 | #include <stdlib.h> |
| 27 | #include <dlfcn.h> |
| 28 | #include <cutils/str_parms.h> |
| 29 | #include <cutils/log.h> |
| 30 | #include <cutils/misc.h> |
| 31 | |
| 32 | #include "audio_hw.h" |
| 33 | #include "platform.h" |
| 34 | #include "platform_api.h" |
| 35 | #include "audio_extn.h" |
Narsinga Rao Chella | 212e254 | 2014-11-17 19:57:04 -0800 | [diff] [blame] | 36 | #include "voice.h" |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 37 | |
| 38 | #define AUDIO_OUTPUT_POLICY_VENDOR_CONFIG_FILE "/vendor/etc/audio_output_policy.conf" |
| 39 | |
| 40 | #define OUTPUTS_TAG "outputs" |
| 41 | |
| 42 | #define DYNAMIC_VALUE_TAG "dynamic" |
| 43 | #define FLAGS_TAG "flags" |
| 44 | #define FORMATS_TAG "formats" |
| 45 | #define SAMPLING_RATES_TAG "sampling_rates" |
| 46 | #define BIT_WIDTH_TAG "bit_width" |
| 47 | #define APP_TYPE_TAG "app_type" |
| 48 | |
| 49 | #define STRING_TO_ENUM(string) { #string, string } |
| 50 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) |
| 51 | |
Ben Romberger | a04fabc | 2014-11-14 12:16:03 -0800 | [diff] [blame] | 52 | #define BASE_TABLE_SIZE 64 |
| 53 | #define MAX_BASEINDEX_LEN 256 |
| 54 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 55 | struct string_to_enum { |
| 56 | const char *name; |
| 57 | uint32_t value; |
| 58 | }; |
| 59 | |
| 60 | const struct string_to_enum s_flag_name_to_enum_table[] = { |
| 61 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_DIRECT), |
| 62 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_PRIMARY), |
| 63 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_FAST), |
| 64 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_DEEP_BUFFER), |
| 65 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD), |
| 66 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_NON_BLOCKING), |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 67 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_HW_AV_SYNC), |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 68 | #ifdef INCALL_MUSIC_ENABLED |
| 69 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_INCALL_MUSIC), |
| 70 | #endif |
Mingming Yin | 497419f | 2015-07-01 16:57:32 -0700 | [diff] [blame] | 71 | #ifdef HDMI_PASSTHROUGH_ENABLED |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 72 | STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH), |
Mingming Yin | 497419f | 2015-07-01 16:57:32 -0700 | [diff] [blame] | 73 | #endif |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | const struct string_to_enum s_format_name_to_enum_table[] = { |
| 77 | STRING_TO_ENUM(AUDIO_FORMAT_PCM_16_BIT), |
| 78 | STRING_TO_ENUM(AUDIO_FORMAT_PCM_8_BIT), |
| 79 | STRING_TO_ENUM(AUDIO_FORMAT_MP3), |
| 80 | STRING_TO_ENUM(AUDIO_FORMAT_AAC), |
| 81 | STRING_TO_ENUM(AUDIO_FORMAT_VORBIS), |
Mingming Yin | ae3530f | 2014-07-03 16:50:18 -0700 | [diff] [blame] | 82 | STRING_TO_ENUM(AUDIO_FORMAT_AMR_NB), |
| 83 | STRING_TO_ENUM(AUDIO_FORMAT_AMR_WB), |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 84 | STRING_TO_ENUM(AUDIO_FORMAT_AC3), |
Mingming Yin | ae3530f | 2014-07-03 16:50:18 -0700 | [diff] [blame] | 85 | STRING_TO_ENUM(AUDIO_FORMAT_E_AC3), |
Satya Krishna Pindiproli | 5d82d01 | 2015-08-12 18:21:25 +0530 | [diff] [blame] | 86 | #ifdef AUDIO_EXTN_FORMATS_ENABLED |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 87 | STRING_TO_ENUM(AUDIO_FORMAT_DTS), |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 88 | STRING_TO_ENUM(AUDIO_FORMAT_WMA), |
| 89 | STRING_TO_ENUM(AUDIO_FORMAT_WMA_PRO), |
| 90 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_ADIF), |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 91 | STRING_TO_ENUM(AUDIO_FORMAT_AMR_WB_PLUS), |
| 92 | STRING_TO_ENUM(AUDIO_FORMAT_EVRC), |
| 93 | STRING_TO_ENUM(AUDIO_FORMAT_EVRCB), |
| 94 | STRING_TO_ENUM(AUDIO_FORMAT_EVRCWB), |
| 95 | STRING_TO_ENUM(AUDIO_FORMAT_QCELP), |
| 96 | STRING_TO_ENUM(AUDIO_FORMAT_MP2), |
| 97 | STRING_TO_ENUM(AUDIO_FORMAT_EVRCNW), |
| 98 | STRING_TO_ENUM(AUDIO_FORMAT_PCM_16_BIT_OFFLOAD), |
| 99 | STRING_TO_ENUM(AUDIO_FORMAT_PCM_24_BIT_OFFLOAD), |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 100 | STRING_TO_ENUM(AUDIO_FORMAT_FLAC), |
Satya Krishna Pindiproli | 7047160 | 2015-04-24 19:12:43 +0530 | [diff] [blame] | 101 | STRING_TO_ENUM(AUDIO_FORMAT_ALAC), |
| 102 | STRING_TO_ENUM(AUDIO_FORMAT_APE), |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 103 | STRING_TO_ENUM(AUDIO_FORMAT_E_AC3_JOC), |
Alexy Joseph | cd8eaed | 2014-12-11 12:46:53 -0800 | [diff] [blame] | 104 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_LC), |
| 105 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_HE_V1), |
| 106 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_HE_V2), |
Manish Dewangan | a6fc544 | 2015-08-24 20:30:31 +0530 | [diff] [blame^] | 107 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_ADTS), |
| 108 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_SUB_LC), |
| 109 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_SUB_HE_V1), |
| 110 | STRING_TO_ENUM(AUDIO_FORMAT_AAC_SUB_HE_V2), |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 111 | #endif |
| 112 | }; |
| 113 | |
Ben Romberger | a04fabc | 2014-11-14 12:16:03 -0800 | [diff] [blame] | 114 | static char bTable[BASE_TABLE_SIZE] = { |
| 115 | 'A','B','C','D','E','F','G','H','I','J','K','L', |
| 116 | 'M','N','O','P','Q','R','S','T','U','V','W','X', |
| 117 | 'Y','Z','a','b','c','d','e','f','g','h','i','j', |
| 118 | 'k','l','m','n','o','p','q','r','s','t','u','v', |
| 119 | 'w','x','y','z','0','1','2','3','4','5','6','7', |
| 120 | '8','9','+','/' |
| 121 | }; |
| 122 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 123 | static uint32_t string_to_enum(const struct string_to_enum *table, size_t size, |
| 124 | const char *name) |
| 125 | { |
| 126 | size_t i; |
| 127 | for (i = 0; i < size; i++) { |
| 128 | if (strcmp(table[i].name, name) == 0) { |
| 129 | ALOGV("%s found %s", __func__, table[i].name); |
| 130 | return table[i].value; |
| 131 | } |
| 132 | } |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | static audio_output_flags_t parse_flag_names(char *name) |
| 137 | { |
| 138 | uint32_t flag = 0; |
| 139 | char *flag_name = strtok(name, "|"); |
| 140 | while (flag_name != NULL) { |
| 141 | if (strlen(flag_name) != 0) { |
| 142 | flag |= string_to_enum(s_flag_name_to_enum_table, |
| 143 | ARRAY_SIZE(s_flag_name_to_enum_table), |
| 144 | flag_name); |
| 145 | } |
| 146 | flag_name = strtok(NULL, "|"); |
| 147 | } |
| 148 | |
| 149 | ALOGV("parse_flag_names: flag - %d", flag); |
| 150 | return (audio_output_flags_t)flag; |
| 151 | } |
| 152 | |
| 153 | static void parse_format_names(char *name, struct streams_output_cfg *so_info) |
| 154 | { |
| 155 | struct stream_format *sf_info = NULL; |
| 156 | char *str = strtok(name, "|"); |
| 157 | |
| 158 | if (str != NULL && strcmp(str, DYNAMIC_VALUE_TAG) == 0) |
| 159 | return; |
| 160 | |
| 161 | list_init(&so_info->format_list); |
| 162 | while (str != NULL) { |
| 163 | audio_format_t format = (audio_format_t)string_to_enum(s_format_name_to_enum_table, |
| 164 | ARRAY_SIZE(s_format_name_to_enum_table), str); |
| 165 | ALOGV("%s: format - %d", __func__, format); |
| 166 | if (format != 0) { |
| 167 | sf_info = (struct stream_format *)calloc(1, sizeof(struct stream_format)); |
Haynes Mathew George | b51ceb1 | 2014-06-30 13:56:18 -0700 | [diff] [blame] | 168 | if (sf_info == NULL) |
| 169 | break; /* return whatever was parsed */ |
| 170 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 171 | sf_info->format = format; |
| 172 | list_add_tail(&so_info->format_list, &sf_info->list); |
| 173 | } |
| 174 | str = strtok(NULL, "|"); |
| 175 | } |
| 176 | } |
| 177 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 178 | static void parse_sample_rate_names(char *name, struct streams_output_cfg *so_info) |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 179 | { |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 180 | struct stream_sample_rate *ss_info = NULL; |
| 181 | uint32_t sample_rate = 48000; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 182 | char *str = strtok(name, "|"); |
| 183 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 184 | if (str != NULL && 0 == strcmp(str, DYNAMIC_VALUE_TAG)) |
| 185 | return; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 186 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 187 | list_init(&so_info->sample_rate_list); |
| 188 | while (str != NULL) { |
| 189 | sample_rate = (uint32_t)strtol(str, (char **)NULL, 10); |
| 190 | ALOGV("%s: sample_rate - %d", __func__, sample_rate); |
| 191 | if (0 != sample_rate) { |
| 192 | ss_info = (struct stream_sample_rate *)calloc(1, sizeof(struct stream_sample_rate)); |
Chaithanya Krishna Bacharaju | db6236a | 2015-01-30 10:08:33 +0530 | [diff] [blame] | 193 | if (ss_info == NULL) |
| 194 | break; /* return whatever was parsed */ |
| 195 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 196 | ss_info->sample_rate = sample_rate; |
| 197 | list_add_tail(&so_info->sample_rate_list, &ss_info->list); |
| 198 | } |
| 199 | str = strtok(NULL, "|"); |
| 200 | } |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | static int parse_bit_width_names(char *name) |
| 204 | { |
| 205 | int bit_width = 16; |
| 206 | char *str = strtok(name, "|"); |
| 207 | |
| 208 | if (str != NULL && strcmp(str, DYNAMIC_VALUE_TAG)) |
| 209 | bit_width = (int)strtol(str, (char **)NULL, 10); |
| 210 | |
| 211 | ALOGV("%s: bit_width - %d", __func__, bit_width); |
| 212 | return bit_width; |
| 213 | } |
| 214 | |
| 215 | static int parse_app_type_names(void *platform, char *name) |
| 216 | { |
Subhash Chandra Bose Naripeddy | 5427467 | 2014-03-10 14:51:02 -0700 | [diff] [blame] | 217 | int app_type = platform_get_default_app_type(platform); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 218 | char *str = strtok(name, "|"); |
| 219 | |
| 220 | if (str != NULL && strcmp(str, DYNAMIC_VALUE_TAG)) |
| 221 | app_type = (int)strtol(str, (char **)NULL, 10); |
| 222 | |
| 223 | ALOGV("%s: app_type - %d", __func__, app_type); |
| 224 | return app_type; |
| 225 | } |
| 226 | |
| 227 | static void update_streams_output_cfg_list(cnode *root, void *platform, |
| 228 | struct listnode *streams_output_cfg_list) |
| 229 | { |
| 230 | cnode *node = root->first_child; |
| 231 | struct streams_output_cfg *so_info; |
| 232 | |
| 233 | ALOGV("%s", __func__); |
| 234 | so_info = (struct streams_output_cfg *)calloc(1, sizeof(struct streams_output_cfg)); |
Haynes Mathew George | b51ceb1 | 2014-06-30 13:56:18 -0700 | [diff] [blame] | 235 | |
| 236 | if (!so_info) { |
| 237 | ALOGE("failed to allocate mem for so_info list element"); |
| 238 | return; |
| 239 | } |
| 240 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 241 | while (node) { |
| 242 | if (strcmp(node->name, FLAGS_TAG) == 0) { |
| 243 | so_info->flags = parse_flag_names((char *)node->value); |
| 244 | } else if (strcmp(node->name, FORMATS_TAG) == 0) { |
| 245 | parse_format_names((char *)node->value, so_info); |
| 246 | } else if (strcmp(node->name, SAMPLING_RATES_TAG) == 0) { |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 247 | so_info->app_type_cfg.sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE; |
| 248 | parse_sample_rate_names((char *)node->value, so_info); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 249 | } else if (strcmp(node->name, BIT_WIDTH_TAG) == 0) { |
| 250 | so_info->app_type_cfg.bit_width = parse_bit_width_names((char *)node->value); |
| 251 | } else if (strcmp(node->name, APP_TYPE_TAG) == 0) { |
| 252 | so_info->app_type_cfg.app_type = parse_app_type_names(platform, (char *)node->value); |
| 253 | } |
| 254 | node = node->next; |
| 255 | } |
| 256 | list_add_tail(streams_output_cfg_list, &so_info->list); |
| 257 | } |
| 258 | |
| 259 | static void load_output(cnode *root, void *platform, |
| 260 | struct listnode *streams_output_cfg_list) |
| 261 | { |
| 262 | cnode *node = config_find(root, OUTPUTS_TAG); |
| 263 | if (node == NULL) { |
| 264 | ALOGE("%s: could not load output, node is NULL", __func__); |
| 265 | return; |
| 266 | } |
| 267 | |
| 268 | node = node->first_child; |
| 269 | while (node) { |
| 270 | ALOGV("%s: loading output %s", __func__, node->name); |
| 271 | update_streams_output_cfg_list(node, platform, streams_output_cfg_list); |
| 272 | node = node->next; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | static void send_app_type_cfg(void *platform, struct mixer *mixer, |
| 277 | struct listnode *streams_output_cfg_list) |
| 278 | { |
| 279 | int app_type_cfg[MAX_LENGTH_MIXER_CONTROL_IN_INT] = {-1}; |
| 280 | int length = 0, i, num_app_types = 0; |
| 281 | struct listnode *node; |
| 282 | bool update; |
| 283 | struct mixer_ctl *ctl = NULL; |
| 284 | const char *mixer_ctl_name = "App Type Config"; |
| 285 | struct streams_output_cfg *so_info; |
| 286 | |
| 287 | if (!mixer) { |
| 288 | ALOGE("%s: mixer is null",__func__); |
| 289 | return; |
| 290 | } |
| 291 | ctl = mixer_get_ctl_by_name(mixer, mixer_ctl_name); |
| 292 | if (!ctl) { |
| 293 | ALOGE("%s: Could not get ctl for mixer cmd - %s",__func__, mixer_ctl_name); |
| 294 | return; |
| 295 | } |
| 296 | if (streams_output_cfg_list == NULL) { |
| 297 | app_type_cfg[length++] = 1; |
Subhash Chandra Bose Naripeddy | 5427467 | 2014-03-10 14:51:02 -0700 | [diff] [blame] | 298 | app_type_cfg[length++] = platform_get_default_app_type(platform); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 299 | app_type_cfg[length++] = 48000; |
| 300 | app_type_cfg[length++] = 16; |
| 301 | mixer_ctl_set_array(ctl, app_type_cfg, length); |
| 302 | return; |
| 303 | } |
| 304 | |
| 305 | app_type_cfg[length++] = num_app_types; |
| 306 | list_for_each(node, streams_output_cfg_list) { |
| 307 | so_info = node_to_item(node, struct streams_output_cfg, list); |
| 308 | update = true; |
| 309 | for (i=0; i<length; i=i+3) { |
| 310 | if (app_type_cfg[i+1] == -1) |
| 311 | break; |
| 312 | else if (app_type_cfg[i+1] == so_info->app_type_cfg.app_type) { |
| 313 | update = false; |
| 314 | break; |
| 315 | } |
| 316 | } |
| 317 | if (update && ((length + 3) <= MAX_LENGTH_MIXER_CONTROL_IN_INT)) { |
| 318 | num_app_types += 1 ; |
| 319 | app_type_cfg[length++] = so_info->app_type_cfg.app_type; |
| 320 | app_type_cfg[length++] = so_info->app_type_cfg.sample_rate; |
| 321 | app_type_cfg[length++] = so_info->app_type_cfg.bit_width; |
| 322 | } |
| 323 | } |
| 324 | ALOGV("%s: num_app_types: %d", __func__, num_app_types); |
| 325 | if (num_app_types) { |
| 326 | app_type_cfg[0] = num_app_types; |
| 327 | mixer_ctl_set_array(ctl, app_type_cfg, length); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | void audio_extn_utils_update_streams_output_cfg_list(void *platform, |
| 332 | struct mixer *mixer, |
| 333 | struct listnode *streams_output_cfg_list) |
| 334 | { |
| 335 | cnode *root; |
| 336 | char *data; |
| 337 | |
| 338 | ALOGV("%s", __func__); |
| 339 | list_init(streams_output_cfg_list); |
| 340 | data = (char *)load_file(AUDIO_OUTPUT_POLICY_VENDOR_CONFIG_FILE, NULL); |
| 341 | if (data == NULL) { |
| 342 | send_app_type_cfg(platform, mixer, NULL); |
| 343 | ALOGE("%s: could not load output policy config file", __func__); |
| 344 | return; |
| 345 | } |
| 346 | |
| 347 | root = config_node("", ""); |
Haynes Mathew George | b51ceb1 | 2014-06-30 13:56:18 -0700 | [diff] [blame] | 348 | if (root == NULL) { |
| 349 | ALOGE("cfg_list, NULL config root"); |
| 350 | return; |
| 351 | } |
| 352 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 353 | config_load(root, data); |
| 354 | load_output(root, platform, streams_output_cfg_list); |
| 355 | |
| 356 | send_app_type_cfg(platform, mixer, streams_output_cfg_list); |
| 357 | } |
| 358 | |
| 359 | void audio_extn_utils_dump_streams_output_cfg_list( |
| 360 | struct listnode *streams_output_cfg_list) |
| 361 | { |
| 362 | int i=0; |
| 363 | struct listnode *node_i, *node_j; |
| 364 | struct streams_output_cfg *so_info; |
| 365 | struct stream_format *sf_info; |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 366 | struct stream_sample_rate *ss_info; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 367 | ALOGV("%s", __func__); |
| 368 | list_for_each(node_i, streams_output_cfg_list) { |
| 369 | so_info = node_to_item(node_i, struct streams_output_cfg, list); |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 370 | ALOGV("%s: flags-%d, output_sample_rate-%d, output_bit_width-%d, app_type-%d", |
| 371 | __func__, so_info->flags, so_info->app_type_cfg.sample_rate, |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 372 | so_info->app_type_cfg.bit_width, so_info->app_type_cfg.app_type); |
| 373 | list_for_each(node_j, &so_info->format_list) { |
| 374 | sf_info = node_to_item(node_j, struct stream_format, list); |
| 375 | ALOGV("format-%x", sf_info->format); |
| 376 | } |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 377 | list_for_each(node_j, &so_info->sample_rate_list) { |
| 378 | ss_info = node_to_item(node_j, struct stream_sample_rate, list); |
| 379 | ALOGV("sample rate-%d", ss_info->sample_rate); |
| 380 | } |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 381 | } |
| 382 | } |
| 383 | |
| 384 | void audio_extn_utils_release_streams_output_cfg_list( |
| 385 | struct listnode *streams_output_cfg_list) |
| 386 | { |
| 387 | struct listnode *node_i, *node_j; |
| 388 | struct streams_output_cfg *so_info; |
| 389 | struct stream_format *sf_info; |
| 390 | |
| 391 | ALOGV("%s", __func__); |
| 392 | while (!list_empty(streams_output_cfg_list)) { |
| 393 | node_i = list_head(streams_output_cfg_list); |
| 394 | so_info = node_to_item(node_i, struct streams_output_cfg, list); |
| 395 | while (!list_empty(&so_info->format_list)) { |
| 396 | node_j = list_head(&so_info->format_list); |
| 397 | list_remove(node_j); |
| 398 | free(node_to_item(node_j, struct stream_format, list)); |
| 399 | } |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 400 | while (!list_empty(&so_info->sample_rate_list)) { |
| 401 | node_j = list_head(&so_info->sample_rate_list); |
| 402 | list_remove(node_j); |
| 403 | free(node_to_item(node_j, struct stream_sample_rate, list)); |
| 404 | } |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 405 | list_remove(node_i); |
| 406 | free(node_to_item(node_i, struct streams_output_cfg, list)); |
| 407 | } |
| 408 | } |
| 409 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 410 | static bool set_output_cfg(struct streams_output_cfg *so_info, |
| 411 | struct stream_app_type_cfg *app_type_cfg, |
| 412 | uint32_t sample_rate, uint32_t bit_width) |
| 413 | { |
| 414 | struct listnode *node_i; |
| 415 | struct stream_sample_rate *ss_info; |
| 416 | list_for_each(node_i, &so_info->sample_rate_list) { |
| 417 | ss_info = node_to_item(node_i, struct stream_sample_rate, list); |
| 418 | if ((sample_rate <= ss_info->sample_rate) && |
| 419 | (bit_width == so_info->app_type_cfg.bit_width)) { |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 420 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 421 | app_type_cfg->app_type = so_info->app_type_cfg.app_type; |
| 422 | app_type_cfg->sample_rate = ss_info->sample_rate; |
| 423 | app_type_cfg->bit_width = so_info->app_type_cfg.bit_width; |
| 424 | ALOGV("%s app_type_cfg->app_type %d, app_type_cfg->sample_rate %d, app_type_cfg->bit_width %d", |
| 425 | __func__, app_type_cfg->app_type, app_type_cfg->sample_rate, app_type_cfg->bit_width); |
| 426 | return true; |
| 427 | } |
| 428 | } |
| 429 | /* |
| 430 | * Reiterate through the list assuming dafault sample rate. |
| 431 | * Handles scenario where input sample rate is higher |
| 432 | * than all sample rates in list for the input bit width. |
| 433 | */ |
| 434 | sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE; |
Apoorv Raghuvanshi | f59bb22 | 2015-02-18 12:23:23 -0800 | [diff] [blame] | 435 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 436 | list_for_each(node_i, &so_info->sample_rate_list) { |
| 437 | ss_info = node_to_item(node_i, struct stream_sample_rate, list); |
| 438 | if ((sample_rate <= ss_info->sample_rate) && |
| 439 | (bit_width == so_info->app_type_cfg.bit_width)) { |
| 440 | app_type_cfg->app_type = so_info->app_type_cfg.app_type; |
| 441 | app_type_cfg->sample_rate = sample_rate; |
| 442 | app_type_cfg->bit_width = so_info->app_type_cfg.bit_width; |
Apoorv Raghuvanshi | f59bb22 | 2015-02-18 12:23:23 -0800 | [diff] [blame] | 443 | ALOGV("%s Assuming sample rate. app_type_cfg->app_type %d, app_type_cfg->sample_rate %d, app_type_cfg->bit_width %d", |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 444 | __func__, app_type_cfg->app_type, app_type_cfg->sample_rate, app_type_cfg->bit_width); |
| 445 | return true; |
| 446 | } |
| 447 | } |
| 448 | return false; |
| 449 | } |
| 450 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 451 | void audio_extn_utils_update_stream_app_type_cfg(void *platform, |
| 452 | struct listnode *streams_output_cfg_list, |
Amit Shekhar | 1d89604 | 2014-10-03 13:16:09 -0700 | [diff] [blame] | 453 | audio_devices_t devices, |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 454 | audio_output_flags_t flags, |
| 455 | audio_format_t format, |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 456 | uint32_t sample_rate, |
| 457 | uint32_t bit_width, |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 458 | struct stream_app_type_cfg *app_type_cfg) |
| 459 | { |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 460 | struct listnode *node_i, *node_j, *node_k; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 461 | struct streams_output_cfg *so_info; |
| 462 | struct stream_format *sf_info; |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 463 | struct stream_sample_rate *ss_info; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 464 | |
Amit Shekhar | 1d89604 | 2014-10-03 13:16:09 -0700 | [diff] [blame] | 465 | if ((24 == bit_width) && |
| 466 | (devices & AUDIO_DEVICE_OUT_SPEAKER)) { |
Amit Shekhar | 5a39c91 | 2014-10-14 15:39:30 -0700 | [diff] [blame] | 467 | int32_t bw = platform_get_snd_device_bit_width(SND_DEVICE_OUT_SPEAKER); |
| 468 | if (-ENOSYS != bw) |
| 469 | bit_width = (uint32_t)bw; |
Amit Shekhar | 1d89604 | 2014-10-03 13:16:09 -0700 | [diff] [blame] | 470 | sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE; |
| 471 | ALOGI("%s Allowing 24-bit playback on speaker ONLY at default sampling rate", __func__); |
| 472 | } |
| 473 | |
| 474 | ALOGV("%s: flags: %x, format: %x sample_rate %d", |
| 475 | __func__, flags, format, sample_rate); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 476 | list_for_each(node_i, streams_output_cfg_list) { |
| 477 | so_info = node_to_item(node_i, struct streams_output_cfg, list); |
| 478 | if (so_info->flags == flags) { |
| 479 | list_for_each(node_j, &so_info->format_list) { |
| 480 | sf_info = node_to_item(node_j, struct stream_format, list); |
| 481 | if (sf_info->format == format) { |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 482 | if (set_output_cfg(so_info, app_type_cfg, sample_rate, bit_width)) |
| 483 | return; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 484 | } |
| 485 | } |
| 486 | } |
| 487 | } |
| 488 | list_for_each(node_i, streams_output_cfg_list) { |
| 489 | so_info = node_to_item(node_i, struct streams_output_cfg, list); |
| 490 | if (so_info->flags == AUDIO_OUTPUT_FLAG_PRIMARY) { |
| 491 | ALOGV("Compatible output profile not found."); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 492 | app_type_cfg->app_type = so_info->app_type_cfg.app_type; |
| 493 | app_type_cfg->sample_rate = so_info->app_type_cfg.sample_rate; |
| 494 | app_type_cfg->bit_width = so_info->app_type_cfg.bit_width; |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 495 | ALOGV("%s Default to primary output: App type: %d sample_rate %d", |
| 496 | __func__, so_info->app_type_cfg.app_type, app_type_cfg->sample_rate); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 497 | return; |
| 498 | } |
| 499 | } |
| 500 | ALOGW("%s: App type could not be selected. Falling back to default", __func__); |
Subhash Chandra Bose Naripeddy | 5427467 | 2014-03-10 14:51:02 -0700 | [diff] [blame] | 501 | app_type_cfg->app_type = platform_get_default_app_type(platform); |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 502 | app_type_cfg->sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 503 | app_type_cfg->bit_width = 16; |
| 504 | } |
| 505 | |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 506 | #define GENERAL_RECORDING_APP_TYPE 0x11132 |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 507 | int audio_extn_utils_send_app_type_cfg(struct audio_usecase *usecase) |
| 508 | { |
| 509 | char mixer_ctl_name[MAX_LENGTH_MIXER_CONTROL_IN_INT]; |
| 510 | int app_type_cfg[MAX_LENGTH_MIXER_CONTROL_IN_INT], len = 0, rc; |
Anish Kumar | c8599f2 | 2014-07-20 09:36:07 -0700 | [diff] [blame] | 511 | struct stream_out *out; |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 512 | struct stream_in *in; |
Anish Kumar | c8599f2 | 2014-07-20 09:36:07 -0700 | [diff] [blame] | 513 | struct audio_device *adev; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 514 | struct mixer_ctl *ctl; |
| 515 | int pcm_device_id, acdb_dev_id, snd_device = usecase->out_snd_device; |
Preetam Singh Ranawat | a4a37d8 | 2014-09-25 16:56:38 +0530 | [diff] [blame] | 516 | int32_t sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 517 | |
| 518 | ALOGV("%s", __func__); |
| 519 | |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 520 | if (usecase->type != PCM_PLAYBACK && usecase->type != PCM_CAPTURE) { |
| 521 | ALOGE("%s: not a playback or capture path, no need to cfg app type", __func__); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 522 | rc = 0; |
| 523 | goto exit_send_app_type_cfg; |
| 524 | } |
| 525 | if ((usecase->id != USECASE_AUDIO_PLAYBACK_DEEP_BUFFER) && |
| 526 | (usecase->id != USECASE_AUDIO_PLAYBACK_LOW_LATENCY) && |
| 527 | (usecase->id != USECASE_AUDIO_PLAYBACK_MULTI_CH) && |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 528 | (!is_offload_usecase(usecase->id)) && |
| 529 | (usecase->type != PCM_CAPTURE)) { |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 530 | ALOGV("%s: a playback path where app type cfg is not required %d", __func__, usecase->id); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 531 | rc = 0; |
| 532 | goto exit_send_app_type_cfg; |
| 533 | } |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 534 | if (usecase->type == PCM_PLAYBACK) { |
| 535 | out = usecase->stream.out; |
| 536 | adev = out->dev; |
| 537 | snd_device = usecase->out_snd_device; |
| 538 | pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK); |
| 539 | } |
| 540 | if (usecase->type == PCM_CAPTURE) { |
| 541 | in = usecase->stream.in; |
| 542 | adev = in->dev; |
| 543 | snd_device = usecase->in_snd_device; |
| 544 | pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE); |
| 545 | } |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 546 | |
| 547 | snprintf(mixer_ctl_name, sizeof(mixer_ctl_name), |
| 548 | "Audio Stream %d App Type Cfg", pcm_device_id); |
| 549 | |
| 550 | ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name); |
| 551 | if (!ctl) { |
| 552 | ALOGE("%s: Could not get ctl for mixer cmd - %s", __func__, |
| 553 | mixer_ctl_name); |
| 554 | rc = -EINVAL; |
| 555 | goto exit_send_app_type_cfg; |
| 556 | } |
| 557 | snd_device = (snd_device == SND_DEVICE_OUT_SPEAKER) ? |
| 558 | audio_extn_get_spkr_prot_snd_device(snd_device) : snd_device; |
| 559 | acdb_dev_id = platform_get_snd_device_acdb_id(snd_device); |
| 560 | if (acdb_dev_id < 0) { |
| 561 | ALOGE("%s: Couldn't get the acdb dev id", __func__); |
| 562 | rc = -EINVAL; |
| 563 | goto exit_send_app_type_cfg; |
| 564 | } |
Preetam Singh Ranawat | a4a37d8 | 2014-09-25 16:56:38 +0530 | [diff] [blame] | 565 | |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 566 | if (usecase->type == PCM_PLAYBACK) { |
| 567 | if ((24 == usecase->stream.out->bit_width) && |
| 568 | (usecase->stream.out->devices & AUDIO_DEVICE_OUT_SPEAKER)) { |
| 569 | sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE; |
| 570 | } else if ((snd_device != SND_DEVICE_OUT_HEADPHONES_44_1 && |
| 571 | usecase->stream.out->sample_rate == OUTPUT_SAMPLING_RATE_44100) || |
| 572 | (usecase->stream.out->sample_rate < OUTPUT_SAMPLING_RATE_44100)) { |
| 573 | sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE; |
| 574 | } else { |
| 575 | sample_rate = out->app_type_cfg.sample_rate; |
| 576 | } |
Preetam Singh Ranawat | a4a37d8 | 2014-09-25 16:56:38 +0530 | [diff] [blame] | 577 | |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 578 | app_type_cfg[len++] = out->app_type_cfg.app_type; |
| 579 | app_type_cfg[len++] = acdb_dev_id; |
| 580 | if (((out->format == AUDIO_FORMAT_E_AC3) || |
| 581 | (out->format == AUDIO_FORMAT_E_AC3_JOC)) |
Mingming Yin | 497419f | 2015-07-01 16:57:32 -0700 | [diff] [blame] | 582 | #ifdef HDMI_PASSTHROUGH_ENABLED |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 583 | && (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH) |
Mingming Yin | 497419f | 2015-07-01 16:57:32 -0700 | [diff] [blame] | 584 | #endif |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 585 | ) |
| 586 | app_type_cfg[len++] = sample_rate * 4; |
| 587 | else |
| 588 | app_type_cfg[len++] = sample_rate; |
| 589 | ALOGI("%s PLAYBACK app_type %d, acdb_dev_id %d, sample_rate %d", |
| 590 | __func__, out->app_type_cfg.app_type, acdb_dev_id, sample_rate); |
| 591 | } |
| 592 | else if (usecase->type == PCM_CAPTURE) { |
| 593 | app_type_cfg[len++] = GENERAL_RECORDING_APP_TYPE; |
| 594 | app_type_cfg[len++] = acdb_dev_id; |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 595 | app_type_cfg[len++] = sample_rate; |
Srikanth Uyyala | 9d55140 | 2015-08-25 16:03:42 +0530 | [diff] [blame] | 596 | ALOGI("%s CAPTURE app_type %d, acdb_dev_id %d, sample_rate %d", |
| 597 | __func__, platform_get_default_app_type(adev->platform), acdb_dev_id, sample_rate); |
| 598 | } |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 599 | mixer_ctl_set_array(ctl, app_type_cfg, len); |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 600 | rc = 0; |
| 601 | exit_send_app_type_cfg: |
| 602 | return rc; |
| 603 | } |
Subhash Chandra Bose Naripeddy | 5427467 | 2014-03-10 14:51:02 -0700 | [diff] [blame] | 604 | |
| 605 | void audio_extn_utils_send_audio_calibration(struct audio_device *adev, |
| 606 | struct audio_usecase *usecase) |
| 607 | { |
| 608 | int type = usecase->type; |
| 609 | |
| 610 | if (type == PCM_PLAYBACK) { |
| 611 | struct stream_out *out = usecase->stream.out; |
| 612 | int snd_device = usecase->out_snd_device; |
| 613 | snd_device = (snd_device == SND_DEVICE_OUT_SPEAKER) ? |
| 614 | audio_extn_get_spkr_prot_snd_device(snd_device) : snd_device; |
Preetam Singh Ranawat | 2d0e463 | 2015-02-02 12:40:59 +0530 | [diff] [blame] | 615 | platform_send_audio_calibration(adev->platform, usecase, |
Subhash Chandra Bose Naripeddy | 5427467 | 2014-03-10 14:51:02 -0700 | [diff] [blame] | 616 | out->app_type_cfg.app_type, |
| 617 | out->app_type_cfg.sample_rate); |
| 618 | } |
| 619 | if ((type == PCM_HFP_CALL) || (type == PCM_CAPTURE)) { |
Preetam Singh Ranawat | 2d0e463 | 2015-02-02 12:40:59 +0530 | [diff] [blame] | 620 | /* when app type is default. the sample rate is not used to send cal */ |
| 621 | platform_send_audio_calibration(adev->platform, usecase, |
| 622 | platform_get_default_app_type(adev->platform), |
| 623 | 48000); |
Subhash Chandra Bose Naripeddy | 5427467 | 2014-03-10 14:51:02 -0700 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
Ben Romberger | a04fabc | 2014-11-14 12:16:03 -0800 | [diff] [blame] | 627 | // Base64 Encode and Decode |
| 628 | // Not all features supported. This must be used only with following conditions. |
| 629 | // Decode Modes: Support with and without padding |
| 630 | // CRLF not handling. So no CRLF in string to decode. |
| 631 | // Encode Modes: Supports only padding |
| 632 | int b64decode(char *inp, int ilen, uint8_t* outp) |
| 633 | { |
| 634 | int i, j, k, ii, num; |
| 635 | int rem, pcnt; |
| 636 | uint32_t res=0; |
| 637 | uint8_t getIndex[MAX_BASEINDEX_LEN]; |
| 638 | uint8_t tmp, cflag; |
| 639 | |
| 640 | if(inp == NULL || outp == NULL || ilen <= 0) { |
| 641 | ALOGE("[%s] received NULL pointer or zero length",__func__); |
| 642 | return -1; |
| 643 | } |
| 644 | |
| 645 | memset(getIndex, MAX_BASEINDEX_LEN-1, sizeof(getIndex)); |
| 646 | for(i=0;i<BASE_TABLE_SIZE;i++) { |
| 647 | getIndex[(uint8_t)bTable[i]] = (uint8_t)i; |
| 648 | } |
| 649 | getIndex[(uint8_t)'=']=0; |
| 650 | |
| 651 | j=0;k=0; |
| 652 | num = ilen/4; |
| 653 | rem = ilen%4; |
| 654 | if(rem==0) |
| 655 | num = num-1; |
| 656 | cflag=0; |
| 657 | for(i=0; i<num; i++) { |
| 658 | res=0; |
| 659 | for(ii=0;ii<4;ii++) { |
| 660 | res = res << 6; |
| 661 | tmp = getIndex[(uint8_t)inp[j++]]; |
| 662 | res = res | tmp; |
| 663 | cflag = cflag | tmp; |
| 664 | } |
| 665 | outp[k++] = (res >> 16)&0xFF; |
| 666 | outp[k++] = (res >> 8)&0xFF; |
| 667 | outp[k++] = res & 0xFF; |
| 668 | } |
| 669 | |
| 670 | // Handle last bytes special |
| 671 | pcnt=0; |
| 672 | if(rem == 0) { |
| 673 | //With padding or full data |
| 674 | res = 0; |
| 675 | for(ii=0;ii<4;ii++) { |
| 676 | if(inp[j] == '=') |
| 677 | pcnt++; |
| 678 | res = res << 6; |
| 679 | tmp = getIndex[(uint8_t)inp[j++]]; |
| 680 | res = res | tmp; |
| 681 | cflag = cflag | tmp; |
| 682 | } |
| 683 | outp[k++] = res >> 16; |
| 684 | if(pcnt == 2) |
| 685 | goto done; |
| 686 | outp[k++] = (res>>8)&0xFF; |
| 687 | if(pcnt == 1) |
| 688 | goto done; |
| 689 | outp[k++] = res&0xFF; |
| 690 | } else { |
| 691 | //without padding |
| 692 | res = 0; |
| 693 | for(i=0;i<rem;i++) { |
| 694 | res = res << 6; |
| 695 | tmp = getIndex[(uint8_t)inp[j++]]; |
| 696 | res = res | tmp; |
| 697 | cflag = cflag | tmp; |
| 698 | } |
| 699 | for(i=rem;i<4;i++) { |
| 700 | res = res << 6; |
| 701 | pcnt++; |
| 702 | } |
| 703 | outp[k++] = res >> 16; |
| 704 | if(pcnt == 2) |
| 705 | goto done; |
| 706 | outp[k++] = (res>>8)&0xFF; |
| 707 | if(pcnt == 1) |
| 708 | goto done; |
| 709 | outp[k++] = res&0xFF; |
| 710 | } |
| 711 | done: |
| 712 | if(cflag == 0xFF) { |
| 713 | ALOGE("[%s] base64 decode failed. Invalid character found %s", |
| 714 | __func__, inp); |
| 715 | return 0; |
| 716 | } |
| 717 | return k; |
| 718 | } |
| 719 | |
| 720 | int b64encode(uint8_t *inp, int ilen, char* outp) |
| 721 | { |
| 722 | int i,j,k, num; |
| 723 | int rem=0; |
| 724 | uint32_t res=0; |
| 725 | |
| 726 | if(inp == NULL || outp == NULL || ilen<=0) { |
| 727 | ALOGE("[%s] received NULL pointer or zero input length",__func__); |
| 728 | return -1; |
| 729 | } |
| 730 | |
| 731 | num = ilen/3; |
| 732 | rem = ilen%3; |
| 733 | j=0;k=0; |
| 734 | for(i=0; i<num; i++) { |
| 735 | //prepare index |
| 736 | res = inp[j++]<<16; |
| 737 | res = res | inp[j++]<<8; |
| 738 | res = res | inp[j++]; |
| 739 | //get output map from index |
| 740 | outp[k++] = (char) bTable[(res>>18)&0x3F]; |
| 741 | outp[k++] = (char) bTable[(res>>12)&0x3F]; |
| 742 | outp[k++] = (char) bTable[(res>>6)&0x3F]; |
| 743 | outp[k++] = (char) bTable[res&0x3F]; |
| 744 | } |
| 745 | |
| 746 | switch(rem) { |
| 747 | case 1: |
| 748 | res = inp[j++]<<16; |
| 749 | outp[k++] = (char) bTable[res>>18]; |
| 750 | outp[k++] = (char) bTable[(res>>12)&0x3F]; |
| 751 | //outp[k++] = '='; |
| 752 | //outp[k++] = '='; |
| 753 | break; |
| 754 | case 2: |
| 755 | res = inp[j++]<<16; |
| 756 | res = res | inp[j++]<<8; |
| 757 | outp[k++] = (char) bTable[res>>18]; |
| 758 | outp[k++] = (char) bTable[(res>>12)&0x3F]; |
| 759 | outp[k++] = (char) bTable[(res>>6)&0x3F]; |
| 760 | //outp[k++] = '='; |
| 761 | break; |
| 762 | default: |
| 763 | break; |
| 764 | } |
| 765 | done: |
| 766 | outp[k] = '\0'; |
| 767 | return k; |
| 768 | } |