onVideoCaptureFrame abstract method
void
onVideoCaptureFrame()
获得采集的视频
⼊会前调⽤@ref JCMediaDevice#setVideoFrameCallback "setVideoFrameCallback" 才会收到该回调
@param captureId 采集源id @param face 镜头朝向
- @ref JCMediaDevice#CAMERA_FRONT "CAMERA_FRONT" : 前置摄像头
- @ref JCMediaDevice#CAMERA_BACK "CAMERA_BACK" : 后置摄像头
@param imageAngle 图像正立所需角度
@param captureOrient 镜头固定角度
@param widthHeight 图像宽高,widthHeight
0为宽, widthHeight1为高 @param data 图像数据,格式为I420
Implementation
void onVideoCaptureFrame(String captureId, int face, int imageAngle,
int captureOrient, List? widthHeight, List? data);