Package us.zoom.sdk
Interface ZoomVideoSDKAudioSettingHelper
public interface ZoomVideoSDKAudioSettingHelper
Audio setting interface.
See
ZoomVideoSDK.getAudioSettingHelper()-
Method Summary
Modifier and TypeMethodDescriptionintenableAutoAdjustMicVolume(boolean bEnable) Call this method to enable or disable the auto adjust input of microphone volume.intenableMicOriginalInput(boolean bEnable) Call this method to enable or disable the original input of mic.booleanDetermine whether the original input of the microphone volume is enabled.booleanDetermine whether the original input of the microphone is enabled.
-
Method Details
-
enableMicOriginalInput
int enableMicOriginalInput(boolean bEnable) Call this method to enable or disable the original input of mic.- Parameters:
bEnable- true to enable the original input of the microphone or false to disable it.- Returns:
- Error code defined in
ZoomVideoSDKErrors
-
isMicOriginalInputEnable
boolean isMicOriginalInputEnable()Determine whether the original input of the microphone is enabled.- Returns:
- true if the original input of the microphone is enabled, otherwise false.
-
enableAutoAdjustMicVolume
int enableAutoAdjustMicVolume(boolean bEnable) Call this method to enable or disable the auto adjust input of microphone volume.- Parameters:
bEnable- true to enable auto adjust input or false to disable it.- Returns:
- Error code defined in
ZoomVideoSDKErrors
-
isAutoAdjustMicVolumeEnabled
boolean isAutoAdjustMicVolumeEnabled()Determine whether the original input of the microphone volume is enabled.- Returns:
- true if auto adjust input is enabled, otherwise false.
-