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 60 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 89 of file zoom_video_sdk_video_source_helper_interface.h.

90 {
91 *this = ins;
92 }

Member Function Documentation

◆ operator=()

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

Definition at line 80 of file zoom_video_sdk_video_source_helper_interface.h.

81 {
82 width = ins.width;
83 height = ins.height;
84 frame = ins.frame;
85 data_mode = ins.data_mode;
86 return *this;
87 }

References data_mode, frame, height, and width.

◆ Reset()

void VideoSourceCapability::Reset ( )
inline

Definition at line 94 of file zoom_video_sdk_video_source_helper_interface.h.

95 {
96 width = 0;
97 height = 0;
98 frame = 0;
100 }

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