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