Video SDK for Linux API Reference
Loading...
Searching...
No Matches
IncomingLiveStreamStatus Struct Reference

incoming live stream status. More...

#include <zoom_video_sdk_livestream_helper_interface.h>

Public Member Functions

 IncomingLiveStreamStatus ()
 

Public Attributes

const zchar_tstrStreamKeyID
 The incoming live stream ID.
 
bool isRTMPConnected
 Is the streaming software(such as OBS) connected to the Zoom platform? If false: no, if true: yes.
 
bool isStreamPushed
 Has the video stream been pushed to the session? If false: no, if true: yes.
 

Detailed Description

incoming live stream status.

Definition at line 40 of file zoom_video_sdk_livestream_helper_interface.h.

Constructor & Destructor Documentation

◆ IncomingLiveStreamStatus()

IncomingLiveStreamStatus::IncomingLiveStreamStatus ( )
inline

Definition at line 46 of file zoom_video_sdk_livestream_helper_interface.h.

47 {
48 strStreamKeyID = nullptr;
49 isRTMPConnected = false;
50 isStreamPushed = false;
51 }
bool isStreamPushed
Has the video stream been pushed to the session? If false: no, if true: yes.
const zchar_t * strStreamKeyID
The incoming live stream ID.
bool isRTMPConnected
Is the streaming software(such as OBS) connected to the Zoom platform? If false: no,...

References isRTMPConnected, isStreamPushed, and strStreamKeyID.

Member Data Documentation

◆ isRTMPConnected

bool IncomingLiveStreamStatus::isRTMPConnected

Is the streaming software(such as OBS) connected to the Zoom platform? If false: no, if true: yes.

Definition at line 43 of file zoom_video_sdk_livestream_helper_interface.h.

Referenced by IncomingLiveStreamStatus().

◆ isStreamPushed

bool IncomingLiveStreamStatus::isStreamPushed

Has the video stream been pushed to the session? If false: no, if true: yes.

Definition at line 44 of file zoom_video_sdk_livestream_helper_interface.h.

Referenced by IncomingLiveStreamStatus().

◆ strStreamKeyID

const zchar_t* IncomingLiveStreamStatus::strStreamKeyID

The incoming live stream ID.

Definition at line 42 of file zoom_video_sdk_livestream_helper_interface.h.

Referenced by IncomingLiveStreamStatus().