Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
ZoomSDKYUVProcessDataI420 Class Reference

Represents I420 YUV video frame data. More...

#include <ZoomSDKRawDataVideoSourceController.h>

Inherits NSObject.

Instance Methods

(unsigned int) - getWidth
 Gets the width of this data.
 
(unsigned int) - getHeight
 Gets the height of this data.
 
(char *_Nullable) - getYBuffer:
 Gets the Y buffer of this data.
 
(char *_Nullable) - getUBuffer:
 Gets the U buffer of this data.
 
(char *_Nullable) - getVBuffer:
 Gets the V buffer of this data.
 
(unsigned int) - getYStride
 Gets the V stride of this data.
 
(unsigned int) - getUStride
 Gets the U stride of this data.
 
(unsigned int) - getVStride
 Gets the V stride of this data.
 
(unsigned int) - getRotation
 Gets the rotation of this data.
 
(BOOL) - isLimitedI420
 Gets if this data is limited I420.
 

Detailed Description

Represents I420 YUV video frame data.

Definition at line 14 of file ZoomSDKRawDataVideoSourceController.h.

Method Documentation

◆ getHeight

- (unsigned int) getHeight

Gets the height of this data.

Returns
If the function succeeds, it returns the height of this data. Otherwise, returns 0.

◆ getRotation

- (unsigned int) getRotation

Gets the rotation of this data.

Returns
If the function succeeds, it returns the rotation of this data. Otherwise, returns 0.

◆ getUBuffer:

- (char *_Nullable) getUBuffer: (unsigned int) lineNum

Gets the U buffer of this data.

Returns
If the function succeeds, it returns the U buffer of this data. Otherwise, this function fails and returns nil.

◆ getUStride

- (unsigned int) getUStride

Gets the U stride of this data.

Returns
If the function succeeds, it returns the U stride of this data. Otherwise, returns 0.

◆ getVBuffer:

- (char *_Nullable) getVBuffer: (unsigned int) lineNum

Gets the V buffer of this data.

Returns
If the function succeeds, it returns the V buffer of this data. Otherwise, this function fails and returns nil.

◆ getVStride

- (unsigned int) getVStride

Gets the V stride of this data.

Returns
If the function succeeds, it returns the V stride of this data. Otherwise, returns 0.

◆ getWidth

- (unsigned int) getWidth

Gets the width of this data.

Returns
If the function succeeds, it returns the width of this data. Otherwise, returns 0.

◆ getYBuffer:

- (char *_Nullable) getYBuffer: (unsigned int) lineNum

Gets the Y buffer of this data.

Returns
If the function succeeds, it returns the Y buffer of this data. Otherwise, this function fails and returns nil.

◆ getYStride

- (unsigned int) getYStride

Gets the V stride of this data.

Returns
If the function succeeds, it returns the V stride of this data. Otherwise, returns 0.

◆ isLimitedI420

- (BOOL) isLimitedI420

Gets if this data is limited I420.

Returns
If it is limited I420, it returns YES. Otherwise, NO.