Package im.zego.zegoexpress.entity
Class ZegoVideoEncodedFrameParam
- java.lang.Object
-
- im.zego.zegoexpress.entity.ZegoVideoEncodedFrameParam
-
public class ZegoVideoEncodedFrameParam extends java.lang.Object
Object for video encoded frame fieldeter. Including video encoded frame format, width and height, etc.
-
-
Field Summary
Fields Modifier and Type Field Description ZegoVideoEncodedFrameFormat
format
Video encoded frame formatint
height
Video frame heightboolean
isKeyFrame
Whether it is a keyframeint
rotation
Video frame counterclockwise rotation anglejava.nio.ByteBuffer
SEIData
SEI data (Optional, if you don't need to send SEI, set it to null.int
SEIDataLength
Length of the SEI data (Optional, if you don't need to send SEI, set it to 0.int
width
Video frame width
-
Constructor Summary
Constructors Constructor Description ZegoVideoEncodedFrameParam()
-
-
-
Field Detail
-
format
public ZegoVideoEncodedFrameFormat format
Video encoded frame format
-
isKeyFrame
public boolean isKeyFrame
Whether it is a keyframe
-
rotation
public int rotation
Video frame counterclockwise rotation angle
-
width
public int width
Video frame width
-
height
public int height
Video frame height
-
SEIData
public java.nio.ByteBuffer SEIData
SEI data (Optional, if you don't need to send SEI, set it to null. Deprecated, use [sendSEI] instead). Useful when set format as [AVCC] or [AnnexB]
-
SEIDataLength
public int SEIDataLength
Length of the SEI data (Optional, if you don't need to send SEI, set it to 0. Deprecated, use [sendSEI] instead). Useful when set format as [AVCC] or [AnnexB]
-
-