Lines Matching refs:printf

101         printf("SL_RECORDEVENT_HEADATNEWPOS current position=%ums\n", pMsec);  in RecCallback()
107 printf("SL_RECORDEVENT_HEADATMARKER current position=%ums\n", pMsec); in RecCallback()
319 printf("Recorder created\n"); in TestRecToBuffQueue()
330 printf("Recorder configured with preset %u\n", presetValue); in TestRecToBuffQueue()
332 printf("Using default record preset\n"); in TestRecToBuffQueue()
339 printf("Recorder configured with performance mode %u\n", performanceMode); in TestRecToBuffQueue()
341 printf("Using default performance mode\n"); in TestRecToBuffQueue()
350 printf("The default record preset appears to be %u\n", presetRetrieved); in TestRecToBuffQueue()
360 printf("Recorder realized\n"); in TestRecToBuffQueue()
368 printf("Actual performance mode is %u\n", modeRetrieved); in TestRecToBuffQueue()
384 printf("Recorder callback registered\n"); in TestRecToBuffQueue()
391 printf("AEC is %savailable\n", SL_RESULT_SUCCESS == result ? "" : "not "); in TestRecToBuffQueue()
398 printf("AEC is %s\n", enabled ? "enabled" : "not enabled"); in TestRecToBuffQueue()
407 printf("AGC is %savailable\n", SL_RESULT_SUCCESS == result ? "" : "not "); in TestRecToBuffQueue()
414 printf("AGC is %s\n", enabled ? "enabled" : "not enabled"); in TestRecToBuffQueue()
423 printf("NS is %savailable\n", SL_RESULT_SUCCESS == result ? "" : "not "); in TestRecToBuffQueue()
430 printf("NS is %s\n", enabled ? "enabled" : "not enabled"); in TestRecToBuffQueue()
449 printf("Enqueueing buffer "); in TestRecToBuffQueue()
451 printf("%d ", i); in TestRecToBuffQueue()
456 printf("\n"); in TestRecToBuffQueue()
463 printf("Starting to record\n"); in TestRecToBuffQueue()
477 printf("Stopped recording\n"); in TestRecToBuffQueue()
493 printf("OpenSL ES test %s: exercises SLRecordItf and SLAndroidSimpleBufferQueueItf ", in main()
495 printf("on an AudioRecorder object\n"); in main()
557 printf("Usage: \t%s [-c#] [-d#] [-i] [-p#] [-r#] [-1/2/4/f] destination_file\n", prog); in main()
558 printf(" -c# channel count, defaults to 1\n"); in main()
559 printf(" -d# duration in seconds, default to 10\n"); in main()
560 printf(" -i index channel mask, not yet implemented\n"); in main()
561 printf(" -p# is the preset value which defaults to SL_ANDROID_RECORDING_PRESET_NONE\n"); in main()
562 printf(" possible values are:\n"); in main()
563 printf(" -p%d SL_ANDROID_RECORDING_PRESET_NONE\n", in main()
565 printf(" -p%d SL_ANDROID_RECORDING_PRESET_GENERIC\n", in main()
567 printf(" -p%d SL_ANDROID_RECORDING_PRESET_CAMCORDER\n", in main()
569 printf(" -p%d SL_ANDROID_RECORDING_PRESET_VOICE_RECOGNITION\n", in main()
571 printf(" -p%d SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION\n", in main()
573 printf(" -r# sample rate in Hz, defaults to 48000\n"); in main()
574 printf(" -[1/2/4/f] sample format: 8-bit unsigned, 16-bit signed, 32-bit signed, float, " in main()
576 printf(" -m# is the performance mode value which defaults to" in main()
578 printf(" possible values are:\n"); in main()
579 printf(" -m%d SL_ANDROID_PERFORMANCE_NONE\n", in main()
581 printf(" -m%d SL_ANDROID_PERFORMANCE_LATENCY\n", in main()
583 printf(" -m%d SL_ANDROID_PERFORMANCE_LATENCY_EFFECTS\n", in main()
585 printf(" -m%d SL_ANDROID_PERFORMANCE_POWER_SAVING\n", in main()
587 printf(" -x[e][a][n] for pre processing:\n" in main()
591 printf("Example: \"%s /sdcard/myrec.wav\" \n", prog); in main()