Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #define LOG_TAG "AAudio" |
| 18 | //#define LOG_NDEBUG 0 |
| 19 | #include <utils/Log.h> |
| 20 | |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 21 | #include <cutils/properties.h> |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 22 | #include <stdint.h> |
| 23 | #include <sys/types.h> |
| 24 | #include <utils/Errors.h> |
| 25 | |
Phil Burk | a4eb0d8 | 2017-04-12 15:44:06 -0700 | [diff] [blame] | 26 | #include "aaudio/AAudio.h" |
dimitry | 76ee1ff | 2019-07-17 13:55:16 +0200 | [diff] [blame] | 27 | #include "core/AudioGlobal.h" |
Phil Burk | d04aeea | 2017-05-23 13:56:41 -0700 | [diff] [blame] | 28 | #include <aaudio/AAudioTesting.h> |
Phil Burk | bba0900 | 2017-11-29 13:39:44 -0800 | [diff] [blame] | 29 | #include <math.h> |
Phil Burk | d4ccc62 | 2017-12-20 15:32:44 -0800 | [diff] [blame] | 30 | #include <system/audio-base.h> |
Phil Burk | 41f19d8 | 2018-02-13 14:59:10 -0800 | [diff] [blame] | 31 | #include <assert.h> |
Phil Burk | d04aeea | 2017-05-23 13:56:41 -0700 | [diff] [blame] | 32 | |
| 33 | #include "utility/AAudioUtilities.h" |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 34 | |
| 35 | using namespace android; |
| 36 | |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 37 | status_t AAudioConvert_aaudioToAndroidStatus(aaudio_result_t result) { |
| 38 | // This covers the case for AAUDIO_OK and for positive results. |
| 39 | if (result >= 0) { |
| 40 | return result; |
| 41 | } |
| 42 | status_t status; |
| 43 | switch (result) { |
| 44 | case AAUDIO_ERROR_DISCONNECTED: |
Eric Laurent | a2f296e | 2017-06-21 18:51:47 -0700 | [diff] [blame] | 45 | case AAUDIO_ERROR_NO_SERVICE: |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 46 | status = DEAD_OBJECT; |
| 47 | break; |
Eric Laurent | a2f296e | 2017-06-21 18:51:47 -0700 | [diff] [blame] | 48 | case AAUDIO_ERROR_INVALID_HANDLE: |
| 49 | status = BAD_TYPE; |
| 50 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 51 | case AAUDIO_ERROR_INVALID_STATE: |
| 52 | status = INVALID_OPERATION; |
| 53 | break; |
Phil Burk | 71f35bb | 2017-04-13 16:05:07 -0700 | [diff] [blame] | 54 | case AAUDIO_ERROR_INVALID_RATE: |
| 55 | case AAUDIO_ERROR_INVALID_FORMAT: |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 56 | case AAUDIO_ERROR_ILLEGAL_ARGUMENT: |
Phil Burk | 5204d31 | 2017-05-04 17:16:13 -0700 | [diff] [blame] | 57 | case AAUDIO_ERROR_OUT_OF_RANGE: |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 58 | status = BAD_VALUE; |
| 59 | break; |
| 60 | case AAUDIO_ERROR_WOULD_BLOCK: |
| 61 | status = WOULD_BLOCK; |
| 62 | break; |
Phil Burk | 5204d31 | 2017-05-04 17:16:13 -0700 | [diff] [blame] | 63 | case AAUDIO_ERROR_NULL: |
| 64 | status = UNEXPECTED_NULL; |
| 65 | break; |
Phil Burk | 940083c | 2017-07-17 17:00:02 -0700 | [diff] [blame] | 66 | case AAUDIO_ERROR_UNAVAILABLE: |
| 67 | status = NOT_ENOUGH_DATA; |
| 68 | break; |
| 69 | |
Phil Burk | 5204d31 | 2017-05-04 17:16:13 -0700 | [diff] [blame] | 70 | // TODO translate these result codes |
Phil Burk | 5204d31 | 2017-05-04 17:16:13 -0700 | [diff] [blame] | 71 | case AAUDIO_ERROR_INTERNAL: |
Phil Burk | 5204d31 | 2017-05-04 17:16:13 -0700 | [diff] [blame] | 72 | case AAUDIO_ERROR_UNIMPLEMENTED: |
Phil Burk | 5204d31 | 2017-05-04 17:16:13 -0700 | [diff] [blame] | 73 | case AAUDIO_ERROR_NO_FREE_HANDLES: |
| 74 | case AAUDIO_ERROR_NO_MEMORY: |
| 75 | case AAUDIO_ERROR_TIMEOUT: |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 76 | default: |
| 77 | status = UNKNOWN_ERROR; |
| 78 | break; |
| 79 | } |
| 80 | return status; |
| 81 | } |
| 82 | |
| 83 | aaudio_result_t AAudioConvert_androidToAAudioResult(status_t status) { |
| 84 | // This covers the case for OK and for positive result. |
| 85 | if (status >= 0) { |
| 86 | return status; |
| 87 | } |
| 88 | aaudio_result_t result; |
| 89 | switch (status) { |
| 90 | case BAD_TYPE: |
| 91 | result = AAUDIO_ERROR_INVALID_HANDLE; |
| 92 | break; |
| 93 | case DEAD_OBJECT: |
Phil Burk | 71f35bb | 2017-04-13 16:05:07 -0700 | [diff] [blame] | 94 | result = AAUDIO_ERROR_NO_SERVICE; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 95 | break; |
| 96 | case INVALID_OPERATION: |
| 97 | result = AAUDIO_ERROR_INVALID_STATE; |
| 98 | break; |
Eric Laurent | a2f296e | 2017-06-21 18:51:47 -0700 | [diff] [blame] | 99 | case UNEXPECTED_NULL: |
| 100 | result = AAUDIO_ERROR_NULL; |
| 101 | break; |
| 102 | case BAD_VALUE: |
| 103 | result = AAUDIO_ERROR_ILLEGAL_ARGUMENT; |
| 104 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 105 | case WOULD_BLOCK: |
| 106 | result = AAUDIO_ERROR_WOULD_BLOCK; |
| 107 | break; |
Phil Burk | 940083c | 2017-07-17 17:00:02 -0700 | [diff] [blame] | 108 | case NOT_ENOUGH_DATA: |
| 109 | result = AAUDIO_ERROR_UNAVAILABLE; |
| 110 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 111 | default: |
| 112 | result = AAUDIO_ERROR_INTERNAL; |
| 113 | break; |
| 114 | } |
| 115 | return result; |
| 116 | } |
| 117 | |
Phil Burk | 4e1af9f | 2018-01-03 15:54:35 -0800 | [diff] [blame] | 118 | audio_session_t AAudioConvert_aaudioToAndroidSessionId(aaudio_session_id_t sessionId) { |
Phil Burk | 67fdd89 | 2018-01-23 15:28:55 -0800 | [diff] [blame] | 119 | // If not a regular sessionId then convert to a safe value of AUDIO_SESSION_ALLOCATE. |
| 120 | return (sessionId == AAUDIO_SESSION_ID_ALLOCATE || sessionId == AAUDIO_SESSION_ID_NONE) |
Phil Burk | 4e1af9f | 2018-01-03 15:54:35 -0800 | [diff] [blame] | 121 | ? AUDIO_SESSION_ALLOCATE |
| 122 | : (audio_session_t) sessionId; |
| 123 | } |
| 124 | |
Phil Burk | 9dca982 | 2017-05-26 14:27:43 -0700 | [diff] [blame] | 125 | audio_format_t AAudioConvert_aaudioToAndroidDataFormat(aaudio_format_t aaudioFormat) { |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 126 | audio_format_t androidFormat; |
| 127 | switch (aaudioFormat) { |
Phil Burk | 0127c1b | 2018-03-29 13:48:06 -0700 | [diff] [blame] | 128 | case AAUDIO_FORMAT_UNSPECIFIED: |
| 129 | androidFormat = AUDIO_FORMAT_DEFAULT; |
| 130 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 131 | case AAUDIO_FORMAT_PCM_I16: |
| 132 | androidFormat = AUDIO_FORMAT_PCM_16_BIT; |
| 133 | break; |
| 134 | case AAUDIO_FORMAT_PCM_FLOAT: |
| 135 | androidFormat = AUDIO_FORMAT_PCM_FLOAT; |
| 136 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 137 | default: |
Phil Burk | 0127c1b | 2018-03-29 13:48:06 -0700 | [diff] [blame] | 138 | androidFormat = AUDIO_FORMAT_INVALID; |
| 139 | ALOGE("%s() 0x%08X unrecognized", __func__, aaudioFormat); |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 140 | break; |
| 141 | } |
| 142 | return androidFormat; |
| 143 | } |
| 144 | |
Phil Burk | 9dca982 | 2017-05-26 14:27:43 -0700 | [diff] [blame] | 145 | aaudio_format_t AAudioConvert_androidToAAudioDataFormat(audio_format_t androidFormat) { |
Phil Burk | 0127c1b | 2018-03-29 13:48:06 -0700 | [diff] [blame] | 146 | aaudio_format_t aaudioFormat; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 147 | switch (androidFormat) { |
Phil Burk | 0127c1b | 2018-03-29 13:48:06 -0700 | [diff] [blame] | 148 | case AUDIO_FORMAT_DEFAULT: |
| 149 | aaudioFormat = AAUDIO_FORMAT_UNSPECIFIED; |
| 150 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 151 | case AUDIO_FORMAT_PCM_16_BIT: |
| 152 | aaudioFormat = AAUDIO_FORMAT_PCM_I16; |
| 153 | break; |
| 154 | case AUDIO_FORMAT_PCM_FLOAT: |
| 155 | aaudioFormat = AAUDIO_FORMAT_PCM_FLOAT; |
| 156 | break; |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 157 | default: |
| 158 | aaudioFormat = AAUDIO_FORMAT_INVALID; |
Phil Burk | 0127c1b | 2018-03-29 13:48:06 -0700 | [diff] [blame] | 159 | ALOGE("%s() 0x%08X unrecognized", __func__, androidFormat); |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 160 | break; |
| 161 | } |
| 162 | return aaudioFormat; |
| 163 | } |
| 164 | |
Phil Burk | d4ccc62 | 2017-12-20 15:32:44 -0800 | [diff] [blame] | 165 | // Make a message string from the condition. |
| 166 | #define STATIC_ASSERT(condition) static_assert(condition, #condition) |
| 167 | |
| 168 | audio_usage_t AAudioConvert_usageToInternal(aaudio_usage_t usage) { |
| 169 | // The public aaudio_content_type_t constants are supposed to have the same |
| 170 | // values as the internal audio_content_type_t values. |
| 171 | STATIC_ASSERT(AAUDIO_USAGE_MEDIA == AUDIO_USAGE_MEDIA); |
| 172 | STATIC_ASSERT(AAUDIO_USAGE_VOICE_COMMUNICATION == AUDIO_USAGE_VOICE_COMMUNICATION); |
| 173 | STATIC_ASSERT(AAUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING |
| 174 | == AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING); |
| 175 | STATIC_ASSERT(AAUDIO_USAGE_ALARM == AUDIO_USAGE_ALARM); |
| 176 | STATIC_ASSERT(AAUDIO_USAGE_NOTIFICATION == AUDIO_USAGE_NOTIFICATION); |
| 177 | STATIC_ASSERT(AAUDIO_USAGE_NOTIFICATION_RINGTONE |
| 178 | == AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE); |
| 179 | STATIC_ASSERT(AAUDIO_USAGE_NOTIFICATION_EVENT == AUDIO_USAGE_NOTIFICATION_EVENT); |
| 180 | STATIC_ASSERT(AAUDIO_USAGE_ASSISTANCE_ACCESSIBILITY == AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY); |
| 181 | STATIC_ASSERT(AAUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE |
| 182 | == AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE); |
| 183 | STATIC_ASSERT(AAUDIO_USAGE_ASSISTANCE_SONIFICATION == AUDIO_USAGE_ASSISTANCE_SONIFICATION); |
| 184 | STATIC_ASSERT(AAUDIO_USAGE_GAME == AUDIO_USAGE_GAME); |
| 185 | STATIC_ASSERT(AAUDIO_USAGE_ASSISTANT == AUDIO_USAGE_ASSISTANT); |
| 186 | if (usage == AAUDIO_UNSPECIFIED) { |
| 187 | usage = AAUDIO_USAGE_MEDIA; |
| 188 | } |
| 189 | return (audio_usage_t) usage; // same value |
| 190 | } |
| 191 | |
| 192 | audio_content_type_t AAudioConvert_contentTypeToInternal(aaudio_content_type_t contentType) { |
| 193 | // The public aaudio_content_type_t constants are supposed to have the same |
| 194 | // values as the internal audio_content_type_t values. |
| 195 | STATIC_ASSERT(AAUDIO_CONTENT_TYPE_MUSIC == AUDIO_CONTENT_TYPE_MUSIC); |
| 196 | STATIC_ASSERT(AAUDIO_CONTENT_TYPE_SPEECH == AUDIO_CONTENT_TYPE_SPEECH); |
| 197 | STATIC_ASSERT(AAUDIO_CONTENT_TYPE_SONIFICATION == AUDIO_CONTENT_TYPE_SONIFICATION); |
| 198 | STATIC_ASSERT(AAUDIO_CONTENT_TYPE_MOVIE == AUDIO_CONTENT_TYPE_MOVIE); |
| 199 | if (contentType == AAUDIO_UNSPECIFIED) { |
| 200 | contentType = AAUDIO_CONTENT_TYPE_MUSIC; |
| 201 | } |
| 202 | return (audio_content_type_t) contentType; // same value |
| 203 | } |
| 204 | |
| 205 | audio_source_t AAudioConvert_inputPresetToAudioSource(aaudio_input_preset_t preset) { |
| 206 | // The public aaudio_input_preset_t constants are supposed to have the same |
| 207 | // values as the internal audio_source_t values. |
| 208 | STATIC_ASSERT(AAUDIO_UNSPECIFIED == AUDIO_SOURCE_DEFAULT); |
| 209 | STATIC_ASSERT(AAUDIO_INPUT_PRESET_GENERIC == AUDIO_SOURCE_MIC); |
| 210 | STATIC_ASSERT(AAUDIO_INPUT_PRESET_CAMCORDER == AUDIO_SOURCE_CAMCORDER); |
| 211 | STATIC_ASSERT(AAUDIO_INPUT_PRESET_VOICE_RECOGNITION == AUDIO_SOURCE_VOICE_RECOGNITION); |
| 212 | STATIC_ASSERT(AAUDIO_INPUT_PRESET_VOICE_COMMUNICATION == AUDIO_SOURCE_VOICE_COMMUNICATION); |
| 213 | STATIC_ASSERT(AAUDIO_INPUT_PRESET_UNPROCESSED == AUDIO_SOURCE_UNPROCESSED); |
Eric Laurent | ae4b6ec | 2019-01-15 18:34:38 -0800 | [diff] [blame] | 214 | STATIC_ASSERT(AAUDIO_INPUT_PRESET_VOICE_PERFORMANCE == AUDIO_SOURCE_VOICE_PERFORMANCE); |
Phil Burk | d4ccc62 | 2017-12-20 15:32:44 -0800 | [diff] [blame] | 215 | if (preset == AAUDIO_UNSPECIFIED) { |
Phil Burk | eaef9b9 | 2018-01-18 09:09:42 -0800 | [diff] [blame] | 216 | preset = AAUDIO_INPUT_PRESET_VOICE_RECOGNITION; |
Phil Burk | d4ccc62 | 2017-12-20 15:32:44 -0800 | [diff] [blame] | 217 | } |
| 218 | return (audio_source_t) preset; // same value |
| 219 | } |
| 220 | |
Kevin Rocard | 68646ba | 2019-03-20 13:26:49 -0700 | [diff] [blame] | 221 | audio_flags_mask_t AAudioConvert_allowCapturePolicyToAudioFlagsMask( |
| 222 | aaudio_allowed_capture_policy_t policy) { |
| 223 | switch (policy) { |
| 224 | case AAUDIO_UNSPECIFIED: |
| 225 | case AAUDIO_ALLOW_CAPTURE_BY_ALL: |
| 226 | return AUDIO_FLAG_NONE; |
| 227 | case AAUDIO_ALLOW_CAPTURE_BY_SYSTEM: |
| 228 | return AUDIO_FLAG_NO_MEDIA_PROJECTION; |
| 229 | case AAUDIO_ALLOW_CAPTURE_BY_NONE: |
| 230 | return AUDIO_FLAG_NO_MEDIA_PROJECTION | AUDIO_FLAG_NO_SYSTEM_CAPTURE; |
| 231 | default: |
| 232 | ALOGE("%s() 0x%08X unrecognized", __func__, policy); |
| 233 | return AUDIO_FLAG_NONE; // |
| 234 | } |
| 235 | } |
| 236 | |
Phil Burk | 3316d5e | 2017-02-15 11:23:01 -0800 | [diff] [blame] | 237 | int32_t AAudioConvert_framesToBytes(int32_t numFrames, |
Phil Burk | 7f68013 | 2018-03-12 14:48:06 -0700 | [diff] [blame] | 238 | int32_t bytesPerFrame, |
| 239 | int32_t *sizeInBytes) { |
| 240 | *sizeInBytes = 0; |
| 241 | |
| 242 | if (numFrames < 0 || bytesPerFrame < 0) { |
| 243 | ALOGE("negative size, numFrames = %d, frameSize = %d", numFrames, bytesPerFrame); |
| 244 | return AAUDIO_ERROR_OUT_OF_RANGE; |
| 245 | } |
| 246 | |
| 247 | // Prevent numeric overflow. |
| 248 | if (numFrames > (INT32_MAX / bytesPerFrame)) { |
Yi Kong | 0f414de | 2017-12-15 13:48:50 -0800 | [diff] [blame] | 249 | ALOGE("size overflow, numFrames = %d, frameSize = %d", numFrames, bytesPerFrame); |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 250 | return AAUDIO_ERROR_OUT_OF_RANGE; |
| 251 | } |
Phil Burk | 7f68013 | 2018-03-12 14:48:06 -0700 | [diff] [blame] | 252 | |
Phil Burk | 5ed503c | 2017-02-01 09:38:15 -0800 | [diff] [blame] | 253 | *sizeInBytes = numFrames * bytesPerFrame; |
| 254 | return AAUDIO_OK; |
| 255 | } |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 256 | |
| 257 | static int32_t AAudioProperty_getMMapProperty(const char *propName, |
| 258 | int32_t defaultValue, |
| 259 | const char * caller) { |
Phil Burk | 87c9f64 | 2017-05-17 07:22:39 -0700 | [diff] [blame] | 260 | int32_t prop = property_get_int32(propName, defaultValue); |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 261 | switch (prop) { |
Phil Burk | d04aeea | 2017-05-23 13:56:41 -0700 | [diff] [blame] | 262 | case AAUDIO_UNSPECIFIED: |
| 263 | case AAUDIO_POLICY_NEVER: |
| 264 | case AAUDIO_POLICY_ALWAYS: |
| 265 | case AAUDIO_POLICY_AUTO: |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 266 | break; |
| 267 | default: |
| 268 | ALOGE("%s: invalid = %d", caller, prop); |
| 269 | prop = defaultValue; |
| 270 | break; |
| 271 | } |
| 272 | return prop; |
| 273 | } |
| 274 | |
Phil Burk | d04aeea | 2017-05-23 13:56:41 -0700 | [diff] [blame] | 275 | int32_t AAudioProperty_getMMapPolicy() { |
| 276 | return AAudioProperty_getMMapProperty(AAUDIO_PROP_MMAP_POLICY, |
| 277 | AAUDIO_UNSPECIFIED, __func__); |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Phil Burk | d04aeea | 2017-05-23 13:56:41 -0700 | [diff] [blame] | 280 | int32_t AAudioProperty_getMMapExclusivePolicy() { |
| 281 | return AAudioProperty_getMMapProperty(AAUDIO_PROP_MMAP_EXCLUSIVE_POLICY, |
| 282 | AAUDIO_UNSPECIFIED, __func__); |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | int32_t AAudioProperty_getMixerBursts() { |
Phil Burk | 87c9f64 | 2017-05-17 07:22:39 -0700 | [diff] [blame] | 286 | const int32_t defaultBursts = 2; // arbitrary, use 2 for double buffered |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 287 | const int32_t maxBursts = 1024; // arbitrary |
Phil Burk | 87c9f64 | 2017-05-17 07:22:39 -0700 | [diff] [blame] | 288 | int32_t prop = property_get_int32(AAUDIO_PROP_MIXER_BURSTS, defaultBursts); |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 289 | if (prop < 1 || prop > maxBursts) { |
| 290 | ALOGE("AAudioProperty_getMixerBursts: invalid = %d", prop); |
| 291 | prop = defaultBursts; |
| 292 | } |
| 293 | return prop; |
| 294 | } |
| 295 | |
Phil Burk | fd34a93 | 2017-07-19 07:03:52 -0700 | [diff] [blame] | 296 | int32_t AAudioProperty_getWakeupDelayMicros() { |
| 297 | const int32_t minMicros = 0; // arbitrary |
| 298 | const int32_t defaultMicros = 200; // arbitrary, based on some observed jitter |
| 299 | const int32_t maxMicros = 5000; // arbitrary, probably don't want more than 500 |
| 300 | int32_t prop = property_get_int32(AAUDIO_PROP_WAKEUP_DELAY_USEC, defaultMicros); |
| 301 | if (prop < minMicros) { |
| 302 | ALOGW("AAudioProperty_getWakeupDelayMicros: clipped %d to %d", prop, minMicros); |
| 303 | prop = minMicros; |
| 304 | } else if (prop > maxMicros) { |
| 305 | ALOGW("AAudioProperty_getWakeupDelayMicros: clipped %d to %d", prop, maxMicros); |
| 306 | prop = maxMicros; |
| 307 | } |
| 308 | return prop; |
| 309 | } |
| 310 | |
| 311 | int32_t AAudioProperty_getMinimumSleepMicros() { |
| 312 | const int32_t minMicros = 20; // arbitrary |
| 313 | const int32_t defaultMicros = 200; // arbitrary |
| 314 | const int32_t maxMicros = 2000; // arbitrary |
| 315 | int32_t prop = property_get_int32(AAUDIO_PROP_MINIMUM_SLEEP_USEC, defaultMicros); |
| 316 | if (prop < minMicros) { |
| 317 | ALOGW("AAudioProperty_getMinimumSleepMicros: clipped %d to %d", prop, minMicros); |
| 318 | prop = minMicros; |
| 319 | } else if (prop > maxMicros) { |
| 320 | ALOGW("AAudioProperty_getMinimumSleepMicros: clipped %d to %d", prop, maxMicros); |
| 321 | prop = maxMicros; |
| 322 | } |
| 323 | return prop; |
| 324 | } |
| 325 | |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 326 | int32_t AAudioProperty_getHardwareBurstMinMicros() { |
| 327 | const int32_t defaultMicros = 1000; // arbitrary |
| 328 | const int32_t maxMicros = 1000 * 1000; // arbitrary |
| 329 | int32_t prop = property_get_int32(AAUDIO_PROP_HW_BURST_MIN_USEC, defaultMicros); |
| 330 | if (prop < 1 || prop > maxMicros) { |
Phil Burk | fd34a93 | 2017-07-19 07:03:52 -0700 | [diff] [blame] | 331 | ALOGE("AAudioProperty_getHardwareBurstMinMicros: invalid = %d, use %d", |
| 332 | prop, defaultMicros); |
Phil Burk | c8f69a0 | 2017-05-11 15:53:06 -0700 | [diff] [blame] | 333 | prop = defaultMicros; |
| 334 | } |
| 335 | return prop; |
| 336 | } |
Phil Burk | 5cc83c3 | 2017-11-28 15:43:18 -0800 | [diff] [blame] | 337 | |
| 338 | aaudio_result_t AAudio_isFlushAllowed(aaudio_stream_state_t state) { |
| 339 | aaudio_result_t result = AAUDIO_OK; |
| 340 | switch (state) { |
| 341 | // Proceed with flushing. |
| 342 | case AAUDIO_STREAM_STATE_OPEN: |
| 343 | case AAUDIO_STREAM_STATE_PAUSED: |
| 344 | case AAUDIO_STREAM_STATE_STOPPED: |
| 345 | case AAUDIO_STREAM_STATE_FLUSHED: |
| 346 | break; |
| 347 | |
| 348 | // Transition from one inactive state to another. |
| 349 | case AAUDIO_STREAM_STATE_STARTING: |
| 350 | case AAUDIO_STREAM_STATE_STARTED: |
| 351 | case AAUDIO_STREAM_STATE_STOPPING: |
| 352 | case AAUDIO_STREAM_STATE_PAUSING: |
| 353 | case AAUDIO_STREAM_STATE_FLUSHING: |
| 354 | case AAUDIO_STREAM_STATE_CLOSING: |
| 355 | case AAUDIO_STREAM_STATE_CLOSED: |
| 356 | case AAUDIO_STREAM_STATE_DISCONNECTED: |
| 357 | default: |
| 358 | ALOGE("can only flush stream when PAUSED, OPEN or STOPPED, state = %s", |
dimitry | 76ee1ff | 2019-07-17 13:55:16 +0200 | [diff] [blame] | 359 | aaudio::AudioGlobal_convertStreamStateToText(state)); |
Phil Burk | 5cc83c3 | 2017-11-28 15:43:18 -0800 | [diff] [blame] | 360 | result = AAUDIO_ERROR_INVALID_STATE; |
| 361 | break; |
| 362 | } |
| 363 | return result; |
| 364 | } |