Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKVideoSource.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
10public interface ZoomVideoSDKVideoSource {
11
12
21 void onInitialize(ZoomVideoSDKVideoSender sender, List<ZoomVideoSDKVideoCapability> support_cap_list, ZoomVideoSDKVideoCapability suggest_cap);
22
29 void onPropertyChange(List<ZoomVideoSDKVideoCapability> support_cap_list, ZoomVideoSDKVideoCapability suggest_cap);
30
36
42 void onStopSend();
43
50}
Zoom Video SDK video capability information that comprises of width, height and frame.
Interface for user to send video raw data.
Custom external video source interface.
void onPropertyChange(List< ZoomVideoSDKVideoCapability > support_cap_list, ZoomVideoSDKVideoCapability suggest_cap)
Callback when capabilities such as video size or frame rate changes.
void onStopSend()
Callback for ZoomVideoSDKVideoSource's lifecycle state. In this state, the SDK instance can no longer...
void onUninitialized()
Callback for ZoomVideoSDKVideoSource's lifecycle state. This denotes the end of the ZoomVideoSDKVideo...
void onInitialize(ZoomVideoSDKVideoSender sender, List< ZoomVideoSDKVideoCapability > support_cap_list, ZoomVideoSDKVideoCapability suggest_cap)
Callback for ZoomVideoSDKVideoSource's lifecycle state. This denotes the start of the ZoomVideoSDKVid...
void onStartSend()
Callback for ZoomVideoSDKVideoSource's lifecycle state. In this state, the SDK instance can now send ...