Video SDK for Linux API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKAudioOption Struct Reference

Aduio option used by ZoomVideoSDKSessionContext. More...

#include <zoom_video_sdk_def.h>

Public Member Functions

 ZoomVideoSDKAudioOption ()
 

Public Attributes

bool connect
 Whether to connect the local audio when joining a session.
 
bool mute
 Whether to mute the audio initially.
 
bool isMyVoiceInMix
 Whether my voice should be included in the mixed audio raw data.
 
bool autoAdjustSpeakerVolume
 Whether to automatically adjust the speaker volume. If true, the SDK will automatically raise the volume if it's muted or too low.
 

Detailed Description

Aduio option used by ZoomVideoSDKSessionContext.

Definition at line 479 of file zoom_video_sdk_def.h.

Constructor & Destructor Documentation

◆ ZoomVideoSDKAudioOption()

ZoomVideoSDKAudioOption::ZoomVideoSDKAudioOption ( )
inline

Definition at line 502 of file zoom_video_sdk_def.h.

503 {
504 connect = true;
505 mute = false;
506 isMyVoiceInMix = true;
508 }
bool mute
Whether to mute the audio initially.
bool isMyVoiceInMix
Whether my voice should be included in the mixed audio raw data.
bool connect
Whether to connect the local audio when joining a session.
bool autoAdjustSpeakerVolume
Whether to automatically adjust the speaker volume. If true, the SDK will automatically raise the vol...

References autoAdjustSpeakerVolume, connect, isMyVoiceInMix, and mute.

Member Data Documentation

◆ autoAdjustSpeakerVolume

bool ZoomVideoSDKAudioOption::autoAdjustSpeakerVolume

Whether to automatically adjust the speaker volume. If true, the SDK will automatically raise the volume if it's muted or too low.

Note
Default is false.

Definition at line 501 of file zoom_video_sdk_def.h.

Referenced by ZoomVideoSDKAudioOption().

◆ connect

bool ZoomVideoSDKAudioOption::connect

Whether to connect the local audio when joining a session.

Note
Default is true. Whether to connect local audio or not.

Definition at line 485 of file zoom_video_sdk_def.h.

Referenced by ZoomVideoSDKAudioOption().

◆ isMyVoiceInMix

bool ZoomVideoSDKAudioOption::isMyVoiceInMix

Whether my voice should be included in the mixed audio raw data.

Note
Default is true.

Definition at line 495 of file zoom_video_sdk_def.h.

Referenced by ZoomVideoSDKAudioOption().

◆ mute

bool ZoomVideoSDKAudioOption::mute

Whether to mute the audio initially.

Note
Default is false.

Definition at line 490 of file zoom_video_sdk_def.h.

Referenced by ZoomVideoSDKAudioOption().