Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
rawdata_video_source_helper_interface.h
Go to the documentation of this file.
1#ifndef _RAWDATA_VIDEO_SOURCE_HELPER_INTERFACE_H_
2#define _RAWDATA_VIDEO_SOURCE_HELPER_INTERFACE_H_
3#include "zoom_sdk_def.h"
4
6
9{
10public:
12 virtual void onPreProcessRawData(YUVProcessDataI420* rawData) = 0;
13};
14
17{
18public:
20 virtual SDKError sendVideoFrame(char* frameBuffer, int width, int height, int frameLength, int rotation, FrameDataFormat format = FrameDataFormat_I420_FULL) = 0;
21};
22
24{
25 unsigned int width;
26 unsigned int height;
27 unsigned int frame;
28
30 {
31 Reset();
32 }
33
34 VideoSourceCapability(unsigned int w, unsigned int h, unsigned int f)
35 {
36 width = w;
37 height = h;
38 frame = f;
39 }
40
42 {
43 width = ins.width;
44 height = ins.height;
45 frame = ins.frame;
46 return *this;
47 }
48
50 {
51 *this = ins;
52 }
53
54 void Reset()
55 {
56 width = 0;
57 height = 0;
58 frame = 0;
59 }
60};
61
63{
64public:
66 virtual void onInitialize(IZoomSDKVideoSender* sender, IList<VideoSourceCapability >* support_cap_list, VideoSourceCapability& suggest_cap) = 0;
67 virtual void onPropertyChange(IList<VideoSourceCapability >* support_cap_list, VideoSourceCapability suggest_cap) = 0;
68 virtual void onStartSend() = 0;
69 virtual void onStopSend() = 0;
70 virtual void onUninitialized() = 0;
71};
72
75{
76public:
78 virtual SDKError setPreProcessor(IZoomSDKPreProcessor* processor) = 0; //Set a PreProcessor to edit the zoom camera video source before send to other.
79 virtual SDKError setExternalVideoSource(IZoomSDKVideoSource* source) = 0; //Set external video source for capture video by self.
80};
82#endif
virtual void onPreProcessRawData(YUVProcessDataI420 *rawData)=0
virtual SDKError sendVideoFrame(char *frameBuffer, int width, int height, int frameLength, int rotation, FrameDataFormat format=FrameDataFormat_I420_FULL)=0
virtual SDKError setPreProcessor(IZoomSDKPreProcessor *processor)=0
virtual SDKError setExternalVideoSource(IZoomSDKVideoSource *source)=0
virtual void onPropertyChange(IList< VideoSourceCapability > *support_cap_list, VideoSourceCapability suggest_cap)=0
virtual void onStopSend()=0
virtual void onUninitialized()=0
virtual void onStartSend()=0
virtual void onInitialize(IZoomSDKVideoSender *sender, IList< VideoSourceCapability > *support_cap_list, VideoSourceCapability &suggest_cap)=0
VideoSourceCapability(const VideoSourceCapability &ins)
VideoSourceCapability(unsigned int w, unsigned int h, unsigned int f)
VideoSourceCapability & operator=(const VideoSourceCapability &ins)
ZOOM windows SDK Common Definition File.
FrameDataFormat
@ FrameDataFormat_I420_FULL
#define END_ZOOM_SDK_NAMESPACE
#define BEGIN_ZOOM_SDK_NAMESPACE
SDKError
SDK error types. Here are more detailed structural descriptions.