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 52 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 81 of file zoom_video_sdk_video_source_helper_interface.h.

82 {
83 *this = ins;
84 }

Member Function Documentation

◆ operator=()

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

Definition at line 72 of file zoom_video_sdk_video_source_helper_interface.h.

73 {
74 width = ins.width;
75 height = ins.height;
76 frame = ins.frame;
77 data_mode = ins.data_mode;
78 return *this;
79 }

References data_mode, frame, height, and width.

◆ Reset()

void VideoSourceCapability::Reset ( )
inline

Definition at line 86 of file zoom_video_sdk_video_source_helper_interface.h.

87 {
88 width = 0;
89 height = 0;
90 frame = 0;
92 }

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