コード例 #1
0
 public void PushVideoFrame(ref OeipVideoFrame videoFrame)
 {
     if (!IsOpen)
     {
         return;
     }
     OeipHelper.pushVideo(MediaId, ref videoFrame);
 }
コード例 #2
0
 private void OnVideoFrameHandle(OeipVideoFrame videoFrame)
 {
     OnVideoFrameEvent?.Invoke(videoFrame);
 }
コード例 #3
0
 public static extern int pushVideo(int mediaId, ref OeipVideoFrame videoFrame);
コード例 #4
0
 public static extern void getVideoFrameData(IntPtr data, ref OeipVideoFrame videoFrame);
コード例 #5
0
 public static extern void fillVideoFrame(IntPtr data, ref OeipVideoFrame videoFrame);
コード例 #6
0
 public static extern void setVideoFrame(IntPtr data, int width, int height, OeipYUVFMT fmt, ref OeipVideoFrame videoFrame);