Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | #ifndef AAUDIO_EXAMPLE_ARGS_PARSER_H |
| 18 | #define AAUDIO_EXAMPLE_ARGS_PARSER_H |
| 19 | |
Phil Burk | 67ed9da | 2017-09-06 16:26:52 -0700 | [diff] [blame] | 20 | #define MAX_CHANNELS 8 |
| 21 | |
Phil Burk | 4e98efa | 2018-02-05 18:41:55 -0800 | [diff] [blame] | 22 | //#include <cctype> |
| 23 | #include <dlfcn.h> |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 24 | #include <unistd.h> |
| 25 | #include <stdio.h> |
| 26 | #include <stdlib.h> |
| 27 | |
| 28 | #include <aaudio/AAudio.h> |
| 29 | #include <aaudio/AAudioTesting.h> |
Phil Burk | a5222e2 | 2017-07-28 13:31:14 -0700 | [diff] [blame] | 30 | |
| 31 | #include "AAudioExampleUtils.h" |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 32 | |
Phil Burk | 4e98efa | 2018-02-05 18:41:55 -0800 | [diff] [blame] | 33 | |
| 34 | static void (*s_setUsage)(AAudioStreamBuilder* builder, aaudio_usage_t usage) = nullptr; |
| 35 | static void (*s_setContentType)(AAudioStreamBuilder* builder, |
| 36 | aaudio_content_type_t contentType) = nullptr; |
| 37 | static void (*s_setInputPreset)(AAudioStreamBuilder* builder, |
| 38 | aaudio_input_preset_t inputPreset) = nullptr; |
| 39 | |
| 40 | static bool s_loadAttempted = false; |
| 41 | static aaudio_usage_t (*s_getUsage)(AAudioStream *stream) = nullptr; |
| 42 | static aaudio_content_type_t (*s_getContentType)(AAudioStream *stream) = nullptr; |
| 43 | static aaudio_input_preset_t (*s_getInputPreset)(AAudioStream *stream) = nullptr; |
| 44 | |
| 45 | // Link to test functions in shared library. |
| 46 | static void loadFutureFunctions() { |
| 47 | if (s_loadAttempted) return; // only try once |
| 48 | s_loadAttempted = true; |
| 49 | |
| 50 | void *handle = dlopen("libaaudio.so", RTLD_NOW); |
| 51 | if (handle != nullptr) { |
| 52 | s_setUsage = (void (*)(AAudioStreamBuilder *, aaudio_usage_t)) |
| 53 | dlsym(handle, "AAudioStreamBuilder_setUsage"); |
| 54 | if (s_setUsage == nullptr) goto error; |
| 55 | |
| 56 | s_setContentType = (void (*)(AAudioStreamBuilder *, aaudio_content_type_t)) |
| 57 | dlsym(handle, "AAudioStreamBuilder_setContentType"); |
| 58 | if (s_setContentType == nullptr) goto error; |
| 59 | |
| 60 | s_setInputPreset = (void (*)(AAudioStreamBuilder *, aaudio_input_preset_t)) |
| 61 | dlsym(handle, "AAudioStreamBuilder_setInputPreset"); |
| 62 | if (s_setInputPreset == nullptr) goto error; |
| 63 | |
| 64 | s_getUsage = (aaudio_usage_t (*)(AAudioStream *)) |
| 65 | dlsym(handle, "AAudioStream_getUsage"); |
| 66 | if (s_getUsage == nullptr) goto error; |
| 67 | |
| 68 | s_getContentType = (aaudio_content_type_t (*)(AAudioStream *)) |
| 69 | dlsym(handle, "AAudioStream_getContentType"); |
| 70 | if (s_getContentType == nullptr) goto error; |
| 71 | |
| 72 | s_getInputPreset = (aaudio_input_preset_t (*)(AAudioStream *)) |
| 73 | dlsym(handle, "AAudioStream_getInputPreset"); |
| 74 | if (s_getInputPreset == nullptr) goto error; |
| 75 | } |
| 76 | return; |
| 77 | |
| 78 | error: |
| 79 | // prevent any calls to these functions |
| 80 | s_setUsage = nullptr; |
| 81 | s_setContentType = nullptr; |
| 82 | s_setInputPreset = nullptr; |
| 83 | s_getUsage = nullptr; |
| 84 | s_getContentType = nullptr; |
| 85 | s_getInputPreset = nullptr; |
| 86 | dlclose(handle); |
| 87 | return; |
| 88 | } |
| 89 | |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 90 | class AAudioParameters { |
| 91 | public: |
| 92 | |
| 93 | /** |
| 94 | * This is also known as samplesPerFrame. |
| 95 | */ |
| 96 | int32_t getChannelCount() const { |
| 97 | return mChannelCount; |
| 98 | } |
| 99 | |
| 100 | void setChannelCount(int32_t channelCount) { |
Phil Burk | 67ed9da | 2017-09-06 16:26:52 -0700 | [diff] [blame] | 101 | if (channelCount > MAX_CHANNELS) { |
| 102 | printf("Sorry, MAX of %d channels!\n", MAX_CHANNELS); |
| 103 | channelCount = MAX_CHANNELS; |
| 104 | } |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 105 | mChannelCount = channelCount; |
| 106 | } |
| 107 | |
| 108 | int32_t getSampleRate() const { |
| 109 | return mSampleRate; |
| 110 | } |
| 111 | |
| 112 | void setSampleRate(int32_t sampleRate) { |
| 113 | mSampleRate = sampleRate; |
| 114 | } |
| 115 | |
| 116 | aaudio_format_t getFormat() const { |
| 117 | return mFormat; |
| 118 | } |
| 119 | |
| 120 | void setFormat(aaudio_format_t format) { |
| 121 | mFormat = format; |
| 122 | } |
| 123 | |
| 124 | aaudio_sharing_mode_t getSharingMode() const { |
| 125 | return mSharingMode; |
| 126 | } |
| 127 | |
| 128 | void setSharingMode(aaudio_sharing_mode_t sharingMode) { |
| 129 | mSharingMode = sharingMode; |
| 130 | } |
| 131 | |
| 132 | int32_t getBufferCapacity() const { |
| 133 | return mBufferCapacity; |
| 134 | } |
| 135 | |
| 136 | void setBufferCapacity(int32_t frames) { |
| 137 | mBufferCapacity = frames; |
| 138 | } |
| 139 | |
| 140 | int32_t getPerformanceMode() const { |
| 141 | return mPerformanceMode; |
| 142 | } |
| 143 | |
| 144 | void setPerformanceMode(aaudio_performance_mode_t performanceMode) { |
| 145 | mPerformanceMode = performanceMode; |
| 146 | } |
| 147 | |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 148 | aaudio_usage_t getUsage() const { |
| 149 | return mUsage; |
| 150 | } |
| 151 | |
| 152 | void setUsage(aaudio_usage_t usage) { |
| 153 | mUsage = usage; |
| 154 | } |
| 155 | |
| 156 | aaudio_content_type_t getContentType() const { |
| 157 | return mContentType; |
| 158 | } |
| 159 | |
| 160 | void setContentType(aaudio_content_type_t contentType) { |
| 161 | mContentType = contentType; |
| 162 | } |
| 163 | |
| 164 | aaudio_input_preset_t getInputPreset() const { |
| 165 | return mInputPreset; |
| 166 | } |
| 167 | |
| 168 | void setInputPreset(aaudio_input_preset_t inputPreset) { |
| 169 | mInputPreset = inputPreset; |
| 170 | } |
| 171 | |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 172 | int32_t getDeviceId() const { |
| 173 | return mDeviceId; |
| 174 | } |
| 175 | |
| 176 | void setDeviceId(int32_t deviceId) { |
| 177 | mDeviceId = deviceId; |
| 178 | } |
| 179 | |
| 180 | int32_t getNumberOfBursts() const { |
| 181 | return mNumberOfBursts; |
| 182 | } |
| 183 | |
| 184 | void setNumberOfBursts(int32_t numBursts) { |
| 185 | mNumberOfBursts = numBursts; |
| 186 | } |
| 187 | |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 188 | int32_t getFramesPerCallback() const { |
| 189 | return mFramesPerCallback; |
| 190 | } |
| 191 | void setFramesPerCallback(int32_t size) { |
| 192 | mFramesPerCallback = size; |
| 193 | } |
| 194 | |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 195 | /** |
| 196 | * Apply these parameters to a stream builder. |
| 197 | * @param builder |
| 198 | */ |
| 199 | void applyParameters(AAudioStreamBuilder *builder) const { |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 200 | AAudioStreamBuilder_setBufferCapacityInFrames(builder, mBufferCapacity); |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 201 | AAudioStreamBuilder_setChannelCount(builder, mChannelCount); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 202 | AAudioStreamBuilder_setDeviceId(builder, mDeviceId); |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 203 | AAudioStreamBuilder_setFormat(builder, mFormat); |
| 204 | AAudioStreamBuilder_setFramesPerDataCallback(builder, mFramesPerCallback); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 205 | AAudioStreamBuilder_setPerformanceMode(builder, mPerformanceMode); |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 206 | AAudioStreamBuilder_setSampleRate(builder, mSampleRate); |
| 207 | AAudioStreamBuilder_setSharingMode(builder, mSharingMode); |
Phil Burk | 4e98efa | 2018-02-05 18:41:55 -0800 | [diff] [blame] | 208 | |
| 209 | // Call P functions if supported. |
| 210 | loadFutureFunctions(); |
| 211 | if (s_setUsage != nullptr) { |
| 212 | s_setUsage(builder, mUsage); |
| 213 | } else if (mUsage != AAUDIO_UNSPECIFIED){ |
| 214 | printf("WARNING: setUsage not supported"); |
| 215 | } |
| 216 | if (s_setContentType != nullptr) { |
| 217 | s_setContentType(builder, mContentType); |
| 218 | } else if (mUsage != AAUDIO_UNSPECIFIED){ |
| 219 | printf("WARNING: setContentType not supported"); |
| 220 | } |
| 221 | if (s_setInputPreset != nullptr) { |
| 222 | s_setInputPreset(builder, mInputPreset); |
| 223 | } else if (mUsage != AAUDIO_UNSPECIFIED){ |
| 224 | printf("WARNING: setInputPreset not supported"); |
| 225 | } |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | private: |
| 229 | int32_t mChannelCount = AAUDIO_UNSPECIFIED; |
| 230 | aaudio_format_t mFormat = AAUDIO_FORMAT_UNSPECIFIED; |
| 231 | int32_t mSampleRate = AAUDIO_UNSPECIFIED; |
| 232 | |
| 233 | int32_t mBufferCapacity = AAUDIO_UNSPECIFIED; |
| 234 | int32_t mDeviceId = AAUDIO_UNSPECIFIED; |
| 235 | aaudio_sharing_mode_t mSharingMode = AAUDIO_SHARING_MODE_SHARED; |
| 236 | aaudio_performance_mode_t mPerformanceMode = AAUDIO_PERFORMANCE_MODE_NONE; |
| 237 | |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 238 | aaudio_usage_t mUsage = AAUDIO_UNSPECIFIED; |
| 239 | aaudio_content_type_t mContentType = AAUDIO_UNSPECIFIED; |
| 240 | aaudio_input_preset_t mInputPreset = AAUDIO_UNSPECIFIED; |
| 241 | |
Phil Burk | fcf9efd | 2017-07-14 08:25:08 -0700 | [diff] [blame] | 242 | int32_t mNumberOfBursts = AAUDIO_UNSPECIFIED; |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 243 | int32_t mFramesPerCallback = AAUDIO_UNSPECIFIED; |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 244 | }; |
| 245 | |
| 246 | class AAudioArgsParser : public AAudioParameters { |
| 247 | public: |
| 248 | AAudioArgsParser() = default; |
| 249 | ~AAudioArgsParser() = default; |
| 250 | |
| 251 | enum { |
| 252 | DEFAULT_DURATION_SECONDS = 5 |
| 253 | }; |
| 254 | |
| 255 | /** |
| 256 | * @param arg |
| 257 | * @return true if the argument was not handled |
| 258 | */ |
| 259 | bool parseArg(const char *arg) { |
| 260 | bool unrecognized = false; |
| 261 | if (arg[0] == '-') { |
| 262 | char option = arg[1]; |
| 263 | switch (option) { |
| 264 | case 'b': |
| 265 | setBufferCapacity(atoi(&arg[2])); |
| 266 | break; |
| 267 | case 'c': |
| 268 | setChannelCount(atoi(&arg[2])); |
| 269 | break; |
| 270 | case 'd': |
Phil Burk | e008d02 | 2017-08-23 12:56:15 -0700 | [diff] [blame] | 271 | setDeviceId(atoi(&arg[2])); |
| 272 | break; |
Phil Burk | dd574ca | 2018-04-04 14:41:28 -0700 | [diff] [blame] | 273 | case 'f': |
| 274 | setFormat(atoi(&arg[2])); |
| 275 | break; |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 276 | case 'i': |
| 277 | setInputPreset(atoi(&arg[2])); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 278 | break; |
Phil Burk | fcf9efd | 2017-07-14 08:25:08 -0700 | [diff] [blame] | 279 | case 'm': { |
| 280 | aaudio_policy_t policy = AAUDIO_POLICY_AUTO; |
| 281 | if (strlen(arg) > 2) { |
| 282 | policy = atoi(&arg[2]); |
| 283 | } |
Kevin Rocard | 9dcd34f | 2018-06-13 16:19:36 -0700 | [diff] [blame] | 284 | if (!AAudio_setMMapPolicy(policy)) { |
| 285 | printf("ERROR: invalid MMAP policy mode %i\n", policy); |
| 286 | } |
Phil Burk | fcf9efd | 2017-07-14 08:25:08 -0700 | [diff] [blame] | 287 | } break; |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 288 | case 'n': |
| 289 | setNumberOfBursts(atoi(&arg[2])); |
| 290 | break; |
| 291 | case 'p': |
| 292 | setPerformanceMode(parsePerformanceMode(arg[2])); |
| 293 | break; |
| 294 | case 'r': |
| 295 | setSampleRate(atoi(&arg[2])); |
| 296 | break; |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 297 | case 's': |
| 298 | mDurationSeconds = atoi(&arg[2]); |
| 299 | break; |
| 300 | case 'u': |
| 301 | setUsage(atoi(&arg[2])); |
| 302 | break; |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 303 | case 'x': |
| 304 | setSharingMode(AAUDIO_SHARING_MODE_EXCLUSIVE); |
| 305 | break; |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 306 | case 'y': |
| 307 | setContentType(atoi(&arg[2])); |
| 308 | break; |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 309 | case 'z': |
| 310 | setFramesPerCallback(atoi(&arg[2])); |
| 311 | break; |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 312 | default: |
| 313 | unrecognized = true; |
| 314 | break; |
| 315 | } |
| 316 | } |
| 317 | return unrecognized; |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * |
| 322 | * @param argc |
| 323 | * @param argv |
| 324 | * @return true if an unrecognized argument was passed |
| 325 | */ |
| 326 | bool parseArgs(int argc, const char **argv) { |
| 327 | for (int i = 1; i < argc; i++) { |
| 328 | const char *arg = argv[i]; |
| 329 | if (parseArg(arg)) { |
| 330 | usage(); |
| 331 | return true; |
| 332 | } |
| 333 | |
| 334 | } |
| 335 | return false; |
| 336 | } |
| 337 | |
| 338 | static void usage() { |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 339 | printf("-c{channels} -d{deviceId} -m{mmapPolicy} -n{burstsPerBuffer} -p{perfMode}"); |
| 340 | printf(" -r{rate} -s{seconds} -x\n"); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 341 | printf(" Default values are UNSPECIFIED unless otherwise stated.\n"); |
| 342 | printf(" -b{bufferCapacity} frames\n"); |
| 343 | printf(" -c{channels} for example 2 for stereo\n"); |
Phil Burk | e008d02 | 2017-08-23 12:56:15 -0700 | [diff] [blame] | 344 | printf(" -d{deviceId} default is %d\n", AAUDIO_UNSPECIFIED); |
Phil Burk | dd574ca | 2018-04-04 14:41:28 -0700 | [diff] [blame] | 345 | printf(" -f{0|1|2} set format\n"); |
| 346 | printf(" 0 = UNSPECIFIED\n"); |
| 347 | printf(" 1 = PCM_I16\n"); |
| 348 | printf(" 2 = FLOAT\n"); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 349 | printf(" -i{inputPreset} eg. 5 for AAUDIO_INPUT_PRESET_CAMCORDER\n"); |
Phil Burk | fcf9efd | 2017-07-14 08:25:08 -0700 | [diff] [blame] | 350 | printf(" -m{0|1|2|3} set MMAP policy\n"); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 351 | printf(" 0 = _UNSPECIFIED, use aaudio.mmap_policy system property, default\n"); |
| 352 | printf(" 1 = _NEVER, never use MMAP\n"); |
| 353 | printf(" 2 = _AUTO, use MMAP if available, default for -m with no number\n"); |
| 354 | printf(" 3 = _ALWAYS, use MMAP or fail\n"); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 355 | printf(" -n{numberOfBursts} for setBufferSize\n"); |
| 356 | printf(" -p{performanceMode} set output AAUDIO_PERFORMANCE_MODE*, default NONE\n"); |
| 357 | printf(" n for _NONE\n"); |
| 358 | printf(" l for _LATENCY\n"); |
| 359 | printf(" p for _POWER_SAVING;\n"); |
| 360 | printf(" -r{sampleRate} for example 44100\n"); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 361 | printf(" -s{duration} in seconds, default is %d\n", DEFAULT_DURATION_SECONDS); |
| 362 | printf(" -u{usage} eg. 14 for AAUDIO_USAGE_GAME\n"); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 363 | printf(" -x to use EXCLUSIVE mode\n"); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 364 | printf(" -y{contentType} eg. 1 for AAUDIO_CONTENT_TYPE_SPEECH\n"); |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 365 | printf(" -z{callbackSize} or block size, in frames, default = 0\n"); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | static aaudio_performance_mode_t parsePerformanceMode(char c) { |
| 369 | aaudio_performance_mode_t mode = AAUDIO_PERFORMANCE_MODE_NONE; |
| 370 | switch (c) { |
| 371 | case 'n': |
| 372 | mode = AAUDIO_PERFORMANCE_MODE_NONE; |
| 373 | break; |
| 374 | case 'l': |
| 375 | mode = AAUDIO_PERFORMANCE_MODE_LOW_LATENCY; |
| 376 | break; |
| 377 | case 'p': |
| 378 | mode = AAUDIO_PERFORMANCE_MODE_POWER_SAVING; |
| 379 | break; |
| 380 | default: |
Kevin Rocard | 9dcd34f | 2018-06-13 16:19:36 -0700 | [diff] [blame] | 381 | printf("ERROR: invalid performance mode %c\n", c); |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 382 | break; |
| 383 | } |
| 384 | return mode; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Print stream parameters in comparison with requested values. |
| 389 | * @param stream |
| 390 | */ |
Phil Burk | a5222e2 | 2017-07-28 13:31:14 -0700 | [diff] [blame] | 391 | void compareWithStream(AAudioStream *stream) const { |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 392 | |
| 393 | printf(" DeviceId: requested = %d, actual = %d\n", |
| 394 | getDeviceId(), AAudioStream_getDeviceId(stream)); |
| 395 | |
| 396 | aaudio_stream_state_t state = AAudioStream_getState(stream); |
| 397 | printf(" State: %s\n", AAudio_convertStreamStateToText(state)); |
| 398 | |
| 399 | // Check to see what kind of stream we actually got. |
| 400 | printf(" SampleRate: requested = %d, actual = %d\n", |
| 401 | getSampleRate(), AAudioStream_getSampleRate(stream)); |
| 402 | |
| 403 | printf(" ChannelCount: requested = %d, actual = %d\n", |
| 404 | getChannelCount(), AAudioStream_getChannelCount(stream)); |
| 405 | |
| 406 | printf(" DataFormat: requested = %d, actual = %d\n", |
| 407 | getFormat(), AAudioStream_getFormat(stream)); |
| 408 | |
| 409 | int32_t framesPerBurst = AAudioStream_getFramesPerBurst(stream); |
| 410 | int32_t sizeFrames = AAudioStream_getBufferSizeInFrames(stream); |
| 411 | printf(" Buffer: burst = %d\n", framesPerBurst); |
| 412 | if (framesPerBurst > 0) { |
| 413 | printf(" Buffer: size = %d = (%d * %d) + %d\n", |
| 414 | sizeFrames, |
| 415 | (sizeFrames / framesPerBurst), |
| 416 | framesPerBurst, |
| 417 | (sizeFrames % framesPerBurst)); |
| 418 | } |
| 419 | printf(" Capacity: requested = %d, actual = %d\n", getBufferCapacity(), |
| 420 | AAudioStream_getBufferCapacityInFrames(stream)); |
| 421 | |
Phil Burk | 10ffb19 | 2018-09-26 12:09:00 -0700 | [diff] [blame^] | 422 | printf(" CallbackSize: requested = %d, actual = %d\n", getFramesPerCallback(), |
| 423 | AAudioStream_getFramesPerDataCallback(stream)); |
| 424 | |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 425 | printf(" SharingMode: requested = %s, actual = %s\n", |
| 426 | getSharingModeText(getSharingMode()), |
| 427 | getSharingModeText(AAudioStream_getSharingMode(stream))); |
| 428 | |
| 429 | printf(" PerformanceMode: requested = %d, actual = %d\n", |
| 430 | getPerformanceMode(), AAudioStream_getPerformanceMode(stream)); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 431 | |
Phil Burk | 4e98efa | 2018-02-05 18:41:55 -0800 | [diff] [blame] | 432 | loadFutureFunctions(); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 433 | |
Phil Burk | 4e98efa | 2018-02-05 18:41:55 -0800 | [diff] [blame] | 434 | if (s_setUsage != nullptr) { |
| 435 | printf(" Usage: requested = %d, actual = %d\n", |
| 436 | getUsage(), s_getUsage(stream)); |
| 437 | } |
| 438 | if (s_getContentType != nullptr) { |
| 439 | printf(" ContentType: requested = %d, actual = %d\n", |
| 440 | getContentType(), s_getContentType(stream)); |
| 441 | } |
| 442 | |
| 443 | if (AAudioStream_getDirection(stream) == AAUDIO_DIRECTION_INPUT |
| 444 | && s_getInputPreset != nullptr) { |
| 445 | printf(" InputPreset: requested = %d, actual = %d\n", |
| 446 | getInputPreset(), s_getInputPreset(stream)); |
Phil Burk | 6d6f3f6 | 2018-01-12 17:27:54 -0800 | [diff] [blame] | 447 | } |
| 448 | |
Phil Burk | 4479523 | 2017-06-30 16:27:38 -0700 | [diff] [blame] | 449 | printf(" Is MMAP used? %s\n", AAudioStream_isMMapUsed(stream) |
| 450 | ? "yes" : "no"); |
| 451 | |
| 452 | } |
| 453 | |
| 454 | int32_t getDurationSeconds() const { |
| 455 | return mDurationSeconds; |
| 456 | } |
| 457 | |
| 458 | void setDurationSeconds(int32_t seconds) { |
| 459 | mDurationSeconds = seconds; |
| 460 | } |
| 461 | |
| 462 | private: |
| 463 | int32_t mDurationSeconds = DEFAULT_DURATION_SECONDS; |
| 464 | }; |
| 465 | |
| 466 | #endif // AAUDIO_EXAMPLE_ARGS_PARSER_H |