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

#include <rawdata_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
 

Detailed Description

Definition at line 28 of file rawdata_video_source_helper_interface.h.

Constructor & Destructor Documentation

◆ VideoSourceCapability() [1/3]

VideoSourceCapability::VideoSourceCapability ( )
inline

Definition at line 34 of file rawdata_video_source_helper_interface.h.

References Reset().

◆ 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 54 of file rawdata_video_source_helper_interface.h.

55 {
56 *this = ins;
57 }

Member Function Documentation

◆ operator=()

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

Definition at line 46 of file rawdata_video_source_helper_interface.h.

47 {
48 width = ins.width;
49 height = ins.height;
50 frame = ins.frame;
51 return *this;
52 }

References frame, height, and width.

◆ Reset()

void VideoSourceCapability::Reset ( )
inline

Definition at line 59 of file rawdata_video_source_helper_interface.h.

60 {
61 width = 0;
62 height = 0;
63 frame = 0;
64 }

References frame, height, and width.

Referenced by VideoSourceCapability().

Field Documentation

◆ frame

unsigned int VideoSourceCapability::frame

Definition at line 32 of file rawdata_video_source_helper_interface.h.

Referenced by operator=(), Reset(), and VideoSourceCapability().

◆ height

unsigned int VideoSourceCapability::height

Definition at line 31 of file rawdata_video_source_helper_interface.h.

Referenced by operator=(), Reset(), and VideoSourceCapability().

◆ width

unsigned int VideoSourceCapability::width

Definition at line 30 of file rawdata_video_source_helper_interface.h.

Referenced by operator=(), Reset(), and VideoSourceCapability().