Video SDK for Windows API Reference
|
#include <zoom_video_sdk_broadcast_streaming_viewer_interface.h>
Public Member Functions | |
virtual | ~IZoomVideoSDKBroadcastStreamingViewer () |
virtual ZoomVideoSDKErrors | joinStreaming (ZoomVideoSDKSteamingJoinContext &joinContext)=0 |
Joins broadcast streaming asynchronously. Result is notified via the callback 'onStreamingJoinStatusChanged'. | |
virtual ZoomVideoSDKErrors | leaveStreaming ()=0 |
Leaves broadcast streaming asynchronously. Result is notified via the callback 'onStreamingJoinStatusChanged'. | |
virtual ZoomVideoSDKStreamingJoinStatus | getStreamingJoinStatus ()=0 |
Gets the current streaming join status. | |
virtual ZoomVideoSDKErrors | subscribeVideo (ZoomVideoSDKResolution resolution, IZoomVideoSDKBroadcastStreamingVideoCallback *pCallback)=0 |
Subscribes to streaming video. | |
virtual ZoomVideoSDKErrors | unSubscribeVideo (IZoomVideoSDKBroadcastStreamingVideoCallback *pCallback)=0 |
Unsubscribe from streaming video raw data. | |
virtual ZoomVideoSDKErrors | subscribeAudio (IZoomVideoSDKBroadcastStreamingAudioCallback *pCallback)=0 |
Subscribes to streaming audio. | |
virtual ZoomVideoSDKErrors | unSubscribeAudio ()=0 |
Unsubscribe from streaming audio raw data. | |
Broadcast streaming viewer interface.
Definition at line 88 of file zoom_video_sdk_broadcast_streaming_viewer_interface.h.
|
inlinevirtual |
Definition at line 91 of file zoom_video_sdk_broadcast_streaming_viewer_interface.h.
|
pure virtual |
Gets the current streaming join status.
|
pure virtual |
Joins broadcast streaming asynchronously. Result is notified via the callback 'onStreamingJoinStatusChanged'.
joinContext | The join context containing token and channel ID. |
ZoomVideoSDKErrors#ZoomVideoSDKErrors_Success
if the function succeeds; otherwise it failed. Otherwise failed.
|
pure virtual |
Leaves broadcast streaming asynchronously. Result is notified via the callback 'onStreamingJoinStatusChanged'.
ZoomVideoSDKErrors#ZoomVideoSDKErrors_Success
if the request succeeds; otherwise it failed.
|
pure virtual |
Subscribes to streaming audio.
pCallback | The raw audio data callback object. See IZoomVideoSDKBroadcastStreamingAudioCallback. |
ZoomVideoSDKErrors#ZoomVideoSDKErrors_Success
if the function succeeds; otherwise it failed.
|
pure virtual |
Subscribes to streaming video.
resolution | The desired video resolution. Supported: ZoomVideoSDKResolution_180P, ZoomVideoSDKResolution_360P, ZoomVideoSDKResolution_720P, ZoomVideoSDKResolution_1080P. See ZoomVideoSDKResolution. |
pCallback | the raw video data callback object, see IZoomVideoSDKBroadcastStreamingVideoCallback. |
ZoomVideoSDKErrors#ZoomVideoSDKErrors_Success
if the request succeeds; otherwise, it failed.
|
pure virtual |
Unsubscribe from streaming audio raw data.
ZoomVideoSDKErrors#ZoomVideoSDKErrors_Success
if the request succeeds; otherwise it failed.
|
pure virtual |
Unsubscribe from streaming video raw data.
pCallback | The video raw data callback object, see IZoomVideoSDKBroadcastStreamingVideoCallback. |
ZoomVideoSDKErrors#ZoomVideoSDKErrors_Success
if the request succeeds. otherwise it failed.