Lines Matching refs:AudioHandle
123 typedef int32_t (*CallbackProcessFunc)(AudioHandle handle, enum AudioCallbackType callBackType);
168 AudioHandle renderhandle;
455 int32_t AudioRenderStart(AudioHandle handle);
456 int32_t AudioRenderStop(AudioHandle handle);
457 int32_t AudioRenderPause(AudioHandle handle);
458 int32_t AudioRenderResume(AudioHandle handle);
459 int32_t AudioRenderFlush(AudioHandle handle);
460 int32_t AudioRenderGetFrameSize(AudioHandle handle, uint64_t *size);
461 int32_t AudioRenderGetFrameCount(AudioHandle handle, uint64_t *count);
462 int32_t AudioRenderSetSampleAttributes(AudioHandle handle, const struct AudioSampleAttributes *attr…
463 int32_t AudioRenderGetSampleAttributes(AudioHandle handle, struct AudioSampleAttributes *attrs);
464 int32_t AudioRenderGetCurrentChannelId(AudioHandle handle, uint32_t *channelId);
465 int32_t AudioRenderCheckSceneCapability(AudioHandle handle, const struct AudioSceneDescriptor *scen…
467 int32_t AudioRenderSelectScene(AudioHandle handle, const struct AudioSceneDescriptor *scene);
468 int32_t AudioRenderSetMute(AudioHandle handle, bool mute);
469 int32_t AudioRenderGetMute(AudioHandle handle, bool *mute);
470 int32_t AudioRenderSetVolume(AudioHandle handle, float volume);
471 int32_t AudioRenderGetVolume(AudioHandle handle, float *volume);
472 int32_t AudioRenderGetGainThreshold(AudioHandle handle, float *min, float *max);
473 int32_t AudioRenderGetGain(AudioHandle handle, float *gain);
474 int32_t AudioRenderSetGain(AudioHandle handle, float gain);
483 int32_t AudioRenderSetExtraParams(AudioHandle handle, const char *keyValueList);
484 int32_t AudioRenderGetExtraParams(AudioHandle handle, char *keyValueList, int32_t listLenth);
485 int32_t AudioRenderReqMmapBuffer(AudioHandle handle, int32_t reqSize, struct AudioMmapBufferDescrip…
486 int32_t AudioRenderGetMmapPosition(AudioHandle handle, uint64_t *frames, struct AudioTimeStamp *tim…
487 int32_t AudioRenderAddEffect(AudioHandle handle, uint64_t effectid);
488 int32_t AudioRenderRemoveEffect(AudioHandle handle, uint64_t effectid);
489 int32_t AudioRenderTurnStandbyMode(AudioHandle handle);
490 int32_t AudioRenderAudioDevDump(AudioHandle handle, int32_t range, int32_t fd);
493 int32_t AudioCaptureStart(AudioHandle handle);
494 int32_t AudioCaptureStop(AudioHandle handle);
495 int32_t AudioCapturePause(AudioHandle handle);
496 int32_t AudioCaptureResume(AudioHandle handle);
497 int32_t AudioCaptureFlush(AudioHandle handle);
498 int32_t AudioCaptureGetFrameSize(AudioHandle handle, uint64_t *size);
499 int32_t AudioCaptureGetFrameCount(AudioHandle handle, uint64_t *count);
500 int32_t AudioCaptureSetSampleAttributes(AudioHandle handle, const struct AudioSampleAttributes *att…
501 int32_t AudioCaptureGetSampleAttributes(AudioHandle handle, struct AudioSampleAttributes *attrs);
502 int32_t AudioCaptureGetCurrentChannelId(AudioHandle handle, uint32_t *channelId);
503 int32_t AudioCaptureCheckSceneCapability(AudioHandle handle, const struct AudioSceneDescriptor *sce…
505 int32_t AudioCaptureSelectScene(AudioHandle handle, const struct AudioSceneDescriptor *scene);
506 int32_t AudioCaptureSetMute(AudioHandle handle, bool mute);
507 int32_t AudioCaptureGetMute(AudioHandle handle, bool *mute);
508 int32_t AudioCaptureSetVolume(AudioHandle handle, float volume);
509 int32_t AudioCaptureGetVolume(AudioHandle handle, float *volume);
510 int32_t AudioCaptureGetGainThreshold(AudioHandle handle, float *min, float *max);
511 int32_t AudioCaptureGetGain(AudioHandle handle, float *gain);
512 int32_t AudioCaptureSetGain(AudioHandle handle, float gain);
516 int32_t AudioCaptureSetExtraParams(AudioHandle handle, const char *keyValueList);
517 int32_t AudioCaptureGetExtraParams(const AudioHandle handle, char *keyValueList, int32_t listLenth);
518 int32_t AudioCaptureReqMmapBuffer(AudioHandle handle, int32_t reqSize, struct AudioMmapBufferDescri…
519 int32_t AudioCaptureGetMmapPosition(AudioHandle handle, uint64_t *frames, struct AudioTimeStamp *ti…
520 int32_t AudioCaptureAddEffect(AudioHandle handle, uint64_t effectid);
521 int32_t AudioCaptureRemoveEffect(AudioHandle handle, uint64_t effectid);
522 int32_t AudioCaptureTurnStandbyMode(AudioHandle handle);
523 int32_t AudioCaptureAudioDevDump(AudioHandle handle, int32_t range, int32_t fd);
524 int32_t CallbackProcessing(AudioHandle handle, enum AudioCallbackType callBackType);