Video SDK for Windows API Reference
Loading...
Searching...
No Matches
VideoSourceCapability Struct Reference

Video source capability information. More...

#include <zoom_video_sdk_video_source_helper_interface.h>

Public Member Functions

 VideoSourceCapability ()
 
 VideoSourceCapability (unsigned int w, unsigned int h, unsigned int f)
 
VideoSourceCapabilityoperator= (const VideoSourceCapability &ins)
 
 VideoSourceCapability (const VideoSourceCapability &ins)
 
void Reset ()
 

Data Fields

unsigned int width
 
unsigned int height
 
unsigned int frame
 
VideoSourceDataMode data_mode
 

Detailed Description

Video source capability information.

Definition at line 63 of file zoom_video_sdk_video_source_helper_interface.h.

Constructor & Destructor Documentation

◆ VideoSourceCapability() [1/3]

VideoSourceCapability::VideoSourceCapability ( )
inline

◆ VideoSourceCapability() [2/3]

VideoSourceCapability::VideoSourceCapability ( unsigned int w,
unsigned int h,
unsigned int f )
inline

◆ VideoSourceCapability() [3/3]

VideoSourceCapability::VideoSourceCapability ( const VideoSourceCapability & ins)
inline

Definition at line 92 of file zoom_video_sdk_video_source_helper_interface.h.

93 {
94 *this = ins;
95 }

Member Function Documentation

◆ operator=()

VideoSourceCapability & VideoSourceCapability::operator= ( const VideoSourceCapability & ins)
inline

Definition at line 83 of file zoom_video_sdk_video_source_helper_interface.h.

84 {
85 width = ins.width;
86 height = ins.height;
87 frame = ins.frame;
88 data_mode = ins.data_mode;
89 return *this;
90 }

References data_mode, frame, height, and width.

◆ Reset()

void VideoSourceCapability::Reset ( )
inline

Definition at line 97 of file zoom_video_sdk_video_source_helper_interface.h.

98 {
99 width = 0;
100 height = 0;
101 frame = 0;
103 }

References data_mode, frame, height, VideoSourceDataMode_None, and width.

Referenced by VideoSourceCapability().

Field Documentation

◆ data_mode

VideoSourceDataMode VideoSourceCapability::data_mode

◆ frame

unsigned int VideoSourceCapability::frame

◆ height

unsigned int VideoSourceCapability::height

◆ width

unsigned int VideoSourceCapability::width