Original publication date: December 21, 2022
Added
-
Interface for developers to provide raw data for sharing.
-
Add interface in
ZoomVideoSDKShareSource
void onShareSendStarted(ZoomVideoSDKShareSender sender); void onShareSendStopped();
-
Add interface in
ZoomVideoSDKShareSender
int sendShareFrame(ByteBuffer frameBuffer, int width, int height, int frameLength);
-
Add interface in
ZoomVideoSDKShareHelper
int startSharingExternalSource(ZoomVideoSDKShareSource source);
-
Add errorCode in
ZoomVideoSDKErrors
int SDKRawDataError_UNINITIALIZED int SDKRawDataError_SHARE_CANNOT_SUBSCRIBE_MYSELF
-
-
Interface to support configuring the video aspect ratio to the original ratio or other ratios.
-
Add interface in
ZoomVideoSDKVideoHelper
boolean isOriginalAspectRatioEnabled(); boolean enableOriginalAspectRatio(boolean enabled);
-
-
Interface to support individual cloud recordings to create separate video files for selected users.
-
Add interface in
ZoomVideoSDKUser
public boolean hasIndividualRecordingConsent()
-
Add interface in
ZoomVideoSDKRecordingConsentHandler
boolean accept(); boolean decline(); ConsentType getConsentType();
-
Add enum in
ConsentType
ConsentType_Invalid ConsentType_Traditional ConsentType_Individual
-
Add callback in
ZoomVideoSDKDelegate
void onUserRecordingConsent(ZoomVideoSDKUser user)
-
-
Modify callback in
ZoomVideoSDKDelegate
-
Modify
void onCloudRecordingStatus(ZoomVideoSDKRecordingStatus status)
tovoid onCloudRecordingStatus(ZoomVideoSDKRecordingStatus status, ZoomVideoSDKRecordingConsentHandler handler)
-
-
Interface to enable or disable the mirror effect when the developer uses the Zoom renderer.
-
Add interface in
ZoomVideoSDKVideoHelper
int mirrorMyVideo(boolean enable) boolean isMirrorMyVideoEnabled()
-
Changed & Fixed
-
Fixed an issue where the SDK would intermittently crash when headphones were disconnected.
-
Added parameters for users to set aspect ratios in the interface of
startVideoCanvasPreview
. -
Modified the interface in
ZoomVideoSDKVideoHelper
-
Modified
int startVideoCanvasPreview(ZoomVideoSDKVideoView videoView)
toInt startVideoCanvasPreview(ZoomVideoSDKVideoView videoView
,ZoomVideoSDKVideoAspect aspect)
-