Unity Video SDK API Reference Documentation
Loading...
Searching...
No Matches
ZMVideoSDKVideoRawData Class Reference

Public Member Functions

 ZMVideoSDKVideoRawData (int height, int width, int rotation, byte[] yBytes, byte[] uBytes, byte[] vBytes)
 

Data Fields

int height
 
int width
 
int rotation
 
byte[] yBytes
 
byte[] uBytes
 
byte[] vBytes
 

Detailed Description

Definition at line 4 of file ZMVideoSDKVideoRawData.cs.

Constructor & Destructor Documentation

◆ ZMVideoSDKVideoRawData()

ZMVideoSDKVideoRawData.ZMVideoSDKVideoRawData ( int  height,
int  width,
int  rotation,
byte[]  yBytes,
byte[]  uBytes,
byte[]  vBytes 
)
inline

Definition at line 13 of file ZMVideoSDKVideoRawData.cs.

14 {
15 this.height = height;
16 this.width = width;
17 this.rotation = rotation;
18 this.yBytes = yBytes;
19 this.uBytes = uBytes;
20 this.vBytes = vBytes;
21 }

References height, rotation, uBytes, vBytes, width, and yBytes.

Field Documentation

◆ height

int ZMVideoSDKVideoRawData.height

Definition at line 6 of file ZMVideoSDKVideoRawData.cs.

Referenced by ZMVideoSDKVideoRawData().

◆ rotation

int ZMVideoSDKVideoRawData.rotation

Definition at line 8 of file ZMVideoSDKVideoRawData.cs.

Referenced by ZMVideoSDKVideoRawData().

◆ uBytes

byte [] ZMVideoSDKVideoRawData.uBytes

Definition at line 10 of file ZMVideoSDKVideoRawData.cs.

Referenced by ZMVideoSDKVideoRawData().

◆ vBytes

byte [] ZMVideoSDKVideoRawData.vBytes

Definition at line 11 of file ZMVideoSDKVideoRawData.cs.

Referenced by ZMVideoSDKVideoRawData().

◆ width

int ZMVideoSDKVideoRawData.width

Definition at line 7 of file ZMVideoSDKVideoRawData.cs.

Referenced by ZMVideoSDKVideoRawData().

◆ yBytes

byte [] ZMVideoSDKVideoRawData.yBytes

Definition at line 9 of file ZMVideoSDKVideoRawData.cs.

Referenced by ZMVideoSDKVideoRawData().