Package ai.nexconn.call.api
Interface INCCallInitOptions
public interface INCCallInitOptions
Global initialization options for calling.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classAbstract builder whose concrete implementation is provided by the SDK. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the audio sample rate.intReturns the audio source used for capture.intReturns the hardware decoder color format.Returns the hardware encoder bitrate control mode.intReturns the hardware encoder color format.intReturns the hardware encoder frame rate.booleanReturns whether texture-based encoding is enabled.booleanReturns whether hardware decoding is enabled.booleanReturns whether hardware encoding is enabled.booleanReturns whether hardware encoder High Profile is enabled.booleanReturns whether low-latency recording is enabled.booleanReturns whether stereo audio is enabled.booleanReturns whether dual-stream mode is enabled.
-
Method Details
-
getAudioSampleRate
int getAudioSampleRate()Returns the audio sample rate. -
isStereoEnabled
boolean isStereoEnabled()Returns whether stereo audio is enabled. -
getAudioSource
int getAudioSource()Returns the audio source used for capture. -
isHardwareEncoderHighProfileEnabled
boolean isHardwareEncoderHighProfileEnabled()Returns whether hardware encoder High Profile is enabled. -
isHardwareDecoderEnabled
boolean isHardwareDecoderEnabled()Returns whether hardware decoding is enabled. -
isHardwareEncoderEnabled
boolean isHardwareEncoderEnabled()Returns whether hardware encoding is enabled. -
getHardwareEncoderColor
int getHardwareEncoderColor()Returns the hardware encoder color format. -
getHardwareEncoderFrameRate
int getHardwareEncoderFrameRate()Returns the hardware encoder frame rate. -
isEncoderTextureEnabled
boolean isEncoderTextureEnabled()Returns whether texture-based encoding is enabled. -
getHardwareEncoderBitrateMode
NCCallVideoBitrateMode getHardwareEncoderBitrateMode()Returns the hardware encoder bitrate control mode. -
getHardwareDecoderColor
int getHardwareDecoderColor()Returns the hardware decoder color format. -
isLowLatencyRecordingEnabled
boolean isLowLatencyRecordingEnabled()Returns whether low-latency recording is enabled. -
isTinyStreamEnabled
boolean isTinyStreamEnabled()Returns whether dual-stream mode is enabled.
-