Package us.zoom.sdk
Interface IZoomVideoSDKSharePreprocessor
public interface IZoomVideoSDKSharePreprocessor
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onCapturedRawDataReceived
(android.graphics.Bitmap bitmap) You will receive this callback when callingZoomVideoSDKShareHelper.startShareWithPreprocessing(ZoomVideoSDKSharePreprocessParam, IZoomVideoSDKSharePreprocessor)
successfully.
-
Method Details
-
onCapturedRawDataReceived
void onCapturedRawDataReceived(android.graphics.Bitmap bitmap) You will receive this callback when callingZoomVideoSDKShareHelper.startShareWithPreprocessing(ZoomVideoSDKSharePreprocessParam, IZoomVideoSDKSharePreprocessor)
successfully.- Parameters:
bitmap
- the share bitmap rawdata that you can pre-process.- Note:
- The bitmap size and config should not be modified. And the content of the bitmap should only be modified in the current thread.
-