Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
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 23 of file rawdata_video_source_helper_interface.h.

Constructor & Destructor Documentation

◆ VideoSourceCapability() [1/3]

VideoSourceCapability::VideoSourceCapability ( )
inline

Definition at line 29 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 49 of file rawdata_video_source_helper_interface.h.

50 {
51 *this = ins;
52 }

Member Function Documentation

◆ operator=()

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

Definition at line 41 of file rawdata_video_source_helper_interface.h.

42 {
43 width = ins.width;
44 height = ins.height;
45 frame = ins.frame;
46 return *this;
47 }

References frame, height, and width.

◆ Reset()

void VideoSourceCapability::Reset ( )
inline

Definition at line 54 of file rawdata_video_source_helper_interface.h.

55 {
56 width = 0;
57 height = 0;
58 frame = 0;
59 }

References frame, height, and width.

Referenced by VideoSourceCapability().

Field Documentation

◆ frame

unsigned int VideoSourceCapability::frame

Definition at line 27 of file rawdata_video_source_helper_interface.h.

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

◆ height

unsigned int VideoSourceCapability::height

Definition at line 26 of file rawdata_video_source_helper_interface.h.

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

◆ width

unsigned int VideoSourceCapability::width

Definition at line 25 of file rawdata_video_source_helper_interface.h.

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