Video SDK for iOS API Reference
Loading...
Searching...
No Matches
<ZoomVideoSDKRawDataPipeDelegate> Protocol Reference

Methods to manage events for receiving video raw data. More...

#include <ZoomVideoSDKDelegate.h>

Inherits <NSObject>.

Instance Methods

(void) - onPixelBuffer:rotation:
 Callback event when receiving video's NV12 data (CVPixelBufferRef).
 
(void) - onRawDataFrameReceived:
 Callback event when receiving video's YUV420 data.
 
(void) - onRawDataStatusChanged:
 Callback event when the sender stops or starts sending raw data.
 

Detailed Description

Methods to manage events for receiving video raw data.

Definition at line 698 of file ZoomVideoSDKDelegate.h.

Method Documentation

◆ onPixelBuffer:rotation:

- (void) onPixelBuffer: (CVPixelBufferRef _Nullable) pixelBuffer
rotation: (ZoomVideoSDKVideoRawDataRotation) rotation 
optional

Callback event when receiving video's NV12 data (CVPixelBufferRef).

Parameters
pixelBufferThe video's CVPixelBufferRef data.
rotationThe video rotation.

◆ onRawDataFrameReceived:

- (void) onRawDataFrameReceived: (ZoomVideoSDKVideoRawData *_Nullable) rawData
optionalrequired

Callback event when receiving video's YUV420 data.

Parameters
rawDataThe video's YUV420 data.

◆ onRawDataStatusChanged:

- (void) onRawDataStatusChanged: (ZoomVideoSDKUserRawdataStatus) userRawdataStatus
optionalrequired

Callback event when the sender stops or starts sending raw data.

Parameters
userRawdataStatusThe raw data sending status.