public interface QHVCInteractiveRemoteVideoRenderCallback
Modifier and Type | Method and Description |
---|---|
int |
dequeueInputBuffer(int width,
int height,
int stride)
获取Buffer索引
|
java.nio.ByteBuffer |
getInputBuffer(int index)
获取Buffer
|
void |
queueInputBuffer(int bufferIndex,
java.lang.String uid,
int width,
int height,
int stride)
返回数据信息
|
int dequeueInputBuffer(int width, int height, int stride)
width
- 视频宽height
- 视频高stride
- 内存对齐宽度java.nio.ByteBuffer getInputBuffer(int index)
index
- buffer索引void queueInputBuffer(int bufferIndex, java.lang.String uid, int width, int height, int stride)
bufferIndex
- buffer索引uid
- 用户唯一idwidth
- 视频宽height
- 视频高stride
- 内存对齐宽度