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

Video status information on the user's video device (the detected compatible video camera device), and status (whether video is turned on or off). More...

#include <zoom_video_sdk_user_helper_interface.h>

Public Member Functions

 ZoomVideoSDKVideoStatus ()
 

Public Attributes

bool isHasVideoDevice
 Determine if the user's device has a compatible camera.
 
bool isOn
 Determine if the camera is turned on.
 

Detailed Description

Video status information on the user's video device (the detected compatible video camera device), and status (whether video is turned on or off).

Definition at line 16 of file zoom_video_sdk_user_helper_interface.h.

Constructor & Destructor Documentation

◆ ZoomVideoSDKVideoStatus()

ZoomVideoSDKVideoStatus::ZoomVideoSDKVideoStatus ( )
inline

Definition at line 21 of file zoom_video_sdk_user_helper_interface.h.

22 {
23 isHasVideoDevice = false;
24 isOn = false;
25 }
bool isHasVideoDevice
Determine if the user's device has a compatible camera.
bool isOn
Determine if the camera is turned on.

References isHasVideoDevice, and isOn.

Member Data Documentation

◆ isHasVideoDevice

bool ZoomVideoSDKVideoStatus::isHasVideoDevice

Determine if the user's device has a compatible camera.

Definition at line 18 of file zoom_video_sdk_user_helper_interface.h.

Referenced by ZoomVideoSDKVideoStatus().

◆ isOn

bool ZoomVideoSDKVideoStatus::isOn

Determine if the camera is turned on.

Definition at line 19 of file zoom_video_sdk_user_helper_interface.h.

Referenced by ZoomVideoSDKVideoStatus().