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()
318 printf("Recorder created\n"); in TestRecToBuffQueue()
329 printf("Recorder configured with preset %u\n", presetValue); in TestRecToBuffQueue()
331 printf("Using default record preset\n"); in TestRecToBuffQueue()
338 printf("Recorder configured with performance mode %u\n", performanceMode); in TestRecToBuffQueue()
340 printf("Using default performance mode\n"); in TestRecToBuffQueue()
349 printf("The default record preset appears to be %u\n", presetRetrieved); in TestRecToBuffQueue()
359 printf("Recorder realized\n"); in TestRecToBuffQueue()
367 printf("Actual performance mode is %u\n", modeRetrieved); in TestRecToBuffQueue()
383 printf("Recorder callback registered\n"); in TestRecToBuffQueue()
390 printf("AEC is %savailable\n", SL_RESULT_SUCCESS == result ? "" : "not "); in TestRecToBuffQueue()
397 printf("AEC is %s\n", enabled ? "enabled" : "not enabled"); in TestRecToBuffQueue()
406 printf("AGC is %savailable\n", SL_RESULT_SUCCESS == result ? "" : "not "); in TestRecToBuffQueue()
413 printf("AGC is %s\n", enabled ? "enabled" : "not enabled"); in TestRecToBuffQueue()
422 printf("NS is %savailable\n", SL_RESULT_SUCCESS == result ? "" : "not "); in TestRecToBuffQueue()
429 printf("NS is %s\n", enabled ? "enabled" : "not enabled"); in TestRecToBuffQueue()
448 printf("Enqueueing buffer "); in TestRecToBuffQueue()
450 printf("%d ", i); in TestRecToBuffQueue()
455 printf("\n"); in TestRecToBuffQueue()
462 printf("Starting to record\n"); in TestRecToBuffQueue()
476 printf("Stopped recording\n"); in TestRecToBuffQueue()
492 printf("OpenSL ES test %s: exercises SLRecordItf and SLAndroidSimpleBufferQueueItf ", in main()
494 printf("on an AudioRecorder object\n"); in main()
556 printf("Usage: \t%s [-c#] [-d#] [-i] [-p#] [-r#] [-1/2/4/f] destination_file\n", prog); in main()
557 printf(" -c# channel count, defaults to 1\n"); in main()
558 printf(" -d# duration in seconds, default to 10\n"); in main()
559 printf(" -i index channel mask, not yet implemented\n"); in main()
560 printf(" -p# is the preset value which defaults to SL_ANDROID_RECORDING_PRESET_NONE\n"); in main()
561 printf(" possible values are:\n"); in main()
562 printf(" -p%d SL_ANDROID_RECORDING_PRESET_NONE\n", in main()
564 printf(" -p%d SL_ANDROID_RECORDING_PRESET_GENERIC\n", in main()
566 printf(" -p%d SL_ANDROID_RECORDING_PRESET_CAMCORDER\n", in main()
568 printf(" -p%d SL_ANDROID_RECORDING_PRESET_VOICE_RECOGNITION\n", in main()
570 printf(" -p%d SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION\n", in main()
572 printf(" -r# sample rate in Hz, defaults to 48000\n"); in main()
573 printf(" -[1/2/4/f] sample format: 8-bit unsigned, 16-bit signed, 32-bit signed, float, " in main()
575 printf(" -m# is the performance mode value which defaults to" in main()
577 printf(" possible values are:\n"); in main()
578 printf(" -m%d SL_ANDROID_PERFORMANCE_NONE\n", in main()
580 printf(" -m%d SL_ANDROID_PERFORMANCE_LATENCY\n", in main()
582 printf(" -m%d SL_ANDROID_PERFORMANCE_LATENCY_EFFECTS\n", in main()
584 printf(" -m%d SL_ANDROID_PERFORMANCE_POWER_SAVING\n", in main()
586 printf(" -x[e][a][n] for pre processing:\n" in main()
590 printf("Example: \"%s /sdcard/myrec.wav\" \n", prog); in main()