Published April 21, 2023
Added
-
Interface to support call-out to CRC devices.
-
New enum in
ZoomVideoSDKCRCCallStatus
enum ZoomVideoSDKCRCCallStatus { ZoomVideoSDKCRCCallStatus_Success = 0, /// Call out successful. ZoomVideoSDKCRCCallStatus_Ring, /// Bell during the call. ZoomVideoSDKCRCCallStatus_Timeout, /// Call timed out. ZoomVideoSDKCRCCallStatus_Busy, /// Busy. ZoomVideoSDKCRCCallStatus_Decline, /// Decline. ZoomVideoSDKCRCCallStatus_Failed /// Call failed. };
-
New enum
ZoomVideoSDKCRCProtocol
enum ZoomVideoSDKCRCProtocol { ZoomVideoSDKCRCProtocol_H323 = 0, /// H.323 type. ZoomVideoSDKCRCProtocol_SIP /// SIP type. };
- New enum
ZoomVideoSDKCRCProtocol
enum ZoomVideoSDKCRCProtocol { ZoomVideoSDKCRCProtocol_H323 = 0, /// H.323 type. ZoomVideoSDKCRCProtocol_SIP /// SIP type. };
-
New interfaces in
IZoomVideoSDKCRCHelper
virtual bool isCRCEnabled() = 0; virtual ZoomVideoSDKErrors callCRCDevice(const zchar_t* sAddress, ZoomVideoSDKCRCProtocol eProtocol) = 0; virtual ZoomVideoSDKErrors cancelCallCRCDevice() = 0;
-
New callback in interface
IZoomVideoSDKDelegate
virtual void onCallCRCDeviceStatusChanged(ZoomVideoSDKCRCCallStatus status) = 0;
-
New interfaces in
zoom_video_sdk_interface.h
virtual IZoomVideoSDKCRCHelper* getCRCHelper() = 0;
-
-
Interface to support specifying color range when sending raw video data from device.
-
New enum in
FrameDataFormat
FrameDataFormat_I420_LIMITED, FrameDataFormat_I420_FULL,
-
Added new parameters in interface
sendVideoFrame
virtual void sendVideoFrame(char* frameBuffer, int width, int height, int frameLength, int rotation, FrameDataFormat format = FrameDataFormat_I420_FULL) = 0;
-
Added new parameters in interface
sendShareFrame
virtual ZoomVideoSDKErrors sendShareFrame(char* frameBuffer, int width, int height, int frameLength, FrameDataFormat format = FrameDataFormat_I420_FULL) = 0;
-
Fixed
- Video issue when selecting video device in meeting.
- Callback invoking issue after
setTranslationLanguage
andgetLiveTranslationStatus
changes to start. - Preview selected device issue in
startVideoPreview
.