public class EncodedVideoFrameInfo
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
long |
captureTimeMs
This is a input parameter which means the timestamp for capturing the video.
|
int |
codecType
The codec type.
|
int |
framesPerSecond
The number of frames per second of this frame.
|
int |
frameType
The frame type:
- 0: `VIDEO_FRAME_TYPE_BLANK_FRAME`.
|
int |
height
The height of this frame.
|
int |
rotation
The rotation information (clockwise) of this frame.
|
int |
streamType
The stream type of video frame.
|
int |
trackId
The track ID.
|
int |
uid
ID of the user who sends this video.
|
int |
width
The width of this frame.
|
Constructor and Description |
---|
EncodedVideoFrameInfo() |
EncodedVideoFrameInfo(int codecType,
int width,
int height,
int framesPerSecond,
int frameType,
int rotation,
int trackId,
long captureTimeMs,
int uid,
int streamType) |
Modifier and Type | Method and Description |
---|---|
long |
getCaptureTimeMs() |
int |
getCodecType() |
int |
getFramesPerSecond() |
int |
getFrameType() |
int |
getHeight() |
int |
getRotation() |
int |
getStreamType() |
int |
getTrackId() |
int |
getUid() |
int |
getWidth() |
java.lang.String |
toString() |
public int codecType
public int width
public int height
public int framesPerSecond
public int frameType
public int rotation
public int trackId
public long captureTimeMs
public int uid
public int streamType
public EncodedVideoFrameInfo()
public EncodedVideoFrameInfo(int codecType, int width, int height, int framesPerSecond, int frameType, int rotation, int trackId, long captureTimeMs, int uid, int streamType)
public int getCodecType()
public int getWidth()
public int getHeight()
public int getFramesPerSecond()
public int getFrameType()
public int getRotation()
public int getTrackId()
public long getCaptureTimeMs()
public int getUid()
public int getStreamType()
public java.lang.String toString()
toString
in class java.lang.Object